Added semi-colon to esp_event_loop_create(...)

Title sums it up.
This commit is contained in:
Rusty Eddy 2020-02-04 07:38:44 -08:00 committed by Renz Bagaporo
parent 42891432c5
commit 9c0cf3c28a

View file

@ -54,7 +54,7 @@ In code, the flow above may look like as follows:
esp_event_loop_handle_t loop_handle;
esp_event_loop_create(&loop_args, &loop_handle)
esp_event_loop_create(&loop_args, &loop_handle);
// 3. Register event handler defined in (1). MY_EVENT_BASE and MY_EVENT_ID specifies a hypothetical
// event that handler run_on_event should execute on when it gets posted to the loop.