Procházet zdrojové kódy

Merge pull request #8364 from Bob-the-Kuhn/temp-sd-card

2.0.x - LPC1768 - update file to new pin numbering system
Bob-the-Kuhn před 7 roky
rodič
revize
a886e98967
No account linked to committer's email address
1 změnil soubory, kde provedl 6 přidání a 6 odebrání
  1. 6
    6
      Marlin/src/HAL/HAL_LPC1768/HAL_spi.cpp

+ 6
- 6
Marlin/src/HAL/HAL_LPC1768/HAL_spi.cpp Zobrazit soubor

@@ -205,18 +205,18 @@
205 205
     PinCfg.Funcnum = 2;
206 206
     PinCfg.OpenDrain = 0;
207 207
     PinCfg.Pinmode = 0;
208
-    PinCfg.Pinnum = pin_map[SCK_PIN].pin;
209
-    PinCfg.Portnum = pin_map[SCK_PIN].port;
208
+  PinCfg.Pinnum = LPC1768_PIN_PIN(SCK_PIN);
209
+PinCfg.Portnum = LPC1768_PIN_PORT(SCK_PIN);
210 210
     PINSEL_ConfigPin(&PinCfg);
211 211
     SET_OUTPUT(SCK_PIN);
212 212
 
213
-    PinCfg.Pinnum = pin_map[MISO_PIN].pin;
214
-    PinCfg.Portnum = pin_map[MISO_PIN].port;
213
+PinCfg.Pinnum = LPC1768_PIN_PIN(MISO_PIN);
214
+PinCfg.Portnum = LPC1768_PIN_PORT(MISO_PIN);
215 215
     PINSEL_ConfigPin(&PinCfg);
216 216
     SET_INPUT(MISO_PIN);
217 217
 
218
-    PinCfg.Pinnum = pin_map[MOSI_PIN].pin;
219
-    PinCfg.Portnum = pin_map[MOSI_PIN].port;
218
+    PinCfg.Pinnum = LPC1768_PIN_PIN(MOSI_PIN);
219
+    PinCfg.Portnum = LPC1768_PIN_PORT(MOSI_PIN);
220 220
     PINSEL_ConfigPin(&PinCfg);
221 221
     SET_OUTPUT(MOSI_PIN);
222 222
   }

Loading…
Zrušit
Uložit