diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-07 15:08:04 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-03-07 15:08:04 -0500 |
| commit | 2995e97cd489abeeedf90ac60b4b98499661ce7e (patch) | |
| tree | fa76bacff20df4c88c6d7973b56ba3be588a36d3 /example/Kconfig | |
| parent | 317c70674d1d889b98b3b127099ab876f55f1f2d (diff) | |
feat: Kconfig support added
Initial support for Kconfiglib has been added. This includes menuconfig,
savedefconfig, defconfig, and config.h generation.
Diffstat (limited to 'example/Kconfig')
| -rw-r--r-- | example/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/example/Kconfig b/example/Kconfig new file mode 100644 index 0000000..11c2de0 --- /dev/null +++ b/example/Kconfig @@ -0,0 +1,8 @@ +mainmenu "Example Program Configuration" + +config FIB_NUMBER + int "Fibonacci Number" + default 9 + help + Which Fibonacci number you would like. + |
