Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1116 → Rev 1117

/NGVideo5_8/tags/v1.00/ngvideo.c
278,11 → 278,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)