ece312_finalproject/lcd_disp/main.h
David Lenfesty 0bff1ffcac Importing code. I swear there are more commits :)
Imported code from larger repo for code. Has some stuff I didn't want
here.
2019-12-05 17:24:03 -07:00

23 lines
363 B
C

#ifndef MAIN_H_
#define MAIN_H_
#include <avr/io.h>
#include <avr/interrupt.h>
#include <util/delay.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include "lcd.h"
#include "fifo.h"
#include "comms.h"
#include "periph.h"
#define SONG_NAME_LEN 16
/* ---- Globally available flags ---- */
extern bool update_display;
#endif