Replies: 1 comment 1 reply
-
You would use an overlay for your application instead |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm working on a board that uses Zephyr board revisions to handle minor differences between the hardware revs.
The "Rev A" of the board was built with NRF9160-SIBA-R7 (NB-IoT only), but future revisions of the board were built with NRF9160-SICA-B1A-R7 (LTE-M/NB-IoT/GNSS).
To make sure the firmware uses NB-IoT for the Rev A board, I have added
boards/arm/<<board name redacted>>/<<board name redacted>>_ns_A.conf
with the following config:However, when I build the firmware (
west build -p -b <<board name redacted>>_ns@A
), I get the following warning when building the mcuboot child image (building Zephyr app image builds without warnings):Is there a recommended way to force the NB-IoT mode only for board Rev A (
<<board name redacted>>_ns@A
) that will not result in this warning when building mcuboot?Beta Was this translation helpful? Give feedback.
All reactions