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.
1 parent 4e3c0a0 commit 8b32f45Copy full SHA for 8b32f45
2 files changed
src/TaskManagerIO.h
@@ -40,6 +40,11 @@ uint32_t micros();
40
#define delayMicroseconds(x) wait_us(x)
41
#endif // IOA_USE_MBED
42
43
+/**
44
+ * the definition of an interrupt handler function, to be called back when an interrupt occurs.
45
+ */
46
+typedef void (*RawIntHandler)();
47
+
48
/**
49
* Definition of a function to be called back when an interrupt is detected, marshalled by task manager into a task.
50
* The pin that caused the interrupt is passed in the parameter on a best efforts basis.
src/TaskPlatformDeps.h
@@ -371,6 +371,4 @@ namespace tm_internal {
371
#endif // _has_include
372
#endif // GCC>=5 and !TM_ALLOW_CAPTURED_LAMBDA
373
374
-typedef void (*RawIntHandler)();
375
-
376
#endif //TASKMANGERIO_PLATFORMDETERMINATION_H
0 commit comments