Skip to content

Commit 721059f

Browse files
committed
v1.5: prepared for tag
1 parent e11124e commit 721059f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

examples/LibTst/LibTst.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
Lib Test
3-
3+
44
LIFO / FIFO implementations can be tested by changing IMPLEMENTATION
55
66
This example code is in the public domain.
77
88
created 22 March 2017
9-
modified 14 March 2018
9+
modified 22 March 2018
1010
by SMFSW
1111
*/
1212

@@ -60,7 +60,7 @@ void loop() {
6060
Serial.print("Full?: ");
6161
Serial.print(q.isFull());
6262
Serial.print(" Nb left: ");
63-
Serial.println(q.nbRecs());
63+
Serial.println(q.getCount());
6464
for (i = 0 ; i < NB_PULL+1 ; i++)
6565
{
6666
Rec rec = {0xffff,0xffff};
@@ -74,7 +74,7 @@ void loop() {
7474
Serial.print("Empty?: ");
7575
Serial.print(q.isEmpty());
7676
Serial.print(" Nb left: ");
77-
Serial.println(q.nbRecs());
77+
Serial.println(q.getCount());
7878

7979
while(1);
8080
}

0 commit comments

Comments
 (0)