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