Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Fix device manager
Browse files Browse the repository at this point in the history
Convert interval from seconds to miliesconds.
  • Loading branch information
RoEdAl committed Jun 11, 2024
1 parent 600bd69 commit e0302ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chan_quectel.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ static void dev_manager_threadproc_state(struct public_state* const state)

auto int ev_wait()
{
int t = manager_interval;
int t = manager_interval * 1000;
return at_wait(fd, &t);
}

Expand Down

0 comments on commit e0302ba

Please sign in to comment.