We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When building a project that does not use the Arduino API Module, it is still selected and built:
ZEPHYR_ARDUINO_API_MODULE(=y) menu "arduino-api (/home/mike/compile/golioth-zephyr-workspace/modules/lib/Arduino-Zephyr-API)"
We should check that the KConfig for this symbol defaults to n
n
west build -b arduino_nano_33_ble samples/basic/minimal/ -p
west build -t menuconfig
/arduino
The text was updated successfully, but these errors were encountered:
@szczys latest PR: #48 fixes that in menuconfig:
arduino ARDUINO_API(=n) "ARDUINO_API" BOARD_ARDUINO_NANO_33_BLE(=y) "Arduino Nano 33 BLE board" BOARD_ARDUINO_NANO_33_BLE_SENSE(=n) "Arduino Nano 33 BLE Sense board"
this is inside the menuconfig UI.
Also, no more pesky DT errors ;)
Sorry, something went wrong.
CMakelists: conditionally add subdir if ARDUINO en
67b622d
* Conditionally include sub directories specific to the ARDUINO_API module in CMAkelists * Solve #46 Signed-off-by: Dhruva Gole <[email protected]>
a88eda6
DhruvaG2000
Successfully merging a pull request may close this issue.
When building a project that does not use the Arduino API Module, it is still selected and built:
We should check that the KConfig for this symbol defaults to
n
To reproduce
west build -b arduino_nano_33_ble samples/basic/minimal/ -p
west build -t menuconfig
/arduino
will pull up a search that shows the Arduino API Module is enabled but it should not be.The text was updated successfully, but these errors were encountered: