Changeset 25 for trunk/fw_g473rct/SES/src/main.c
- Timestamp:
- Sep 7, 2025, 3:51:43 PM (7 weeks ago)
- File:
-
- 1 edited
-
trunk/fw_g473rct/SES/src/main.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fw_g473rct/SES/src/main.c
r24 r25 44 44 #include "chip_temperature.h" 45 45 #include "shunt_temperature.h" 46 #include "esr.h" 47 #include "ads1260.h" 48 #include "outputs.h" 49 #include "crc.h" 46 50 /* USER CODE END Includes */ 47 51 … … 139 143 MX_USB_PCD_Init(); 140 144 /* USER CODE BEGIN 2 */ 145 MX_CRC_Init(); //Cube is not generating this call ?! 141 146 printf("Test debug io\r\n"); 142 147 SYS_DATA_Init(); … … 207 212 Error_Handler(); 208 213 } 214 215 216 // ADS1260 Initialierung 217 ADS1260_init(); 218 printf("ADS1260 Init\n"); 219 OUTPUTS_Init(); 209 220 210 221 /* USER CODE END 2 */ … … 249 260 sys_data.s.values.lvp_sense = (adc5Data[3] * VREF * 21 ) / 65536.0; 250 261 } 262 263 264 if (newCurrentValue == 1) 265 { 266 ADS1260_ConversionFinished(); 267 ESR_Exec(); 268 269 newCurrentValue = 0; 270 271 } 251 272 252 273 if(sys_data.s.parameter.command != 0)
Note: See TracChangeset
for help on using the changeset viewer.
