Use uint8_t in Kconfig.projbuild
Posted: Tue Aug 08, 2017 6:15 pm
I want to use the Kconfig.projbuild file, there should be a parameter as uint8_t. But this is not possible, only int (or string).
this is working
but i want to use this as uint8_t. Int is not working with this syntax. "You have made an invalid entry."
String is the only datatype working. Is it possible to cast this into uint8_t?
this is working
Code: Select all
config mac
string "mac"
default "{0x00, 0x00, 0x00, 0x00, 0x00, 0x00}"
String is the only datatype working. Is it possible to cast this into uint8_t?