Init ();

Aller Anfang ist schwer ;)

Verwende mal den Code-Tag:

Code:
#include "asuro.h"

int main(void)
{
	Init ();
	while (1)
	{
		if (PollSwitch()>0)
		{
			StatusLED (RED);
		}
		else
		{
			StatusLED (GREEN);
		}
	}
	return(0);
}
Gruß

mic