Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

projects:evb_discovery_firmware:Bug fixes #99

Merged
merged 2 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/evb_discovery_firmware/STM32/.extSettings
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ app/libraries/no-OS/iio/=../../../libraries/no-OS/iio/iio.c;../../../libraries/n
app/libraries/no-OS/drivers/api/=../../../libraries/no-OS/drivers/api/no_os_uart.c;../../../libraries/no-OS/drivers/api/no_os_i2c.c;../../../libraries/no-OS/drivers/api/no_os_eeprom.c;../../../libraries/no-OS/drivers/api/no_os_irq.c;

[Others]
Define=_USE_STD_INT_TYPES;TINYIIOD_VERSION_MAJOR;TINYIIOD_VERSION_MINOR;TINYIIOD_VERSION_GIT;IIOD_BUFFER_SIZE;IIO_IGNORE_BUFF_OVERRUN_ERR;USE_PHY_COM_PORT;
Define=_USE_STD_INT_TYPES;TINYIIOD_VERSION_MAJOR;TINYIIOD_VERSION_MINOR;TINYIIOD_VERSION_GIT;IIOD_BUFFER_SIZE;IIO_IGNORE_BUFF_OVERRUN_ERR;USE_PHY_COM_PORT;ACTIVE_PLATFORM:2
4 changes: 3 additions & 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,9 @@ 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();
MX_USART3_UART_Init();
}
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_ */