ソースを参照

Keep SPI active on LPC176x (#19932)

Victor Oliveira 4年前
コミット
838220e4b3
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更3行の追加2行の削除
  1. 3
    2
      Marlin/src/HAL/LPC1768/HAL_SPI.cpp

+ 3
- 2
Marlin/src/HAL/LPC1768/HAL_SPI.cpp ファイルの表示

@@ -263,8 +263,9 @@ uint16_t SPIClass::transfer16(const uint16_t data) {
263 263
 }
264 264
 
265 265
 void SPIClass::end() {
266
-  // SSP_Cmd(_currentSetting->spi_d, DISABLE);  // stop device or SSP_DeInit?
267
-  SSP_DeInit(_currentSetting->spi_d);
266
+  // Neither is needed for Marlin
267
+  //SSP_Cmd(_currentSetting->spi_d, DISABLE);
268
+  //SSP_DeInit(_currentSetting->spi_d);
268 269
 }
269 270
 
270 271
 void SPIClass::send(uint8_t data) {

読み込み中…
キャンセル
保存