From 72253ed9328b913a26024d023776c197508f5f72 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Fri, 17 Jul 2015 16:11:44 +0200 Subject: [PATCH] Revert "simulator.h: provide a minimalistic SPI fake." After a number of simulator enhancements, it's no longer necessary to keep SPI support entirely away from it. --- simulator.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/simulator.h b/simulator.h index fbb446c..7cd03fb 100644 --- a/simulator.h +++ b/simulator.h @@ -177,16 +177,6 @@ uint16_t sim_tick_counter(void); uint64_t sim_runtime_ns(void); ///< Simulated run-time in nanoseconds void sim_time_warp(void); ///< skip ahead to next timer interrupt, when time_scale==0 -/** SPI subsystem. - - So far there isn't really one. Disable SD and fake the remaining - neccessary bits. -*/ -#undef SD_CARD_SELECT_PIN -#undef SD -#define loop_until_bit_is_set(SPSR, SPIF) -uint8_t SPCR, SPDR, SPSR; - #define DIO0_PIN "proof of life" #endif /* _SIMULATOR_H */