aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2019-02-09 19:46:02 +0000
committerdakkar <dakkar@thenautilus.net>2019-02-09 19:46:02 +0000
commitecf8999a2af6363ef6619a521f9f202879571cb5 (patch)
tree6755902fafe0523790fdf77f022b8ea28183539c
parentreduce function calls (diff)
downloadkeyboardio-model01-ecf8999a2af6363ef6619a521f9f202879571cb5.tar.gz
keyboardio-model01-ecf8999a2af6363ef6619a521f9f202879571cb5.tar.bz2
keyboardio-model01-ecf8999a2af6363ef6619a521f9f202879571cb5.zip
PROGMEM is not useful here
it ends up being allocated in a different pointer space, and would need pgm_read_word
-rw-r--r--keymap-wrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/keymap-wrapper.h b/keymap-wrapper.h
index 96b2963..b39b669 100644
--- a/keymap-wrapper.h
+++ b/keymap-wrapper.h
@@ -38,7 +38,7 @@
#define cFunc(x) DakkarColor::FUNCTION
#define ColorKeymaps(layers...) \
- static constexpr DakkarColor::color color_keymaps[][ROWS][COLS] PROGMEM = { layers };
+ static constexpr DakkarColor::color color_keymaps[][ROWS][COLS] = { layers };
#include "keymaps.h"