Skip to content

Commit ee76292

Browse files
committed
Merge pull request #1042 from bsilvereagle/master
Replaced SPI pin definitions for K64F in SD tests
2 parents 02a3838 + 72d62f7 commit ee76292

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ You can for example read more in our ```docs``` section in [mbedmicro/mbed/doc](
1010
# How to contribute
1111
We really appreciate your contributions! We are Open Source project and we need your help. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
1212

13+
Before a pull request will be merged, the [mbed Contributor Agreement](http://developer.mbed.org/contributor_agreement/) must be signed.
14+
1315
You can pick up existing [mbed GitHub Issue](https://github.com/mbedmicro/mbed/issues) and solve it or implement new feature you find important, attractive or just necessary. We will review your proposal via pull request mechanism, give you comments and merge your changes if we decide your contribution satisfy criteria such as quality.
1416

1517
# Enhancements vs Bugs

libraries/tests/mbed/sd/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
99
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");
1010

1111
#elif defined(TARGET_K64F)
12-
SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
12+
SDFileSystem sd(PTE3, PTE1, PTE2, PTE4, "sd");
1313

1414
#elif defined(TARGET_K22F)
1515
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");

libraries/tests/mbed/sd_perf_fatfs/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
1111
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");
1212

1313
#elif defined(TARGET_K64F)
14-
SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
14+
SDFileSystem sd(PTE3, PTE1, PTE2, PTE4, "sd");
1515

1616
#elif defined(TARGET_K22F)
1717
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");

libraries/tests/mbed/sd_perf_fhandle/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
1111
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");
1212

1313
#elif defined(TARGET_K64F)
14-
SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
14+
SDFileSystem sd(PTE3, PTE1, PTE2, PTE4, "sd");
1515

1616
#elif defined(TARGET_K22F)
1717
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");

libraries/tests/mbed/sd_perf_stdio/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
1111
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");
1212

1313
#elif defined(TARGET_K64F)
14-
SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
14+
SDFileSystem sd(PTE3, PTE1, PTE2, PTE4, "sd");
1515

1616
#elif defined(TARGET_K22F)
1717
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");

0 commit comments

Comments
 (0)