You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
221 B
C
10 lines
221 B
C
|
5 years ago
|
/* Board Support Package */
|
||
|
|
#include "tm4c_cmsis.h"
|
||
|
|
|
||
|
|
__stackless void assert_failed (char const *file, int line) {
|
||
|
|
/* TBD: damage control */
|
||
|
|
NVIC_SystemReset(); /* reset the system */
|
||
|
|
}
|
||
|
|
|
||
|
|
void SysTick_Handler(void) {
|
||
|
|
}
|