We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9b171c commit 4c23372Copy full SHA for 4c23372
2 files changed
cores/nRF5/rtos.cpp
@@ -93,4 +93,8 @@ uint32_t nableRtos::getIsrStackHwm() {
93
return offset;
94
}
95
96
+TaskHandle_t nableRtos::getMainLoopTaskHandle() {
97
+ return ::getMainLoopTaskHandle();
98
+}
99
+
100
nableRtos RTOS;
cores/nRF5/rtos.h
@@ -37,6 +37,7 @@ class nableRtos {
37
uint32_t getTimerTaskHwm();
38
uint32_t getBleHostTaskHwm();
39
uint32_t getBleLLTaskHwm();
40
+ TaskHandle_t getMainLoopTaskHandle();
41
};
42
43
extern nableRtos RTOS;
0 commit comments