Compare commits
1 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
66b8df3bc4 | 2 days ago |
346 changed files with 62330 additions and 60315 deletions
File diff suppressed because one or more lines are too long
@ -0,0 +1,52 @@ |
|||||
|
/* USER CODE BEGIN Header */ |
||||
|
/**
|
||||
|
****************************************************************************** |
||||
|
* @file iwdg.h |
||||
|
* @brief This file contains all the function prototypes for |
||||
|
* the iwdg.c file |
||||
|
****************************************************************************** |
||||
|
* @attention |
||||
|
* |
||||
|
* Copyright (c) 2026 STMicroelectronics. |
||||
|
* All rights reserved. |
||||
|
* |
||||
|
* This software is licensed under terms that can be found in the LICENSE file |
||||
|
* in the root directory of this software component. |
||||
|
* If no LICENSE file comes with this software, it is provided AS-IS. |
||||
|
* |
||||
|
****************************************************************************** |
||||
|
*/ |
||||
|
/* USER CODE END Header */ |
||||
|
/* Define to prevent recursive inclusion -------------------------------------*/ |
||||
|
#ifndef __IWDG_H__ |
||||
|
#define __IWDG_H__ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif |
||||
|
|
||||
|
/* Includes ------------------------------------------------------------------*/ |
||||
|
#include "main.h" |
||||
|
|
||||
|
/* USER CODE BEGIN Includes */ |
||||
|
|
||||
|
/* USER CODE END Includes */ |
||||
|
|
||||
|
extern IWDG_HandleTypeDef hiwdg1; |
||||
|
|
||||
|
/* USER CODE BEGIN Private defines */ |
||||
|
|
||||
|
/* USER CODE END Private defines */ |
||||
|
|
||||
|
void MX_IWDG1_Init(void); |
||||
|
|
||||
|
/* USER CODE BEGIN Prototypes */ |
||||
|
|
||||
|
/* USER CODE END Prototypes */ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} |
||||
|
#endif |
||||
|
|
||||
|
#endif /* __IWDG_H__ */ |
||||
|
|
||||
@ -0,0 +1,56 @@ |
|||||
|
/* USER CODE BEGIN Header */ |
||||
|
/**
|
||||
|
****************************************************************************** |
||||
|
* @file iwdg.c |
||||
|
* @brief This file provides code for the configuration |
||||
|
* of the IWDG instances. |
||||
|
****************************************************************************** |
||||
|
* @attention |
||||
|
* |
||||
|
* Copyright (c) 2026 STMicroelectronics. |
||||
|
* All rights reserved. |
||||
|
* |
||||
|
* This software is licensed under terms that can be found in the LICENSE file |
||||
|
* in the root directory of this software component. |
||||
|
* If no LICENSE file comes with this software, it is provided AS-IS. |
||||
|
* |
||||
|
****************************************************************************** |
||||
|
*/ |
||||
|
/* USER CODE END Header */ |
||||
|
/* Includes ------------------------------------------------------------------*/ |
||||
|
#include "iwdg.h" |
||||
|
|
||||
|
/* USER CODE BEGIN 0 */ |
||||
|
|
||||
|
/* USER CODE END 0 */ |
||||
|
|
||||
|
IWDG_HandleTypeDef hiwdg1; |
||||
|
|
||||
|
/* IWDG1 init function */ |
||||
|
void MX_IWDG1_Init(void) |
||||
|
{ |
||||
|
|
||||
|
/* USER CODE BEGIN IWDG1_Init 0 */ |
||||
|
|
||||
|
/* USER CODE END IWDG1_Init 0 */ |
||||
|
|
||||
|
/* USER CODE BEGIN IWDG1_Init 1 */ |
||||
|
|
||||
|
/* USER CODE END IWDG1_Init 1 */ |
||||
|
hiwdg1.Instance = IWDG1; |
||||
|
hiwdg1.Init.Prescaler = IWDG_PRESCALER_64; |
||||
|
hiwdg1.Init.Window = 4095; |
||||
|
hiwdg1.Init.Reload = 500; |
||||
|
if (HAL_IWDG_Init(&hiwdg1) != HAL_OK) |
||||
|
{ |
||||
|
Error_Handler(); |
||||
|
} |
||||
|
/* USER CODE BEGIN IWDG1_Init 2 */ |
||||
|
|
||||
|
/* USER CODE END IWDG1_Init 2 */ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
/* USER CODE BEGIN 1 */ |
||||
|
|
||||
|
/* USER CODE END 1 */ |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,28 @@ |
|||||
|
../Core/FSM/Src/robot_move_actions.c:53:6:Forwards_State_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:59:6:Backwards_State_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:68:6:TurnLeft_State_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:78:6:TurnRight_State_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:88:6:HALT_State_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:98:6:Move_Vertical_Task_Forwards_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:106:6:Move_Vertical_Task_Backwards_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:112:6:HALT_State_Enter 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:116:6:HALT_State_Exit 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:125:6:Move_Horizontal_Task_Forwards_Right_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:134:6:Move_Horizontal_Task_Forwards_Right_Paint_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:141:6:Move_Horizontal_Task_Backwards_Right_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:150:6:Move_Horizontal_Task_Backwards_Right_Paint_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:157:6:Move_Horizontal_Task_Forwards_Left_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:166:6:Move_Horizontal_Task_Forwards_Left_Paint_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:174:6:Move_Horizontal_Task_Backwards_Left_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:182:6:Move_Horizontal_Task_Backwards_Left_Paint_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:191:6:Move_Head_To_UP_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:197:6:Move_Head_To_UP_Add_Adjust_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:207:6:Move_Head_To_Down_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:215:6:Move_Head_To_Left_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:222:6:Move_Head_To_Left_Add_Adjust_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:233:6:Move_Head_To_Right_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:240:6:Move_Head_To_Right_Add_Adjust_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:253:6:Move_Forwards_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:295:6:Move_Backwards_Do 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:330:6:Calbrate_Robot_Positon 16 static |
||||
|
../Core/FSM/Src/robot_move_actions.c:355:8:GetVehicleSpeed 16 static |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,83 @@ |
|||||
|
Core/Src/iwdg.o: ../Core/Src/iwdg.c ../Core/Inc/iwdg.h ../Core/Inc/main.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h \ |
||||
|
../Core/Inc/stm32h7xx_hal_conf.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h \ |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h \ |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h743xx.h \ |
||||
|
../Drivers/CMSIS/Include/core_cm7.h \ |
||||
|
../Drivers/CMSIS/Include/cmsis_version.h \ |
||||
|
../Drivers/CMSIS/Include/cmsis_compiler.h \ |
||||
|
../Drivers/CMSIS/Include/cmsis_gcc.h \ |
||||
|
../Drivers/CMSIS/Include/mpu_armv7.h \ |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_adc.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_iwdg.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_qspi.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h \ |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h |
||||
|
../Core/Inc/iwdg.h: |
||||
|
../Core/Inc/main.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal.h: |
||||
|
../Core/Inc/stm32h7xx_hal_conf.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_def.h: |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h7xx.h: |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/stm32h743xx.h: |
||||
|
../Drivers/CMSIS/Include/core_cm7.h: |
||||
|
../Drivers/CMSIS/Include/cmsis_version.h: |
||||
|
../Drivers/CMSIS/Include/cmsis_compiler.h: |
||||
|
../Drivers/CMSIS/Include/cmsis_gcc.h: |
||||
|
../Drivers/CMSIS/Include/mpu_armv7.h: |
||||
|
../Drivers/CMSIS/Device/ST/STM32H7xx/Include/system_stm32h7xx.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/Legacy/stm32_hal_legacy.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_rcc_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_gpio_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_dma_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_mdma.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_eth_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_exti.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_cortex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_ll_adc.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_adc_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_fdcan.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_flash_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_hsem.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_i2c_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_iwdg.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_pwr_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_qspi.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_tim_ex.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart.h: |
||||
|
../Drivers/STM32H7xx_HAL_Driver/Inc/stm32h7xx_hal_uart_ex.h: |
||||
Binary file not shown.
@ -0,0 +1 @@ |
|||||
|
../Core/Src/iwdg.c:30:6:MX_IWDG1_Init 8 static |
||||
Binary file not shown.
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue