Skip to content

Commit

Permalink
going to test png latency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Aug 9, 2024
1 parent ceda663 commit ad92b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/senspot/device-platform-ping.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ double GetTime()
double ts;

gettimeofday(&tm,NULL);
ts = (double)(tm.tv_sec * 1000.0) + (((double)tv_usec)/1000.0);
ts = (double)(tm.tv_sec * 1000.0) + (((double)tm.tv_usec)/1000.0);
return(ts);
}

Expand Down

0 comments on commit ad92b0a

Please sign in to comment.