pentabug/firmware/main.c

157 lines
2.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>
#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-07-26 01:34:49 +02:00
uint16_t sw_v = 0;
uint16_t darkness = 0;
uint16_t darkval = 0;
uint16_t last_darkval = 0;
static void init_sampletimer(void)
{
/*
* Timer 0
*/
/* set timer0 to CTC & prescaler 64 → 125kHz increment */
TCCR0A = (1 << WGM01);
TCCR0B = (1 << CS00) | (1 << CS01);
OCR0A = 6; /* TOP */
TCNT0 = 0;
/*enable interrupt*/
TIMSK0 |= (1<<OCIE0A);
}
static inline void init_pwm(void)
2012-07-17 01:05:27 +02:00
{
/* set PB2 as output (buzzer pwm port):*/
DDRB |= (1 << PORTB2);
2012-08-11 21:08:50 +02:00
/* analog value preselection :*/
OCR1B = 0x007F;
/* Top value. Timer overflows here. Thus we have a resulting 8bit pwm */
ICR1 = 0x00FF;
/* only b-chan , fastpwm (mode 14), no prescale */
TCCR1A = (1 << COM1B1) | (1 << WGM11);
TCCR1B = (1 << WGM13 ) | (1 << WGM12) | (1 << CS10);
return;
}
2012-07-17 01:05:27 +02:00
2012-08-06 00:16:17 +02:00
2012-10-01 04:32:00 +02:00
void click(void){
2012-09-06 23:09:20 +02:00
buzzr_up();
_delay_ms(1);
buzzr_inv();
_delay_ms(1);
buzzr_off();
};
void waitr(int min, int max){
int waitms = (rand() % (max-min)) + min;
for(int i=0; i <= waitms; i++){
_delay_ms(1);
};
return;
2012-09-06 23:09:20 +02:00
};
2012-10-01 04:32:00 +02:00
void ledr(void){
2012-09-06 23:09:20 +02:00
int i = (rand() % 3);
switch(i) {
case 0 : led_on(LED_L); break;
case 1 : led_on(LED_R); break;
default : led_on(LED_L|LED_R);
};
_delay_ms(10);
led_off(LED_L|LED_R);
}
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-09-02 23:49:57 +02:00
//USART0_Init();
// init_motor();
2012-09-02 23:49:57 +02:00
//init_pwm();
//init_sampletimer();
/* syntesizer initialisation */
2012-09-02 23:49:57 +02:00
//synth_init();
/* here the show begins:*/
2012-09-02 23:49:57 +02:00
//sei();
2012-09-06 23:09:20 +02:00
//set_motor(MOTOR_ON);
2012-08-07 20:08:57 +02:00
for(;;) /* ever */ {
2012-09-06 23:09:20 +02:00
//do something
waitr(50,5000);
click();
ledr();
2012-08-07 20:08:57 +02:00
2012-09-02 23:49:57 +02:00
//synth_poll();
//USART0_put_uint16(0xA09F);
//USART0_crlf();
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
2012-08-11 21:08:50 +02:00
ISR(TIMER2_COMPA_vect)
{
darkval++;
switch(sw_v){
case 0 : // Set PC0 to 1 and PC1 to 0 - charge LED
DDRC = 0b00000011;
PORTC = 0b00000010;
darkness = 0;
sw_v++;
break;
case 10 : // set PC0 to 0 and PC1 as input
DDRC = 0b00000001;
PORTC = 0b00000000;
sw_v++;
break;
case 5000 : sw_v = 0;
//darkval = darkness;
//darkval = 1234;
break;
default : //measure if PC1 falls to LOW
if ((darkness==0) && ((PINC && 0b00000010)==0)){
darkness = sw_v;
};
sw_v++;
}; //end switch
//PORTC ^= 0b00001111; //toggle C0, C1, C2,C3
//PORTC = 0;
2012-08-11 21:08:50 +02:00
}