summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-06-05 18:14:35 -0700
committerFlorian Didron <fdidron@users.noreply.github.com>2019-06-06 10:14:35 +0900
commit1ba27782efb76081013fadbf6a7c1cee27ab3d4c (patch)
tree8ada39b5a51c26ab914d130bb799633eccffb785
parent9b248baf4399a6cbe3688a437cdbec7b267f8631 (diff)
Fixes compile errors for massdrop keyboards (#70)
-rw-r--r--changelog.md1
-rw-r--r--tmk_core/protocol/arm_atsam/md_bootloader.h3
2 files changed, 2 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index 3116e2d2a9..1adbb7e9f0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -28,5 +28,6 @@
05-29-2019 - Fixing matrix_scan so it properly returns changed status
05-29-2019 - Add belgian layour for sendstring (qmk#6008)
06-03-2019 - Overhaul of AutoShift feature (qmk#6067)
+06-05-2019 - Fix compiler error for ATSAM based keyboards
06-05-2019 - Move RGB typedef's into a unified location
06-05-2019 - upgrade gcc-arm-none-eabi from the default 5.4.1 to 6.3.1 due to ARM runtine issues \ No newline at end of file
diff --git a/tmk_core/protocol/arm_atsam/md_bootloader.h b/tmk_core/protocol/arm_atsam/md_bootloader.h
index 956145c313..6b80ef4922 100644
--- a/tmk_core/protocol/arm_atsam/md_bootloader.h
+++ b/tmk_core/protocol/arm_atsam/md_bootloader.h
@@ -11,7 +11,7 @@ extern uint32_t _erom;
//WARNING: These are only for CTRL bootloader release "v2.18Jun 22 2018 17:28:08" for bootloader_jump support
extern uint32_t _eram;
#define BOOTLOADER_MAGIC 0x3B9ACA00
-#define MAGIC_ADDR (uint32_t *)(&_eram - 4)
+#define MAGIC_ADDR (uint32_t *)((intptr_t)(&_eram) - 4)
#endif
#ifdef MD_BOOTLOADER
@@ -22,4 +22,3 @@ extern uint32_t _eram;
#endif //MD_BOOTLOADER
#endif //_MD_BOOTLOADER_H_
-