This is a Zephyr freestanding application used in the second article of the "Practical Zephyr" series. It shows the various possibilities of using Kconfig
files.
Browse the files and read the comments for more details - or even better, follow along the article series!
The following lists the builds covered by the article and the corresponding Kconfig
files that are used:
west build --board nrf52840dk_nrf52840
west build --board nrf52840dk_nrf52840 -- -DCONF_FILE=prj_release.conf
west build --board nrf52840dk_nrf52840 -- -DEXTRA_CONF_FILE="extra0.conf;extra1.conf"
west build --board nrf52840dk_nrf52840 -- -DCONF_FILE="prj_release.conf" -DEXTRA_CONF_FILE="extra1.conf;extra0.1onf"
Note: The
tasks.py
script is used by the GitHub action for building this application using invoke.