driv3l

About

Username
driv3l
Joined
Visits
2
Last Active
Roles
Member

Comments

  • Btw, This was on 0.92
  • Sorry... was looking at the wrong motherboard. SDSS was already 4 in pins.h, but was being overridden by ui.h. I commented out the settings in ui.h and changed the delay loop in SDFat.cpp and now the SD Card is initializing properly. I will do a tes…
  • on 0.91, this is set correctly in pins.h i.e. SDSS is 4 which sets the SPI_PIN to 87 and the SPI_CHAN to 1. This is why it works in 0.91 when I fix the init delay. On 0.92, the SDSS value in pins.h is 53 which seems to set it to use a SW SPI. Is thi…
  • Are you using the SD slot on the RADDS board itself, or the SD slot on the LCD display? The problem I am having is with the slot on the RADDS board. I did not hook up the SD Slot on the LCD yet (waiting for more cables / molex plugs). Also, I don't …
  • I managed to trace the problem to 2 locations. I first discovered that you had changed the following function in HAL.h: static inline void delayMicroseconds(unsigned int delayUs); {     microsecondsWait(delayUs);} This had changed from an earlier ve…