summaryrefslogtreecommitdiff
path: root/trafficlight.h
blob: 52ba584281677da9be084598efa1b30d779d8351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdint.h>
#include <stdbool.h>
#include "color.h"
#include "dio.h"

#define TIVA_CLK 16e6
#define GREEN_PERIOD TIVA_CLK * 5
#define YELLOW_PERIOD TIVA_CLK * 2
#define RED_PERIOD TIVA_CLK * 7

void PortInit(uint32_t port, uint32_t clk);
void TimerInit(uint32_t timer, void(*timer_handler)(), uint32_t clk, uint32_t delay);