Commit a7d538ddb31a6cc7f0511c4d4a15d1ff5e42871b
authorPhilip Withnall <philip@tecnocode.co.uk>
Sat, 1 Dec 2012 10:00:20 +0000 (10:00 +0000)
committerMichel Pollet <buserror@gmail.com>
Thu, 9 Jan 2014 08:57:32 +0000 (08:57 +0000)
The manual says the SPIF bit is cleared when accessing (i.e. reading _or_
writing) the SPDR register after an interrupt is raised. By clearing SPIF
on a write to SPDR, the following code starts to work:

   SPDR = 0xff; loop_until_bit_is_set (SPSR, SPIF);
   SPDR = 0x00; loop_until_bit_is_set (SPSR, SPIF);

(where the bytes are arbitrarily chosen). This didn’t work before as the
SPIF bit wasn’t cleared by the second write to SPDR, so the second loop
turned into a no-op. This caused the write timer for the first byte to be
overwritten by the write timer for the second. Consequently, the first byte
never got transmitted.

Signed-off-by: Michel Pollet <buserror@gmail.com>
simavr/sim/avr_spi.c

index ecac48da336c729cbdb921a6dbc73c3203644019..e97d8246c20b38150046e3ae5fe495ec180a4786 100644 (file)
@@ -51,7 +51,9 @@ static void avr_spi_write(struct avr_t * avr, avr_io_addr_t addr, uint8_t v, voi
        avr_spi_t * p = (avr_spi_t *)param;
 
        if (addr == p->r_spdr) {
-       //      printf("avr_spi_write = %02x\n", v);
+               /* Clear the SPIF bit. See ATmega164/324/644 manual, Section 18.5.2. */
+               avr_regbit_clear(avr, p->spi.raised);
+
                avr_core_watch_write(avr, addr, v);
                avr_cycle_timer_register_usec(avr, 100, avr_spi_raise, p); // should be speed dependent
        }