diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-10 13:34:22 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-10 13:34:22 +0200 |
commit | 8a53d06efd517908f88f697a250059200e882c06 (patch) | |
tree | 7a259dfa35d77e4b27ee78c0ccd5145e07f05371 /main/init.h | |
parent | 9263beca5c84f5f136c913439fe0557f1469e120 (diff) |
fix TCP socket server
Diffstat (limited to 'main/init.h')
-rw-r--r-- | main/init.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/init.h b/main/init.h index 97b2e20..de9023c 100644 --- a/main/init.h +++ b/main/init.h @@ -4,7 +4,7 @@ #include <event_groups.h> /** - * @brief init function complete event group handle + * \brief init function complete event group handle * * This is required to make sure the main task waits until initialization is * complete. Due to the combination of FreeRTOS + lwIP, the initialization @@ -12,25 +12,25 @@ * cyw43_arch_init functions make the pico hang indefinitely when used while * the task scheduler is not running. * - * @note `init_complete` only utilizes LSB, so `uxBitsToWaitFor` should always + * \note `init_complete` only utilizes LSB, so `uxBitsToWaitFor` should always * be set to *1* */ extern EventGroupHandle_t init_complete; /** - * @brief initialize all peripherals on the pico + * \brief initialize all peripherals on the pico * * This function only synchronously initializes the standard input/output (used * for `printf` and `panic`), and queues all other types of initialization in * the `init` task using FreeRTOS. * - * @note Tasks dependent on the wifi being initialized should use the + * \note Tasks dependent on the wifi being initialized should use the * `init_complete` event group to wait for initialization to complete! */ void init(); /** - * @brief block task until all initialization is complete + * \brief block task until all initialization is complete * * utility function, see above comments */ |