You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for other MAX32XXX parts except MAX32670 in
no-OS/drivers/platform/maxim/max32670/maxim_uart.h file. This enum has been defined as, enum max_uart_flow_ctrl {
MAX_UART_FLOW_DIS,
MAX_UART_FLOW_EN
};
for MAX32670.
So, developer needs to configure the application implementation according to the part number. It might be better to have a generic naming for this enum. If we apply this change, we should also update the example projects using uart for MAX32670.
The text was updated successfully, but these errors were encountered:
thanks for reporting, i agree, they need to have the same name ! i would use the one with MAX_ prefix to reduce the chances of namespace conflicts, would you like to create a pull request ?
Uart flow control enumeration is defined as
enum max_uart_flow_ctrl {
UART_FLOW_DIS,
UART_FLOW_EN
};
for other MAX32XXX parts except MAX32670 in
no-OS/drivers/platform/maxim/max32670/maxim_uart.h file. This enum has been defined as,
enum max_uart_flow_ctrl {
MAX_UART_FLOW_DIS,
MAX_UART_FLOW_EN
};
for MAX32670.
So, developer needs to configure the application implementation according to the part number. It might be better to have a generic naming for this enum. If we apply this change, we should also update the example projects using uart for MAX32670.
The text was updated successfully, but these errors were encountered: