forked from simondlevy/BreezySTM32
-
Notifications
You must be signed in to change notification settings - Fork 5
/
breezystm32.h
57 lines (43 loc) · 1.34 KB
/
breezystm32.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
breezystm32.h : general header for BreezySTM32 library
Copyright (C) 2016 Simon D. Levy
This file is part of BreezySTM32.
BreezySTM32 is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BreezySTM32 is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with BreezySTM32. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <stdbool.h>
#include <stdlib.h>
#include "stm32f10x_conf.h"
#include "drv_adc.h"
#include "drv_i2c.h"
#include "drv_serial.h"
#include "drv_gpio.h"
#include "drv_system.h"
#include "drv_pwm.h"
#include "drv_uart.h"
#include "drv_mpu6050.h"
#include "drv_ms5611.h"
#include "drv_bmp280.h"
#include "drv_mb1242.h"
#include "drv_sen13680.h"
#include "drv_spi.h"
#include "drv_gpio.h"
#include "drv_m25p16.h"
#include "drv_flashfs.h"
#include "drv_ms4525.h"
#include "drv_hmc5883l.h"
#ifdef BREEZYPRINTF
#include "breezyprintf.h"
#endif
extern serialPort_t * Serial1;
void setup(void);
void loop(void);