some cleanups
This commit is contained in:
parent
f224f3a2ba
commit
9039623099
|
@ -6,9 +6,8 @@
|
|||
|
||||
#include "main.h"
|
||||
|
||||
|
||||
void init_pwm(void){
|
||||
|
||||
static inline void init_pwm(void)
|
||||
{
|
||||
// TCCR1A xx01xx10
|
||||
TCCR1A &= ~0b00100001;
|
||||
TCCR1A |= 0b00000010;
|
||||
|
@ -19,42 +18,34 @@ void init_pwm(void){
|
|||
|
||||
//PB1 set to output:
|
||||
DDRB |= 0b10;
|
||||
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
int main (void)
|
||||
static void init_leds(void)
|
||||
{
|
||||
|
||||
//enable LED channels as output
|
||||
DDRC |= (1 << PORTC0) | (1 << PORTC2) | (1 << PORTC3) | (1 << PORTC1);
|
||||
PORTC = 1; //one led is on...
|
||||
return;
|
||||
}
|
||||
|
||||
//BUZZER IS OUT:
|
||||
DDRD |= (1<<PORTD6);
|
||||
inline void setleds(uint8_t state)
|
||||
{
|
||||
//set leds according to
|
||||
PORTC |= (state | 0 b00001111);
|
||||
PORTC &= ~(state | 0 b11110000);
|
||||
return;
|
||||
}
|
||||
|
||||
//vibration motor
|
||||
static void init_motor(void)
|
||||
{
|
||||
//vibration motor on B1:
|
||||
DDRB |= (1 << PORTB1);
|
||||
|
||||
//reduce power
|
||||
PRR |= (1<<PRTWI)|(1<<PRTIM2)|(1<<PRSPI)|(1<<PRUSART0);
|
||||
|
||||
/*PORTB |= (1 << PORTB1);*/
|
||||
PORTD = 0;
|
||||
|
||||
init_pwm();
|
||||
|
||||
|
||||
/*while(1)*/
|
||||
/*{*/
|
||||
/*_delay_ms(500);*/
|
||||
/*PORTC ^= (1<<PORTC0)|(1<<PORTC2);*/
|
||||
/*PORTB ^= (1<<PORTB1);*/
|
||||
/*PORTD ^= (1<< PORTD6);*/
|
||||
|
||||
/*}*/
|
||||
}
|
||||
|
||||
static void stupid_pwmtest(void)
|
||||
{
|
||||
for (;;) {
|
||||
OCR1BH = 0;
|
||||
OCR1BL = 0;
|
||||
|
@ -66,3 +57,15 @@ int main (void)
|
|||
|
||||
}
|
||||
|
||||
int main(void)
|
||||
{
|
||||
|
||||
init_leds();
|
||||
init_motor();
|
||||
init_pwm();
|
||||
|
||||
stupid_pwmtest();
|
||||
|
||||
//never get here
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user