summaryrefslogtreecommitdiffstats
path: root/main.cpp
blob: b7db9bcf82b5442375678a2bb21dc534c5f39010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <device/gpio.hpp>

int main()
{
	setupOutputs();

	for (std::uint8_t i = 0;; ++i)
	{
		writeOutputs(i % 8);

		for (volatile std::uint16_t delay = 0; delay < 10000; ++delay);
	}
}