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.
13 lines
304 B
C
13 lines
304 B
C
/* Board Support Package */
|
|
#include "TM4C123GH6PM.h"
|
|
#include "bsp.h"
|
|
|
|
__attribute__((naked)) void assert_failed (char const *file, int line) {
|
|
/* TBD: damage control */
|
|
NVIC_SystemReset(); /* reset the system */
|
|
}
|
|
|
|
void SysTick_Handler(void) {
|
|
GPIOF_AHB->DATA_Bits[LED_BLUE] ^= LED_BLUE;
|
|
}
|