Ported 'sd' test to the Nucleo board

pull/124/merge
Bogdan Marinescu 2013-12-11 18:50:35 +02:00
parent 1f942615c1
commit 8ee4396f01
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,8 @@
#if defined(TARGET_KL25Z)
SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
#elif defined(TARGET_NUCLEO_F103RB)
SDFileSystem sd(D11, D12, D13, D10, "sd");
#else
SDFileSystem sd(p11, p12, p13, p14, "sd");
#endif