Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kanndil committed Jan 12, 2025
1 parent 01fd16f commit c6f9630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fw/EF_UART.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ EF_DRIVER_STATUS EF_UART_setIM(EF_UART_TYPE_PTR uart, uint32_t mask){
status = EF_DRIVER_ERROR_PARAMETER; // Return EF_DRIVER_ERROR_PARAMETER if mask is out of range

} else {
uart->IM |= mask;
uart->IM = mask;

}
return status;
Expand Down

0 comments on commit c6f9630

Please sign in to comment.