summaryrefslogtreecommitdiff
path: root/src/main.cc
blob: 44a0c958ab9ae7e12b2ee81fccffb43b5a2b87b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright 2023 Birte Kristina Friesel
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */
#include <avr/io.h>
#include <stdlib.h>

#include "system.h"

int main (void)
{
	blinkencat.initialize();

	while (1) {
		blinkencat.loop();
	}

	return 0;
}