Finally rename flight.c/.h to pid.c/.h. Cleanup some dependencies.
[betaflight.git] / src / main / platform.h
blob44684f63dbe2ee20427bfaee699cc24b8f7e604b
1 /*
2 * This file is part of Cleanflight.
4 * Cleanflight 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 3 of the License, or
7 * (at your option) any later version.
9 * Cleanflight 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.
14 * You should have received a copy of the GNU General Public License
15 * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
18 #pragma once
20 #ifdef STM32F303xC
21 #include "stm32f30x_conf.h"
22 #include "stm32f30x_rcc.h"
23 #include "stm32f30x_gpio.h"
24 #include "core_cm4.h"
26 // Chip Unique ID on F303
27 #define U_ID_0 (*(uint32_t*)0x1FFFF7AC)
28 #define U_ID_1 (*(uint32_t*)0x1FFFF7B0)
29 #define U_ID_2 (*(uint32_t*)0x1FFFF7B4)
31 #endif
33 #ifdef STM32F10X
35 #include "stm32f10x_conf.h"
36 #include "stm32f10x_gpio.h"
37 #include "core_cm3.h"
39 // Chip Unique ID on F103
40 #define U_ID_0 (*(uint32_t*)0x1FFFF7E8)
41 #define U_ID_1 (*(uint32_t*)0x1FFFF7EC)
42 #define U_ID_2 (*(uint32_t*)0x1FFFF7F0)
44 #endif // STM32F10X
46 #include "target.h"