mbed library with additional peripherals for ST F401 board

Fork of mbed-src by mbed official

This mbed LIB has additional peripherals for ST F401 board

  • UART2 : PA_3 rx, PA_2 tx
  • UART3 : PC_7 rx, PC_6 tx
  • I2C2 : PB_3 SDA, PB_10 SCL
  • I2C3 : PB_4 SDA, PA_8 SCL

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Tue Dec 17 10:15:06 2013 +0000
Parent:
60:142c6c6f5949
Child:
62:7731d679ae64
Commit message:
Synchronized with git revision c560db32338a4ba3520b173b749e5c0cb876e7d2

Full URL: https://github.com/mbedmicro/mbed/commit/c560db32338a4ba3520b173b749e5c0cb876e7d2/

Conflicts:
README.md

Changed in this revision

targets/hal/TARGET_Freescale/TARGET_KL46Z/PinNames.h Show annotated file Show diff for this revision Revisions of this file
--- a/targets/hal/TARGET_Freescale/TARGET_KL46Z/PinNames.h	Tue Dec 17 08:45:10 2013 +0000
+++ b/targets/hal/TARGET_Freescale/TARGET_KL46Z/PinNames.h	Tue Dec 17 10:15:06 2013 +0000
@@ -231,10 +231,11 @@
     NC = (int)0xFFFFFFFF
 } PinName;
 
-/* PullDown not available for KL46 */
+/* Pull modes for input pins */
 typedef enum {
     PullNone = 0,
-    PullUp = 2,
+    PullDown = 2,
+    PullUp = 3
 } PinMode;
 
 #ifdef __cplusplus