Skip to content

Commit

Permalink
Merge pull request #139 from vearne/fix/example
Browse files Browse the repository at this point in the history
  • Loading branch information
feilipu authored Nov 7, 2024
2 parents 2dd0a14 + b2d862b commit 08ca949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ArrayQueue/ArrayQueue.ino
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void setup() {
* https://www.freertos.org/a00116.html
*/
arrayQueue=xQueueCreate(10, //Queue length
sizeof(int)); //Queue item size
sizeof(pinReadArray)); //Queue item size
if(arrayQueue!=NULL){

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

0 comments on commit 08ca949

Please sign in to comment.