Updated comments in 'smartport.c' to reflect the specification.
[betaflight.git] / src / main / platform.h
blob5c58a1aeefd250b93bcf34bcb52480d4723e8064
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #pragma once
23 #define NOINLINE __attribute__((noinline))
25 #if !defined(UNIT_TEST) && !defined(SIMULATOR_BUILD) && !(USBD_DEBUG_LEVEL > 0)
26 #pragma GCC poison sprintf snprintf
27 #endif
29 #if defined(STM32H743xx) || defined(STM32H750xx)
30 #include "stm32h7xx.h"
31 #include "stm32h7xx_hal.h"
32 #include "system_stm32h7xx.h"
34 #include "stm32h7xx_ll_spi.h"
35 #include "stm32h7xx_ll_gpio.h"
36 #include "stm32h7xx_ll_dma.h"
37 #include "stm32h7xx_ll_rcc.h"
38 #include "stm32h7xx_ll_bus.h"
39 #include "stm32h7xx_ll_tim.h"
40 #include "stm32h7xx_ll_system.h"
41 #include "drivers/stm32h7xx_ll_ex.h"
43 // Chip Unique ID on H7
44 #define U_ID_0 (*(uint32_t*)UID_BASE)
45 #define U_ID_1 (*(uint32_t*)(UID_BASE + 4))
46 #define U_ID_2 (*(uint32_t*)(UID_BASE + 8))
48 #ifndef STM32H7
49 #define STM32H7
50 #endif
52 #elif defined(STM32F722xx) || defined(STM32F745xx) || defined(STM32F746xx) || defined(STM32F765xx)
53 #include "stm32f7xx.h"
54 #include "stm32f7xx_hal.h"
55 #include "system_stm32f7xx.h"
57 #include "stm32f7xx_ll_spi.h"
58 #include "stm32f7xx_ll_gpio.h"
59 #include "stm32f7xx_ll_dma.h"
60 #include "stm32f7xx_ll_rcc.h"
61 #include "stm32f7xx_ll_bus.h"
62 #include "stm32f7xx_ll_tim.h"
63 #include "stm32f7xx_ll_system.h"
64 #include "drivers/stm32f7xx_ll_ex.h"
66 // Chip Unique ID on F7
67 #define U_ID_0 (*(uint32_t*)UID_BASE)
68 #define U_ID_1 (*(uint32_t*)(UID_BASE + 4))
69 #define U_ID_2 (*(uint32_t*)(UID_BASE + 8))
71 #ifndef STM32F7
72 #define STM32F7
73 #endif
75 #elif defined(STM32F40_41xxx) || defined (STM32F411xE) || defined (STM32F446xx)
77 #include "stm32f4xx.h"
79 // Chip Unique ID on F405
80 #define U_ID_0 (*(uint32_t*)0x1fff7a10)
81 #define U_ID_1 (*(uint32_t*)0x1fff7a14)
82 #define U_ID_2 (*(uint32_t*)0x1fff7a18)
84 #ifndef STM32F4
85 #define STM32F4
86 #endif
88 #elif defined(STM32F303xC)
89 #include "stm32f30x_conf.h"
90 #include "stm32f30x_rcc.h"
91 #include "stm32f30x_gpio.h"
92 #include "core_cm4.h"
94 // Chip Unique ID on F303
95 #define U_ID_0 (*(uint32_t*)0x1FFFF7AC)
96 #define U_ID_1 (*(uint32_t*)0x1FFFF7B0)
97 #define U_ID_2 (*(uint32_t*)0x1FFFF7B4)
99 #ifndef STM32F3
100 #define STM32F3
101 #endif
103 #elif defined(STM32F10X)
105 #include "stm32f10x_conf.h"
106 #include "stm32f10x_gpio.h"
107 #include "core_cm3.h"
109 // Chip Unique ID on F103
110 #define U_ID_0 (*(uint32_t*)0x1FFFF7E8)
111 #define U_ID_1 (*(uint32_t*)0x1FFFF7EC)
112 #define U_ID_2 (*(uint32_t*)0x1FFFF7F0)
114 #ifndef STM32F1
115 #define STM32F1
116 #endif
118 #elif defined(SIMULATOR_BUILD)
120 // Nop
122 #else // STM32F10X
123 #error "Invalid chipset specified. Update platform.h"
124 #endif
126 #include "target/common_pre.h"
127 #include "target.h"
128 #include "target/common_deprecated_post.h"
129 #include "target/common_post.h"
130 #include "target/common_defaults_post.h"