Skip to content

Commit

Permalink
projects:evb_discovery_firmware: Rename .ioc file
Browse files Browse the repository at this point in the history
Rename the .ioc file for the evb discovery fw
Add void in function arguments

Signed-off-by: Janani Sunil <[email protected]>
  • Loading branch information
jansunil committed Nov 22, 2024
1 parent 601a9fe commit 8be5b2f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/evb_discovery_firmware/app/app_config_stm32.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ struct stm32_uart_init_param stm32_uart_extra_init_params = {
* @brief Initialize the STM32 system peripherals
* @return None
*/
void stm32_system_init()
void stm32_system_init(void)
{
HAL_Init();
SystemClock_Config();
Expand Down
2 changes: 1 addition & 1 deletion projects/evb_discovery_firmware/app/app_config_stm32.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ extern struct stm32_i2c_init_param stm32_i2c_extra_init_params;
extern struct stm32_uart_init_param stm32_uart_extra_init_params;
extern UART_HandleTypeDef huart3;

void stm32_system_init();
void stm32_system_init(void);

#endif /* APP_CONFIG_STM32_H_ */

0 comments on commit 8be5b2f

Please sign in to comment.