瀏覽代碼

Merge pull request #31 from KurtE/CS_PIN45

T3.5/6 Pin 45 is valid CS
main
Paul Stoffregen 7 年之前
父節點
當前提交
7e628829f1
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      SPI.h

+ 2
- 2
SPI.h 查看文件

@@ -520,10 +520,10 @@ public:
inTransactionFlag = 1;
#endif
if (port().CTAR0 != settings.ctar) {
port().MCR = SPI_MCR_MDIS | SPI_MCR_HALT | SPI_MCR_PCSIS(0x1F);
port().MCR = SPI_MCR_MDIS | SPI_MCR_HALT | SPI_MCR_PCSIS(0x3F);
port().CTAR0 = settings.ctar;
port().CTAR1 = settings.ctar| SPI_CTAR_FMSZ(8);
port().MCR = SPI_MCR_MSTR | SPI_MCR_PCSIS(0x1F);
port().MCR = SPI_MCR_MSTR | SPI_MCR_PCSIS(0x3F);
}
}


Loading…
取消
儲存