Skip to content

Commit 359211e

Browse files
committed
Change 'seconds' to 'secs' to fix compilation
1 parent 9b1281e commit 359211e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/Examples/examples/Example8_millis/Example8_millis.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ void setup() {
1717

1818
void loop()
1919
{
20-
Serial.printf("Sec: %d, millis: %d, micros: %d, systicks: 0x%08X, sysoverflows: 0x%08X\n", seconds(), millis(), micros(), systicks(), sysoverflows());
20+
Serial.printf("Sec: %d, millis: %d, micros: %d, systicks: 0x%08X, sysoverflows: 0x%08X\n", secs(), millis(), micros(), systicks(), sysoverflows());
2121
delay(1111); //Arbitrary delay
2222
}

0 commit comments

Comments
 (0)