@brief Get maximum number of tasks seen on queue at any one time * @retval unsigned * @note If return value is higher than maximum task queue TASK_QUEUE_LENGTH then * the queue has overflowed at some point and tasks have been left un-executed. */
| 230 | * the queue has overflowed at some point and tasks have been left un-executed. |
| 231 | */ |
| 232 | static unsigned getMaxTaskCount() |
| 233 | { |
| 234 | #ifdef ENABLE_TASK_COUNT |
| 235 | return maxTaskCount; |
| 236 | #else |
| 237 | return 255; |
| 238 | #endif |
| 239 | } |
| 240 | |
| 241 | private: |
| 242 | static void taskHandler(os_event_t* event); |
no outgoing calls
no test coverage detected