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.

12 lines
290 B
C

/* Board Support Package */
#include "TM4C123GH6PM.h"
#include "bsp.h"
__stackless 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_RED] ^= LED_RED;
}