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.

28 lines
774 B
C

#include "TM4C123GH6PM.h"
#include "bsp.h"
#include <intrinsics.h> // for __enable_interrupt()
int main(void) {
SYSCTL->GPIOHBCTL |= (1U << 5); /* enable AHB for GPIOF */
SYSCTL->RCGCGPIO |= (1U << 5); /* enable Run mode for GPIOF */
GPIOF_AHB->DIR |= (LED_RED | LED_BLUE | LED_GREEN);
GPIOF_AHB->DEN |= (LED_RED | LED_BLUE | LED_GREEN);
/* turn all LEDs off */
GPIOF_AHB->DATA_Bits[LED_RED | LED_BLUE | LED_GREEN] = 0U;
SysTick->LOAD = SYS_CLOCK_HZ/2U - 1U;
SysTick->VAL = 0U;
SysTick->CTRL = (1U << 2) | (1U << 1) | 1U;
SysTick_Handler();
__enable_interrupt();
while (1) {
GPIOF_AHB->DATA_Bits[LED_GREEN] = LED_GREEN;
GPIOF_AHB->DATA_Bits[LED_GREEN] = 0U;
}
//return 0; // unreachable code
}