diff --git a/README.md b/README.md index 38217227d5..737ed1b962 100644 --- a/README.md +++ b/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 + +![alt text](docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png "unseen title text") + +**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 diff --git a/config/mbed_lib.json b/config/mbed_lib.json index 36148f73f5..ce14791406 100644 --- a/config/mbed_lib.json +++ b/config/mbed_lib.json @@ -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", diff --git a/docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png b/docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png new file mode 100644 index 0000000000..9757ddfa8e Binary files /dev/null and b/docs/pics/NUCLEO_F429ZI_wiring_with_ci_test_shield.png differ