Target: send spi data irregularly

This commit is contained in:
Stefan Beller 2012-05-21 18:36:33 +02:00
parent a82a9c16ad
commit 7a64c8d0d5
1 changed files with 6 additions and 6 deletions

View File

@ -368,14 +368,14 @@ int main(void) {
#ifdef TEST_TARGET_AS_SPI_MASTER
DDRB = (1 << PB2 | 1 << PB3 | 1 << PB5);
PORTB &= (1 << PB2);
SPCR = (1 << SPE | 1 << MSTR | 1 << SPR1 | 1 << SPR0);
SPCR = (1 << SPE | 1 << MSTR);
sei();
for (;;) {
if (--blink_counter == 0) {
toggleLedRed();
blink_counter = (unsigned int)(1UL << 19);
SPDR = i++;
}
clockWait(30); // wait 9,6 ms
toggleLedRed();
SPDR = j++;
clockWait(1); // wait 320 us
SPDR = j++;
}
#endif