This isn't really a question, but I'm not sure where to post something like this. The stock app_button_init
takes a pointer to a non-const
app_button_cfg_t
. The library never modifies this config, though. Changing it to a pointer to a const app_button_cfg_t
allows the config to be stored in read-only memory. I've attached a simple patch that makes this change: app_button.patch
Is there a place I should put something like this in the future? Hopefully soon the SDK will be on GitHub and I can send a PR :)
Thanks!