mirror of https://github.com/ARMmbed/mbed-os.git
Add pin override for NUCLEO_F429ZI (#20)
This is needed as the regular configuration does not work with this board due pin conflict with Ethernet and SD-card.pull/7774/head
parent
be68bf8f58
commit
efc6bbc46e
11
README.md
11
README.md
|
@ -523,6 +523,17 @@ The above figure shows the K64F with the v1.0.0 CI test shield fitted. Note:
|
|||
- The pins D0/D1 (top right of CI test shield) are bent sideways so as not to insert into the header.
|
||||
- The SDCard is fully inserted into the slot and overhangs the PCB by ~1mm.
|
||||
|
||||
### Wiring instructions for target NUCLEO_F429ZI with CI Test Shield
|
||||
|
||||

|
||||
|
||||
**Figure 3. The figure shows how to connect the NUCLEO_F429ZI platform with the CI shield.**
|
||||
|
||||
The above figure shows how to connect the NUCLEO_F429ZI with the v1.0.0 CI test shield. Note:
|
||||
|
||||
- To get the SD Card to work with this platform the CI test shield cannot be connected directly to this board, instead follow the instructions above.
|
||||
- Any SD-card adapter will work as long as you connect all the relevant pins (MOSI, MISO, SCLK, CS, 3.3V and GND) as illustrated in figure 3.
|
||||
- The SDCard is fully inserted into the slot and overhangs the PCB by ~1mm.
|
||||
|
||||
# SDBlockDevice Example Application
|
||||
|
||||
|
|
|
@ -97,6 +97,12 @@
|
|||
"SPI_CLK": "p13",
|
||||
"SPI_CS": "p14"
|
||||
},
|
||||
"NUCLEO_F429ZI": {
|
||||
"SPI_MOSI": "PC_12",
|
||||
"SPI_MISO": "PC_11",
|
||||
"SPI_CLK": "PC_10",
|
||||
"SPI_CS": "PA_15"
|
||||
},
|
||||
"NUCLEO_L031K6": {
|
||||
"SPI_MOSI": "SPI_MOSI",
|
||||
"SPI_MISO": "SPI_MISO",
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 502 KiB |
Loading…
Reference in New Issue