]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/arm_atsam/md_bootloader.h
Massdrop keyboard support (#3780)
[qmk_firmware.git] / tmk_core / protocol / arm_atsam / md_bootloader.h
1 #ifndef _MD_BOOTLOADER_H_
2 #define _MD_BOOTLOADER_H_
3
4 extern uint32_t _srom;
5 extern uint32_t _lrom;
6 extern uint32_t _erom;
7
8 #define BOOTLOADER_SERIAL_MAX_SIZE 20   //DO NOT MODIFY!
9
10 #ifdef MD_BOOTLOADER
11
12 #define MCU_HZ 48000000
13 #define I2C_HZ 0 //Not used
14
15 #endif //MD_BOOTLOADER
16
17 #endif //_MD_BOOTLOADER_H_
18