Browse Source

T4 - Fix SPI.setCS

It was using the wrong field in the hardware table to change the pin mode for the CS pin. (was using SCK pins value)
main
Kurt Eckhardt 4 years ago
parent
commit
ddeac2b666
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      SPI.cpp

+ 2
- 1
SPI.cpp View File

{ {
for (unsigned int i = 0; i < sizeof(hardware().cs_pin); i++) { for (unsigned int i = 0; i < sizeof(hardware().cs_pin); i++) {
if (pin == hardware().cs_pin[i]) { if (pin == hardware().cs_pin[i]) {
*(portConfigRegister(pin)) = hardware().sck_mux[i];
*(portConfigRegister(pin)) = hardware().cs_mux[i];
hardware().pcs0_select_input_register = hardware().pcs0_select_val[i];
return 1; return 1;
} }
} }

Loading…
Cancel
Save