浏览代码

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) {

正在加载...
取消
保存