提交 | 用户 | age | ||
6a6261 | 1 | #ifndef _USER_H_ |
Q | 2 | #define _USER_H_ |
3 | ||
4 | #include "stm32f0xx.h" | |
5 | ||
6 | #include <stdint.h> | |
7 | #include <stdbool.h> | |
8 | #include <string.h> | |
9 | ||
10 | #include "gpio.h" | |
11 | #include "delay.h" | |
12 | #include "spi.h" | |
13 | ||
14 | #include "radio.h" | |
15 | #include "sx126x.h" | |
16 | #include "sx126x-board.h" | |
17 | #include "crc.h" | |
18 | ||
19 | ||
20 | #endif | |
21 |