esp-idf-notes

Notes for esp idf, cmake, make and kconfig

View on GitHub

Kconfig

advanced usage guide

endmenu


three data types only: 
* int
* string
* bool

we use `config` to configure a value

config MESSAGE_QUEUE_SIZE int “Queue Size” default 1000 help “Sets message queue size” ```