File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -30,32 +30,3 @@ static void __empty()
3030 // Empty
3131}
3232void 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" )));
You can’t perform that action at this time.
0 commit comments