-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake: dts: move to specifying shield on the command line #12403
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,5 @@ sample: | |
tests: | ||
test: | ||
harness: bluetooth | ||
platform_whitelist: qemu_cortex_m3 qemu_x86 | ||
tags: bluetooth | ||
test.overlay-shield_frdm_kw41z: | ||
harness: bluetooth | ||
extra_args: OVERLAY_CONFIG=overlay-shield_frdm_kw41z.conf | ||
platform_whitelist: mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f | ||
platform_whitelist: qemu_cortex_m3 qemu_x86 mimxrt1020_evk mimxrt1050_evk mimxrt1060_evk frdm_k64f | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of the modification to CMakeLists.txt, could you leave the two tests and set There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I went ahead and merged this as I wanted to close on the base -DSHIELD support this week. I'll open a new PR for reworking the bluetooth test as you've asked in here. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I opened PR #12585 for the BT Periph Sample change. |
||
tags: bluetooth |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
CONFIG_STDOUT_CONSOLE=y | ||
CONFIG_SHIELD_X_NUCLEO_IKS01A1=y | ||
erwango marked this conversation as resolved.
Show resolved
Hide resolved
|
||
CONFIG_I2C=y | ||
CONFIG_I2C_STM32_INTERRUPT=y | ||
CONFIG_SENSOR=y | ||
CONFIG_HTS221=y | ||
CONFIG_LPS25HB=y | ||
CONFIG_LSM6DS0=y | ||
CONFIG_LIS3MDL=y | ||
CONFIG_HTS221_TRIGGER_NONE=y | ||
CONFIG_LIS3MDL_TRIGGER_NONE=y |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ tests: | |
harness: shield | ||
tags: shield | ||
depends_on: arduino_i2c | ||
platform_exclude: disco_l475_iot1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well that's unfortunate. :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eventually we are going to need something more sophisticated than CMake variables to give input to DT.
Like a separate Kconfig root/tree for DT for instance.