Skip to content

Commit

Permalink
Update BF-018ARev3.ino
Browse files Browse the repository at this point in the history
%d to %ld for long int
  • Loading branch information
uehara00 committed Mar 20, 2024
1 parent 4ddca41 commit 149168c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BF-018ARev3/BF-018ARev3.ino
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ void TcoInit()

// for the first sample of statistics
clock_gettime(CLOCK_REALTIME, &ts);
Serial.printf("ts.tv_nsec = %d\n", ts.tv_nsec);
Serial.printf("ts.tv_nsec = %ld\n", ts.tv_nsec);

// start Ticker for TCO
tk.attach_ms(ticker_interval_ms, TcoGen);
Expand Down

0 comments on commit 149168c

Please sign in to comment.