forked from kofal.net/zmk
refactor(core): Move to stack allocated events.
* Move to local/stack allocated event API that doesn't require dynamic allocation/freeing. * Disable heap, we no longer use alloc/free unless using LVGL. * Tons of refactors all over to account for the new event approach.
This commit is contained in:
committed by
Pete Johanson
parent
50e473276f
commit
33209dee1d
@@ -17,8 +17,7 @@ struct zmk_layer_state_changed {
|
||||
|
||||
ZMK_EVENT_DECLARE(zmk_layer_state_changed);
|
||||
|
||||
static inline struct zmk_layer_state_changed_event *create_layer_state_changed(uint8_t layer,
|
||||
bool state) {
|
||||
return new_zmk_layer_state_changed((struct zmk_layer_state_changed){
|
||||
static inline int raise_layer_state_changed(uint8_t layer, bool state) {
|
||||
return raise_zmk_layer_state_changed((struct zmk_layer_state_changed){
|
||||
.layer = layer, .state = state, .timestamp = k_uptime_get()});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user