Added SD card and EEPROM test pins for new Freescale K20D50M platform

pull/401/head^2
Przemek Wirkus 2014-07-15 10:02:48 +01:00
parent 19bfb0eb61
commit ac667d6a3e
3 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,9 @@ I2C i2c(PTC9, PTC8);
#elif defined(TARGET_KL46Z)
I2C i2c(PTC9, PTC8);
#elif defined(TARGET_K20D50M)
I2C i2c(PTB3, PTB2);
#elif defined(TARGET_LPC812)
I2C i2c(P0_10, P0_11);

View File

@ -36,6 +36,9 @@ I2C i2c(PTC9, PTC8);
#elif defined(TARGET_KL46Z)
I2C i2c(PTC9, PTC8);
#elif defined(TARGET_K20D50M)
I2C i2c(PTB3, PTB2);
#elif defined(TARGET_LPC812)
I2C i2c(P0_10, P0_11);

View File

@ -8,6 +8,9 @@ SDFileSystem sd(PTD2, PTD3, PTD1, PTD0, "sd");
#elif defined(TARGET_KL46Z)
SDFileSystem sd(PTD6, PTD7, PTD5, PTD4, "sd");
#elif defined(TARGET_K20D50M)
SDFileSystem sd(PTD2, PTD3, PTD1, PTC2, "sd");
#elif defined(TARGET_nRF51822)
SDFileSystem sd(p12, p13, p15, p14, "sd");