
'Using Snippets in Zephyr: a Shorthand for Changing Build Configuration'
Zephyr snippets helps developers extend the capabilities of their device firmware with simple command line controls. This post shows how to add logging to an …


Zephyr snippets helps developers extend the capabilities of their device firmware with simple command line controls. This post shows how to add logging to an …

Zephyr has a lot of tricks up its sleeve and most recently I used it to enable power regulators on a custom Golioth board. Perhaps the most interesting part of …

Use common code in your Zephyr projects by using CMake and Kconfig to include it in the project configuration files.

I needed to build 15 sets of the same firmware, but pass three unique variables for each copy. Zephyr has a solution for this: the Kconfig system. You can …