We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1390ac0 commit ba6c824Copy full SHA for ba6c824
cores/arduino/hooks.c
@@ -30,32 +30,3 @@ static void __empty()
30
// Empty
31
}
32
void yield(void) __attribute__((weak, alias("__empty")));
33
-
34
-/**
35
- * SysTick hook
36
- *
37
- * This function is called from SysTick handler, before the default
38
- * handler provided by Arduino.
39
- */
40
-static int __false()
41
-{
42
- // Return false
43
- return 0;
44
-}
45
-int sysTickHook(void) __attribute__((weak, alias("__false")));
46
47
48
- * SVC hook
49
- * PendSV hook
50
51
- * These functions are called from SVC handler, and PensSV handler.
52
- * Default action is halting.
53
54
-static void __halt()
55
56
- // Halts
57
- while (1)
58
- ;
59
60
-void svcHook(void) __attribute__((weak, alias("__halt")));
61
-void pendSVHook(void) __attribute__((weak, alias("__halt")));
0 commit comments