blob: f8262d0ae1611667f415f065d45d32e731608e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
/**
* \ingroup main_tasks
* \{
*/
/**
* \brief Status LED blink task
*
* This task is started after initialization is complete, and blinks the
* on-board LED to indicate the Pico has completed initialization successfully.
*/
void blink_task();
/// \}
|