Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1069 → Rev 1088

/NGVideo5_8/tags/v1.10/ngvideo.c
288,11 → 288,9
 
void Beep(uint8_t time)
{
PINB |= (1<<BEEPER);
PINB &= ~(1<<BEEPER);
PORTB |= (1<<BEEPER);
_delay_ms(time);
PINB |= (1<<BEEPER);
PINB &= ~(1<<BEEPER);
PORTB &= ~(1<<BEEPER);
}
 
void Double_Beep(uint8_t time, uint8_t pause)