Skip to content

Commit

Permalink
Add pin override for NUCLEO_F429ZI (#20)
Browse files Browse the repository at this point in the history
This is needed as the regular configuration does not work with this board due pin conflict with Ethernet and SD-card.
  • Loading branch information
simosillankorva authored and Janne Kiiskilä committed May 18, 2017
1 parent be68bf8 commit efc6bbc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions config/mbed_lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit efc6bbc

Please sign in to comment.