mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Added semi-colon to esp_event_loop_create(...)
Title sums it up.
This commit is contained in:
parent
f5b82c5b1f
commit
92f2d79521
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user