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.
86 lines
1.8 KiB
C
86 lines
1.8 KiB
C
#include "TM4C123GH6PM.h" // CMSIS-compatible interface
|
|
#include "delay.h"
|
|
|
|
#include <stdint.h> // C99 standard integers
|
|
|
|
#define LED_RED (1U << 1)
|
|
#define LED_BLUE (1U << 2)
|
|
#define LED_GREEN (1U << 3)
|
|
|
|
typedef struct /* __attribute__((packed)) */ {
|
|
uint8_t y;
|
|
uint16_t x;
|
|
} Point;
|
|
|
|
Point p1, p2;
|
|
|
|
typedef struct {
|
|
Point top_left;
|
|
Point bottom_right;
|
|
} Window;
|
|
|
|
typedef struct {
|
|
Point corners[3];
|
|
} Triangle;
|
|
|
|
Window w, w2;
|
|
Triangle t;
|
|
|
|
int main(void) {
|
|
Point *pp;
|
|
Window *wp;
|
|
|
|
p1.x = sizeof(Point);
|
|
p1.y = 0xAAU;
|
|
|
|
w.top_left.x = 1U;
|
|
w.bottom_right.y = 2U;
|
|
|
|
t.corners[0].x = 1U;
|
|
t.corners[2].y = 2U;
|
|
|
|
p2 = p1;
|
|
w2 = w;
|
|
|
|
pp = &p1;
|
|
wp = &w2;
|
|
|
|
(*pp).x = 1U;
|
|
|
|
(*wp).top_left = *pp;
|
|
|
|
pp->x = 1U;
|
|
wp->top_left = *pp;
|
|
|
|
SYSCTL->RCGCGPIO |= (1U << 5); /* enable AHB for GPIOF */
|
|
SYSCTL->GPIOHBCTL |= (1U << 5); /* enable clock for GPIOF */
|
|
|
|
/* configure LEDs (digital output) */
|
|
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;
|
|
|
|
GPIOF_AHB->DATA_Bits[LED_BLUE] = LED_BLUE;
|
|
while (1) {
|
|
GPIOF_AHB->DATA_Bits[LED_RED] = LED_RED;
|
|
delay(500000);
|
|
|
|
GPIOF_AHB->DATA_Bits[LED_RED] = 0;
|
|
|
|
delay(250000);
|
|
}
|
|
//return 0; // unreachable code
|
|
}
|
|
|
|
//............................................................................
|
|
// function needed by the library/startup code
|
|
_Noreturn void assert_failed(char const * const module, int const id);
|
|
_Noreturn void assert_failed(char const * const module, int const id) {
|
|
// TBD: damage control
|
|
(void)module; // avoid the "unused parameter" compiler warning
|
|
(void)id; // avoid the "unused parameter" compiler warning
|
|
NVIC_SystemReset();
|
|
}
|