Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Correction - QueueHandle_t defination in PCNT example. #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/peripherals/pcnt/main/pcnt_example_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#define PCNT_INPUT_CTRL_IO 5 // Control GPIO HIGH=count up, LOW=count down
#define LEDC_OUTPUT_IO 18 // Output GPIO of a sample 1 Hz pulse generator

xQueueHandle pcnt_evt_queue; // A queue to handle pulse counter events
QueueHandle_t pcnt_evt_queue; // A queue to handle pulse counter events

/* A sample structure to pass events from the PCNT
* interrupt handler to the main program.
Expand Down