Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1117 → Rev 1116

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