Browse Source

Default abort() function - needed for Pozyx library

main
PaulStoffregen 7 years ago
parent
commit
6db7bb2073
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      teensy3/mk20dx128.c

+ 6
- 0
teensy3/mk20dx128.c View File

@@ -1221,6 +1221,12 @@ void __cxa_guard_release(char *g)
*g = 1;
}

__attribute__((weak))
void abort(void)
{
while (1) ;
}

#pragma GCC diagnostic pop

int nvic_execution_priority(void)

Loading…
Cancel
Save