pentabug/firmware/main.c

94 lines
1.5 KiB
C
Raw Normal View History

2012-07-17 01:05:27 +02:00
#include <inttypes.h>
#include <avr/io.h>
#include <avr/interrupt.h>
2012-10-01 21:39:25 +02:00
#define __DELAY_BACKWARD_COMPATIBLE__
2012-07-17 01:05:27 +02:00
#include <util/delay.h>
#include <stdlib.h>
#include "main.h"
2012-09-02 21:53:11 +02:00
#include "lib/synth.h"
#include "lib/usart.h"
2012-09-02 23:49:57 +02:00
#include "lib/bughal.h"
2012-10-01 21:39:25 +02:00
#include "lib/util.h"
2012-07-26 01:34:49 +02:00
void __attribute__((noreturn))
main(void)
{
/* hardware initialisation: */
2012-09-02 23:49:57 +02:00
init_leds();
2012-09-06 23:09:20 +02:00
init_buzzr();
2012-10-01 21:39:25 +02:00
init_switch();
USART0_Init();
init_motor();
/* software initialisation */
timer_init();
/* here the show begins:*/
2012-10-01 21:39:25 +02:00
sei();
2012-09-06 23:09:20 +02:00
//set_motor(MOTOR_ON);
2012-10-01 21:39:25 +02:00
timer_t t;
uint8_t ledmode =0;
uint16_t ct =0;
led_on(LED_R);
timer_set(&t, 100);
2012-08-07 20:08:57 +02:00
for(;;) /* ever */ {
2012-09-06 23:09:20 +02:00
//do something
2012-10-01 21:39:25 +02:00
//main polling loop;
if (timer_expired(&t)){
if (0==ledmode){
ledmode =1;
led_on(LED_L);
} else {
ledmode=0;
led_off(LED_L);
};
2012-10-01 22:11:28 +02:00
2012-10-01 21:39:25 +02:00
USART0_crlf();
2012-10-01 22:11:28 +02:00
if (0==ct%3){
if (0==ct%5){
//fizzbug
USART0_putc('f');
USART0_putc('i');
USART0_putc('z');
USART0_putc('z');
USART0_putc('b');
USART0_putc('u');
USART0_putc('g');
} else {
//fizz
USART0_putc('f');
USART0_putc('i');
USART0_putc('z');
USART0_putc('z');
}
} else {
if (0==ct%5){
//bug
USART0_putc('b');
USART0_putc('u');
USART0_putc('g');
} else {
USART0_put_uint16(ct);
};
};
timer_set(&t, 50);
2012-10-01 21:39:25 +02:00
ct++;
}; //end if timer expired
//USART0_put_uint16(0xA09F);
//USART0_crlf();
2012-10-01 21:39:25 +02:00
2012-08-14 22:53:25 +02:00
}
2012-07-18 15:55:20 +02:00
2012-08-14 22:53:25 +02:00
/* never return 0; */
2012-07-18 15:55:20 +02:00
}
2012-08-05 22:13:43 +02:00