statics are pdata by default

This commit is contained in:
Jeremy Soller 2019-11-13 11:13:26 -07:00
parent 1de07139cd
commit 1a6d510aee
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -23,7 +23,7 @@ void kbscan_init(void) {
void kbscan_event(void) { void kbscan_event(void) {
static uint8_t kbscan_layer = 0; static uint8_t kbscan_layer = 0;
static uint8_t __pdata kbscan_last[KM_OUT] = { 0 }; static uint8_t kbscan_last[KM_OUT] = { 0 };
int i; int i;
for (i = 0; i < KM_OUT; i++) { for (i = 0; i < KM_OUT; i++) {