Es ging ja nur um eine möglicherweise falsch eingelötete StatusLED. Alternative wäre:

Code:
#include "asuro.h"

int main(void)
{
	Init();
	while(1)
	{
		if (PollSwitch()>0) BackLED(ON, OFF); // linke BackLED an
		else BackLED(OFF, ON); // rechte BackLED an
	}
	return(0);
}