Skip to content

Commit 08ca949

Browse files
authored
Merge pull request #139 from vearne/fix/example
2 parents 2dd0a14 + b2d862b commit 08ca949

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/ArrayQueue/ArrayQueue.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void setup() {
3131
* https://www.freertos.org/a00116.html
3232
*/
3333
arrayQueue=xQueueCreate(10, //Queue length
34-
sizeof(int)); //Queue item size
34+
sizeof(pinReadArray)); //Queue item size
3535
if(arrayQueue!=NULL){
3636

3737
// Create task that consumes the queue if it was created.

0 commit comments

Comments
 (0)