Commit e01e0cfd authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

add "Do nothing" app

parent 9fa30bd1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
timer_cycles = 0
timer_s = 0
loop = 0
+18 −0
Original line number Diff line number Diff line
#include "arch.h"
#include "driver/gpio.h"
#include "driver/stdout.h"
#include "driver/uptime.h"

int main(void)
{
	arch.setup();
	gpio.setup();
	kout.setup();

	kout << "Hello, World!" << endl;
	kout << "Naptime." << endl;

	arch.idle();

	return 0;
}