more sensible default behaviour in default branch

This commit is contained in:
Stefan Rupp 2014-05-28 23:02:09 +02:00
parent 67f182fe2a
commit 363a294515

View File

@ -4,7 +4,8 @@
void rgbyteclock(void)
{
uint8_t gain = 0;
uint8_t gain = 0x2f;
led_set_gain(gain);
while (1) {
led_set(0, 4000, 0, 0);
@ -14,13 +15,17 @@ void rgbyteclock(void)
led_set(1, 0, 10000, 0);
led_flush();
timer_wait(500);
led_set_gain(gain);
gain += 5;
if (gain > 0x3f) {
gain = 0;
}
led_set(0, 0, 0, 0);
led_flush();
timer_wait(500);
led_set(1, 0, 0, 0);
led_flush();
timer_wait(500);
PORTC ^= (1<<PC5); // Test LED
}
}