]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/protocol/arm_atsam/arm_atsam_protocol.h
928af8c7e1700f4a809970ee931ab585a2119ec9
[qmk_firmware.git] / tmk_core / protocol / arm_atsam / arm_atsam_protocol.h
1 /*
2 Copyright 2018 Massdrop Inc.
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 #ifndef _ARM_ATSAM_PROTOCOL_H_
19 #define _ARM_ATSAM_PROTOCOL_H_
20
21 #include "samd51j18a.h"
22 #include "md_bootloader.h"
23
24 #include "timer.h"
25 #include "d51_util.h"
26 #include "clks.h"
27 #include "wait.h"
28 #include "adc.h"
29 #include "i2c_master.h"
30 #include "spi.h"
31
32 #include "./usb/usb2422.h"
33
34 #ifndef MD_BOOTLOADER
35
36 #include "main_arm_atsam.h"
37 #include "led_matrix.h"
38 #include "issi3733_driver.h"
39 #include "./usb/compiler.h"
40 #include "./usb/udc.h"
41 #include "./usb/udi_cdc.h"
42
43 #endif //MD_BOOTLOADER
44
45 #endif //_ARM_ATSAM_PROTOCOL_H_
46