ece312/main.c
2019-09-03 10:36:07 -06:00

17 lines
134 B
C

#include <avr/io.h>
// Set up GPIO here
void pin_setup() {
}
int main() {
pin_setup();
while (1) {
}
}