Stima V4 Slave RAIN  4.2
module_slave_hal.hpp
Go to the documentation of this file.
1 
30 #include "config.h"
31 #include <Arduino.h>
32 #include <STM32FreeRTOS.h>
33 
34 // /* Define to prevent recursive inclusion -------------------------------------*/
35 #ifndef _MODULE_SLAVE_HAL_H
36 #define _MODULE_SLAVE_HAL_H
37 
38 // CPUID STM32
39 #define UID_BASE_ADDRESS (0x1FFF7590UL)
40 
41 #if (ENABLE_I2C1 || ENABLE_I2C2)
42 #include <Wire.h>
43 #endif
44 
45 #if (ENABLE_I2C2)
46 extern TwoWire Wire2;
47 #endif
48 
49 #if (ENABLE_QSPI)
50 extern QSPI_HandleTypeDef hqspi;
51 #define QSPI_NVIC_INT_PREMPT_PRIORITY 7
52 #endif
53 
54 #if (ENABLE_CAN)
55 extern CAN_HandleTypeDef hcan1;
56 #define CAN_NVIC_INT_PREMPT_PRIORITY 8
57 #endif
58 
59 // INIT HW PRIVATE BOARD/ISTANCE CFG
60 
61 // ******************************************************************************
62 
63 // PIN NAMED STM32 ARDUINO GPIO_INIT
64 
65 // CAN BUS
66 #define PIN_CAN_RX1 PB12
67 #define PIN_CAN_TX1 PB13
68 #define PIN_CAN_EN PC12
69 #define PIN_CAN_STB PB15
70 
71 // POWER OUTPUT SENSOR OR DIGITAL OUT Protection & Controller
72 #define PIN_IN_ICTRL PA4 // Power Controller Output Consumation
73 #define PIN_OUT_DEN PC4 // Enable Output
74 #define PIN_OUT_DSEL0 PC5 // MUX Chanel 0 Power Consumation Controller
75 #define PIN_OUT_DSEL1 PC6 // MUX Chanel 1 Power Consumation Controller
76 #define PIN_OUT0 PC7 // Digital OUT 0
77 #define PIN_OUT1 PC8 // Digital OUT 1
78 #define PIN_OUT2 PC9 // Digital OUT 2
79 #define PIN_OUT3 PC10 // Digital OUT 3
80 
81 // INPUT DIGITAL
82 #define PIN_IN0 PB2
83 #define PIN_IN1 PA8
84 #define PIN_IN2 PB8
85 
86 // INPUT BUTTON
87 #ifdef STIMAV4_SLAVE_HW_VER_01_01
88 #define PIN_BTN PH0 // INPUT BUTTON (RESET PARAMETERS)
89 #endif
90 
91 // I2C
92 #define PIN_I2C2_EN PC11
93 #define PIN_I2C2_SDA PB14
94 #define PIN_I2C2_SCL PB10
95 
96 #define PIN_I2C1_SDA PB7
97 #define PIN_I2C1_SCL PB6
98 
99 // PIN ENABLE SUPPLY
100 #define PIN_EN_SPLY PD2
101 #define PIN_EN_5VS PB5
102 #define PIN_EN_5VA PB9
103 #define PIN_FAULT_SPLY PB4
104 
105 // PIN SPI
106 #define PIN_SPI_SCK PA5
107 #define PIN_SPI_MOSI PA12
108 #define PIN_SPI_MISO PA11
109 
110 #define PIN_SYS_JTMS PA13
111 
112 // PIN UART1 (Monitor Debugger)
113 #define PIN_USART1_TX PA10
114 #define PIN_USART1_RX PA9
115 
116 // PIN UART2
117 #define PIN_USART2_TX PA2
118 #define PIN_USART2_RX PA15
119 #define PIN_USART2_CTS PA0
120 #define PIN_USART2_RTS PA1
121 
122 // PIN ANALOG
123 #define PIN_ANALOG_01 PC0
124 #define PIN_ANALOG_02 PC1
125 #define PIN_ANALOG_03 PC2
126 #define PIN_ANALOG_04 PC3
127 #define PIN_ANALOG_09 PA4 // Power Controller Consumation
128 
129 #if (ENABLE_DIAG_PIN)
130 // DIAG PIN (LED + BUTTON COME TEST NUCLEO)
131 // Commentare per escludere la funzionalità
132 #define HFLT_PIN PIN_OUT1 // N.C. in Module_Power -> Output Signal Fault_Handler
133 #define LED1_PIN PIN_OUT2 // LED 1 Nucleo Simulator
134 #define LED2_PIN PIN_OUT3 // LED 2 Nucleo Simulator
135 #define USER_INP PIN_IN2 // BTN_I Nucleo Simulator
136 #endif
137 
138 // ******************************************************************************
139 
140 // PIN NAMED STM32CUBE FOR GPIO_INIT
141 
142 #define DEN_Pin GPIO_PIN_4
143 #define DEN_GPIO_Port GPIOC
144 #define DSEL0_Pin GPIO_PIN_5
145 #define DSEL0_GPIO_Port GPIOC
146 #define IN0_Pin GPIO_PIN_2
147 #define IN0_GPIO_Port GPIOB
148 #define STB_CAN_Pin GPIO_PIN_15
149 #define STB_CAN_GPIO_Port GPIOB
150 #define DSEL1_Pin GPIO_PIN_6
151 #define DSEL1_GPIO_Port GPIOC
152 #define PW0_Pin GPIO_PIN_7
153 #define PW0_GPIO_Port GPIOC
154 #define PW1_Pin GPIO_PIN_8
155 #define PW1_GPIO_Port GPIOC
156 #define PW2_Pin GPIO_PIN_9
157 #define PW2_GPIO_Port GPIOC
158 #define IN1_Pin GPIO_PIN_8
159 #define IN1_GPIO_Port GPIOA
160 #define PW3_Pin GPIO_PIN_10
161 #define PW3_GPIO_Port GPIOC
162 #define I2C2_EN_Pin GPIO_PIN_11
163 #define I2C2_EN_GPIO_Port GPIOC
164 #define EN_CAN_Pin GPIO_PIN_12
165 #define EN_CAN_GPIO_Port GPIOC
166 #define EN_SPLY_Pin GPIO_PIN_2
167 #define EN_SPLY_GPIO_Port GPIOD
168 #define FAULT_Pin GPIO_PIN_4
169 #define FAULT_GPIO_Port GPIOB
170 #define EN_5VS_Pin GPIO_PIN_5
171 #define EN_5VS_GPIO_Port GPIOB
172 #define IN2_Pin GPIO_PIN_8
173 #define IN2_GPIO_Port GPIOB
174 #define EN_5VA_Pin GPIO_PIN_9
175 #define EN_5VA_GPIO_Port GPIOB
176 #ifdef STIMAV4_SLAVE_HW_VER_01_01
177 #define IN_BTN_Pin GPIO_PIN_0
178 #define IN_BTN_GPIO_Port GPIOH
179 #endif
180 
181 // ******************************************************************************
182 
183 /* Private Hardware_Handler istance initialization ---------------------------------------*/
184 
185 #ifdef __cplusplus
186 extern "C" {
187 #endif
188 
189 // Basic Function Hardware
190 void SystemClock_Config(void);
191 void SetupSystemPeripheral(void);
192 void HAL_MspInit(void);
193 void MX_GPIO_Init(void);
194 
195 void STM32L4GetCPUID(uint8_t *ptrCpuId);
196 uint64_t StimaV4GetSerialNumber(void);
197 
198 #if (ENABLE_CAN)
199 void MX_CAN1_Init(void);
200 void HAL_CAN_MspInit(CAN_HandleTypeDef* hcan);
201 void HAL_CAN_MspDeInit(CAN_HandleTypeDef* hcan);
202 #endif
203 
204 #if (ENABLE_QSPI)
205 void MX_QUADSPI_Init(void);
206 void HAL_QSPI_MspInit(QSPI_HandleTypeDef* hqspi);
207 void HAL_QSPI_MspDeInit(QSPI_HandleTypeDef* hqspi);
208 #endif
209 
210 #ifdef __cplusplus
211 }
212 #endif
213 
214 #endif // __MODULE_SLAVE_HAL_H
void MX_CAN1_Init(void)
CAN1 Initialization Function.
void SetupSystemPeripheral(void)
Startup PeripheralConfig Local Board.
CAN_HandleTypeDef hcan1
void STM32L4GetCPUID(uint8_t *ptrCpuId)
Get Unique ID HW of CPU (SerialNumber Unique ID)
uint64_t StimaV4GetSerialNumber(void)
Get StimaV4 Serial Number from UID Cpu and Module TYPE.
void SystemClock_Config(void)
System Clock Configuration.
void HAL_CAN_MspDeInit(CAN_HandleTypeDef *hcan)
CAN MSP De-Initialization. This function freeze the hardware resources used in this example.
void HAL_CAN_MspInit(CAN_HandleTypeDef *hcan)
CAN MSP Initialization. This function configures the hardware resources used in this example.
void MX_GPIO_Init(void)
GPIO Initialization Function.
void HAL_MspInit(void)
Initializes the Global MSP.