We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc8b43f + bc042c0 commit 28e9a12Copy full SHA for 28e9a12
cores/nRF5/WInterrupts.c
@@ -144,6 +144,10 @@ void detachInterrupt(uint32_t pin)
144
145
void GPIOTE_IRQHandler()
146
{
147
+#if CFG_DEBUG >= 3
148
+ SEGGER_SYSVIEW_RecordEnterISR();
149
+#endif
150
+
151
uint32_t event = offsetof(NRF_GPIOTE_Type, EVENTS_IN[0]);
152
153
for (int ch = 0; ch < NUMBER_OF_GPIO_TE; ch++) {
@@ -166,4 +170,8 @@ void GPIOTE_IRQHandler()
166
170
167
171
event = (uint32_t)((uint32_t)event + 4);
168
172
}
173
174
175
+ SEGGER_SYSVIEW_RecordExitISR();
176
169
177
0 commit comments