-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathvariant.cpp
231 lines (204 loc) · 5.56 KB
/
variant.cpp
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/*
Copyright (c) 2011 Arduino. All right reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "variant.h"
#ifdef __cplusplus
extern "C" {
#endif
// Pin number
// Match Table 17. NUCLEO-F429ZI pin assignments
// from UM1974 STM32 Nucleo-144 board
const PinName digital_arduino[] = {
PG9, //D0
PG14, //D1
PF15, //D2
PE13, //D3
PF14, //D4
PE11, //D5
PE9, //D6
PF13, //D7
PF12, //D8
PD15, //D9
PD14, //D10
PA7, //D11
PA6, //D12
PA5, //D13
PB9, //D14
PB8, //D15
PC6, //D16
PB15, //D17
PB13, //D18
PB12, //D19
PA15, //D20
PC7, //D21
PB5, //D22
PB3, //D23
PA4, //D24
PB4, //D25
PB6, //D26
PB2, //D27
PD13, //D28
PD12, //D29
PD11, //D30
PE2, //D31
PA0, //D32
PB0, //D33
PE0, //D34
PB11, //D35
PB10, //D36
PE15, //D37
PE14, //D38
PE12, //D39
PE10, //D40
PE7, //D41
PE8, //D42
PC8, //D43
PC9, //D44
PC10, //D45
PC11, //D46
PC12, //D47
PD2, //D48
PG2, //D49
PG3, //D50
PD7, //D51
PD6, //D52
PD5, //D53
PD4, //D54
PD3, //D55
PE2, //D56
PE4, //D57
PE5, //D58
PE6, //D59
PE3, //D60
PF8, //D61
PF7, //D62
PF9, //D63
PG1, //D64
PG0, //D65
PD1, //D66
PD0, //D67
PF0, //D68
PF1, //D69
PF2, //D70
PA7, //D71
NC, //D72
PA3, //D73/A0
PC0, //D74/A1
PC3, //D75/A2
PF3, //D76/A3
PF5, //D77/A4
PF10, //D78/A5
PB7, //D79
PB14, //D80
PC13, //D81
PD9, //D82
PD8 //D83
};
#ifdef __cplusplus
}
#endif
/*
* UART objects
*/
HardwareSerial Serial(PD9, PD8); // Connected to ST-Link
HardwareSerial Serial1(PG9, PG14);
HardwareSerial Serial2(PD6, PD5);
void serialEvent() __attribute__((weak));
void serialEvent() { }
void serialEvent1() __attribute__((weak));
void serialEvent1() { }
void serialEvent2() __attribute__((weak));
void serialEvent2() { }
void serialEventRun(void)
{
if (Serial.available()) serialEvent();
if (Serial1.available()) serialEvent1();
if (Serial2.available()) serialEvent2();
}
// ----------------------------------------------------------------------------
#ifdef __cplusplus
extern "C" {
#endif
void __libc_init_array(void);
uint32_t pinNametoPinNumber(PinName p)
{
uint32_t i = 0;
for(i = 0; i < NUM_DIGITAL_PINS; i++) {
if (digital_arduino[i] == p)
break;
}
return i;
}
void init( void )
{
hw_config_init();
}
/**
* @brief System Clock Configuration
* The system Clock is configured as follow :
* System Clock source = PLL (HSE)
* SYSCLK(Hz) = 168000000
* HCLK(Hz) = 168000000
* AHB Prescaler = 1
* APB1 Prescaler = 4
* APB2 Prescaler = 2
* HSE Frequency(Hz) = 8000000
* PLL_M = 8
* PLL_N = 336
* PLL_P = 2
* PLL_Q = 7
* VDD(V) = 3.3
* Main regulator output voltage = Scale1 mode
* Flash Latency(WS) = 5
* @param None
* @retval None
*/
WEAK void SystemClock_Config(void)
{
RCC_ClkInitTypeDef RCC_ClkInitStruct;
RCC_OscInitTypeDef RCC_OscInitStruct;
/* Enable Power Control clock */
__HAL_RCC_PWR_CLK_ENABLE();
/* The voltage scaling allows optimizing the power consumption when the device is
clocked below the maximum system frequency, to update the voltage scaling value
regarding system frequency refer to product datasheet. */
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
/* Enable HSE Oscillator and activate PLL with HSE as source */
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS;
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
RCC_OscInitStruct.PLL.PLLM = 8;
RCC_OscInitStruct.PLL.PLLN = 336;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLQ = 7;
HAL_RCC_OscConfig(&RCC_OscInitStruct);
HAL_PWREx_EnableOverDrive();
/* Select PLL as system clock source and configure the HCLK, PCLK1 and PCLK2
clocks dividers */
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK |
RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2);
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_5);
HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
/* SysTick_IRQn interrupt configuration */
HAL_NVIC_SetPriority(SysTick_IRQn, 0, 0);
}
#ifdef __cplusplus
}
#endif