Skip to content

Commit 75716e0

Browse files
committed
[NUCLEO_F302R8] Add hal files
1 parent e726204 commit 75716e0

File tree

19 files changed

+2902
-0
lines changed

19 files changed

+2902
-0
lines changed
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/* mbed Microcontroller Library
2+
*******************************************************************************
3+
* Copyright (c) 2014, STMicroelectronics
4+
* All rights reserved.
5+
*
6+
* Redistribution and use in source and binary forms, with or without
7+
* modification, are permitted provided that the following conditions are met:
8+
*
9+
* 1. Redistributions of source code must retain the above copyright notice,
10+
* this list of conditions and the following disclaimer.
11+
* 2. Redistributions in binary form must reproduce the above copyright notice,
12+
* this list of conditions and the following disclaimer in the documentation
13+
* and/or other materials provided with the distribution.
14+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
15+
* may be used to endorse or promote products derived from this software
16+
* without specific prior written permission.
17+
*
18+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
*******************************************************************************
29+
*/
30+
#ifndef MBED_PERIPHERALNAMES_H
31+
#define MBED_PERIPHERALNAMES_H
32+
33+
#include "cmsis.h"
34+
35+
#ifdef __cplusplus
36+
extern "C" {
37+
#endif
38+
39+
typedef enum {
40+
ADC_1 = (int)ADC1_BASE
41+
} ADCName;
42+
43+
typedef enum {
44+
DAC_1 = (int)DAC_BASE
45+
} DACName;
46+
47+
typedef enum {
48+
UART_1 = (int)USART1_BASE,
49+
UART_2 = (int)USART2_BASE,
50+
UART_3 = (int)USART3_BASE
51+
} UARTName;
52+
53+
#define STDIO_UART_TX PA_2
54+
#define STDIO_UART_RX PA_3
55+
#define STDIO_UART UART_2
56+
57+
typedef enum {
58+
SPI_2 = (int)SPI2_BASE,
59+
SPI_3 = (int)SPI3_BASE
60+
} SPIName;
61+
62+
typedef enum {
63+
I2C_1 = (int)I2C1_BASE,
64+
I2C_2 = (int)I2C2_BASE,
65+
I2C_3 = (int)I2C3_BASE
66+
} I2CName;
67+
68+
typedef enum {
69+
PWM_1 = (int)TIM1_BASE,
70+
PWM_15 = (int)TIM15_BASE,
71+
PWM_16 = (int)TIM16_BASE,
72+
PWM_17 = (int)TIM17_BASE
73+
} PWMName;
74+
75+
#ifdef __cplusplus
76+
}
77+
#endif
78+
79+
#endif
Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
/* mbed Microcontroller Library
2+
*******************************************************************************
3+
* Copyright (c) 2014, STMicroelectronics
4+
* All rights reserved.
5+
*
6+
* Redistribution and use in source and binary forms, with or without
7+
* modification, are permitted provided that the following conditions are met:
8+
*
9+
* 1. Redistributions of source code must retain the above copyright notice,
10+
* this list of conditions and the following disclaimer.
11+
* 2. Redistributions in binary form must reproduce the above copyright notice,
12+
* this list of conditions and the following disclaimer in the documentation
13+
* and/or other materials provided with the distribution.
14+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
15+
* may be used to endorse or promote products derived from this software
16+
* without specific prior written permission.
17+
*
18+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
*******************************************************************************
29+
*/
30+
#ifndef MBED_PINNAMES_H
31+
#define MBED_PINNAMES_H
32+
33+
#include "cmsis.h"
34+
35+
#ifdef __cplusplus
36+
extern "C" {
37+
#endif
38+
39+
// MODE (see GPIOMode_TypeDef structure)
40+
// OTYPE (see GPIOOType_TypeDef structure)
41+
// PUPD (see GPIOPuPd_TypeDef structure)
42+
// AFNUM (see AF_mapping constant table, 0xFF is not used)
43+
#define STM_PIN_DATA(MODE, OTYPE, PUPD, AFNUM) (((AFNUM)<<8)|((PUPD)<<4)|((OTYPE)<<2)|((MODE)<<0))
44+
#define STM_PIN_MODE(X) (((X)>>0) & 0x3)
45+
#define STM_PIN_OTYPE(X) (((X)>>2) & 0x1)
46+
#define STM_PIN_PUPD(X) (((X)>>4) & 0x3)
47+
#define STM_PIN_AFNUM(X) (((X)>>8) & 0xF)
48+
49+
// High nibble = port number (0=A, 1=B, 2=C, 3=D, 4=E, 5=F, 6=G, 7=H)
50+
// Low nibble = pin number
51+
#define STM_PORT(X) (((uint32_t)(X) >> 4) & 0xF)
52+
#define STM_PIN(X) ((uint32_t)(X) & 0xF)
53+
54+
typedef enum {
55+
PIN_INPUT,
56+
PIN_OUTPUT
57+
} PinDirection;
58+
59+
typedef enum {
60+
PA_0 = 0x00,
61+
PA_1 = 0x01,
62+
PA_2 = 0x02,
63+
PA_3 = 0x03,
64+
PA_4 = 0x04,
65+
PA_5 = 0x05,
66+
PA_6 = 0x06,
67+
PA_7 = 0x07,
68+
PA_8 = 0x08,
69+
PA_9 = 0x09,
70+
PA_10 = 0x0A,
71+
PA_11 = 0x0B,
72+
PA_12 = 0x0C,
73+
PA_13 = 0x0D,
74+
PA_14 = 0x0E,
75+
PA_15 = 0x0F,
76+
77+
PB_0 = 0x10,
78+
PB_1 = 0x11,
79+
PB_2 = 0x12,
80+
PB_3 = 0x13,
81+
PB_4 = 0x14,
82+
PB_5 = 0x15,
83+
PB_6 = 0x16,
84+
PB_7 = 0x17,
85+
PB_8 = 0x18,
86+
PB_9 = 0x19,
87+
PB_10 = 0x1A,
88+
PB_11 = 0x1B,
89+
PB_12 = 0x1C,
90+
PB_13 = 0x1D,
91+
PB_14 = 0x1E,
92+
PB_15 = 0x1F,
93+
94+
PC_0 = 0x20,
95+
PC_1 = 0x21,
96+
PC_2 = 0x22,
97+
PC_3 = 0x23,
98+
PC_4 = 0x24,
99+
PC_5 = 0x25,
100+
PC_6 = 0x26,
101+
PC_7 = 0x27,
102+
PC_8 = 0x28,
103+
PC_9 = 0x29,
104+
PC_10 = 0x2A,
105+
PC_11 = 0x2B,
106+
PC_12 = 0x2C,
107+
PC_13 = 0x2D,
108+
PC_14 = 0x2E,
109+
PC_15 = 0x2F,
110+
111+
PD_2 = 0x32,
112+
113+
PF_0 = 0x50,
114+
PF_1 = 0x51,
115+
116+
// Arduino connector namings
117+
A0 = PA_0,
118+
A1 = PA_1,
119+
A2 = PA_4,
120+
A3 = PB_0,
121+
A4 = PC_1,
122+
A5 = PC_0,
123+
D0 = PA_3,
124+
D1 = PA_2,
125+
D2 = PA_10,
126+
D3 = PB_3,
127+
D4 = PB_5,
128+
D5 = PB_4,
129+
D6 = PB_10,
130+
D7 = PA_8,
131+
D8 = PA_9,
132+
D9 = PC_7,
133+
D10 = PB_6,
134+
D11 = PA_7,
135+
D12 = PA_6,
136+
D13 = PA_5,
137+
D14 = PB_9,
138+
D15 = PB_8,
139+
140+
// Generic signals namings
141+
LED1 = PA_5,
142+
LED2 = PA_5,
143+
LED3 = PA_5,
144+
LED4 = PA_5,
145+
USER_BUTTON = PC_13,
146+
SERIAL_TX = PA_2,
147+
SERIAL_RX = PA_3,
148+
USBTX = PA_2,
149+
USBRX = PA_3,
150+
I2C_SCL = PB_8,
151+
I2C_SDA = PB_9,
152+
SPI_MOSI = PA_7,
153+
SPI_MISO = PA_6,
154+
SPI_SCK = PA_5,
155+
SPI_CS = PB_6,
156+
PWM_OUT = PB_3,
157+
158+
// Not connected
159+
NC = (int)0xFFFFFFFF
160+
} PinName;
161+
162+
typedef enum {
163+
PullNone = 0,
164+
PullUp = 1,
165+
PullDown = 2,
166+
OpenDrain = 3,
167+
PullDefault = PullNone
168+
} PinMode;
169+
170+
#ifdef __cplusplus
171+
}
172+
#endif
173+
174+
#endif
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
/* mbed Microcontroller Library
2+
*******************************************************************************
3+
* Copyright (c) 2014, STMicroelectronics
4+
* All rights reserved.
5+
*
6+
* Redistribution and use in source and binary forms, with or without
7+
* modification, are permitted provided that the following conditions are met:
8+
*
9+
* 1. Redistributions of source code must retain the above copyright notice,
10+
* this list of conditions and the following disclaimer.
11+
* 2. Redistributions in binary form must reproduce the above copyright notice,
12+
* this list of conditions and the following disclaimer in the documentation
13+
* and/or other materials provided with the distribution.
14+
* 3. Neither the name of STMicroelectronics nor the names of its contributors
15+
* may be used to endorse or promote products derived from this software
16+
* without specific prior written permission.
17+
*
18+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28+
*******************************************************************************
29+
*/
30+
#ifndef MBED_PORTNAMES_H
31+
#define MBED_PORTNAMES_H
32+
33+
#ifdef __cplusplus
34+
extern "C" {
35+
#endif
36+
37+
typedef enum {
38+
PortA = 0,
39+
PortB = 1,
40+
PortC = 2,
41+
PortD = 3,
42+
PortF = 5
43+
} PortName;
44+
45+
#ifdef __cplusplus
46+
}
47+
#endif
48+
#endif

0 commit comments

Comments
 (0)