Skip to content
Snippets Groups Projects
Commit 73f44206 authored by Clément Foucher's avatar Clément Foucher
Browse files

Add a way to suspend asynchronous tasks.

parent f9eb3e5c
No related branches found
No related tags found
No related merge requests found
...@@ -75,3 +75,16 @@ void Scheduling::startAsynchronousTask(uint8_t task_number) ...@@ -75,3 +75,16 @@ void Scheduling::startAsynchronousTask(uint8_t task_number)
} }
#endif // CONFIG_OWNTECH_SCHEDULING_ENABLE_ASYNCHRONOUS_TASKS #endif // CONFIG_OWNTECH_SCHEDULING_ENABLE_ASYNCHRONOUS_TASKS
// Suspend asynchronous tasks
void Scheduling::suspendCurrentTaskMs(uint32_t duration_ms)
{
k_sleep(K_MSEC(duration_ms));
}
void Scheduling::suspendCurrentTaskUs(uint32_t duration_us)
{
k_sleep(K_USEC(duration_us));
}
...@@ -91,6 +91,27 @@ public: ...@@ -91,6 +91,27 @@ public:
#endif // CONFIG_OWNTECH_SCHEDULING_ENABLE_ASYNCHRONOUS_TASKS #endif // CONFIG_OWNTECH_SCHEDULING_ENABLE_ASYNCHRONOUS_TASKS
/**
* @brief This function allows to suspend an asynchronous
* task for a specified duration expressed in milliseconds.
* For example, you can call this function at the end of an
* asynchronous task main function, when there is no need
* for the task to run permanently.
*
* DO NOT use this function in a synchronous task!
*/
void suspendCurrentTaskMs(uint32_t duration_ms);
/**
* @brief This function allows to suspend an asynchronous
* task for a specified duration expressed in microseconds.
* For example, you can call this function at the end of an
* asynchronous task main function, when there is no need
* for the task to run permanently.
*
* DO NOT use this function in a synchronous task!
*/
void suspendCurrentTaskUs(uint32_t duration_us);
private: private:
static const int DEFAULT_PRIORITY; static const int DEFAULT_PRIORITY;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment