summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/arm_atsam/md_bootloader.h
blob: 6b80ef49221e17c15a6379341fc295c8e4f6cce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _MD_BOOTLOADER_H_
#define _MD_BOOTLOADER_H_

extern uint32_t _srom;
extern uint32_t _lrom;
extern uint32_t _erom;

#define BOOTLOADER_SERIAL_MAX_SIZE 20   //DO NOT MODIFY!

#ifdef KEYBOARD_massdrop_ctrl
//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 *)((intptr_t)(&_eram) - 4)
#endif

#ifdef MD_BOOTLOADER

#define MCU_HZ 48000000
#define I2C_HZ 0 //Not used

#endif //MD_BOOTLOADER

#endif //_MD_BOOTLOADER_H_