UART(E): FIFO backend Minor bugfix

Backend could generate unnecessary NOP messages, wasting
processing time. Fix it.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
Alberto Escolar Piedras 2024-01-10 17:07:09 +01:00
parent 8b0819f405
commit aa1f38d909
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ static void write_to_tx_fifo(struct ufifo_st_t *u_el, void *ptr, size_t size) {
static void tx_set_next_tx_timer(uint inst, struct ufifo_st_t *u_el, bs_time_t last_act) {
u_el->Tx_timer = BS_MAX(last_act, u_el->Tx_timer);
nsi_hws_find_next_event();
nhw_ufifo_update_timer();
}
static void tx_sync_line_params(uint inst, struct ufifo_st_t *u_el) {