Skip to content

Commit

Permalink
frame transmission rate minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devcoons committed Nov 25, 2024
1 parent 450adf1 commit 0722da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib_iso15765.c
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ static n_rslt iso15765_process_out(iso15765_t* ih)

case N_PCI_T_CF:
/* if the minimun difference between transmissions is not reached then skip */
timeout = has_interval_passed(ih->clbs.get_ms(), ih->out.last_upd.n_cs, ih->config.stmin);
timeout = has_interval_passed(ih->clbs.get_ms(), ih->out.last_upd.n_cs, ih->out.stmin);
if (timeout == N_INV)
{
return N_OK;
Expand Down

0 comments on commit 0722da9

Please sign in to comment.