ece312/lab_1/main.c

17 lines
133 B
C

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