mirror of https://github.com/ARMmbed/mbed-os.git
Merge branch 'KL46_DEV' of git://github.com/sg-/mbed into sg--KL46_DEV
Conflicts: README.mdpull/131/head^2
commit
c560db3233
|
@ -37,7 +37,7 @@ NXP:
|
|||
Freescale:
|
||||
* KL05Z (Cortex-M0+)
|
||||
* [KL25Z](http://mbed.org/platforms/KL25Z/) (Cortex-M0+)
|
||||
* KL46Z (Cortex-M0+)
|
||||
* [KL46Z](https://mbed.org/platforms/FRDM-KL46Z/) (Cortex-M0+)
|
||||
|
||||
STMicroelectronics:
|
||||
* STM32F407 (Cortex-M4)
|
||||
|
|
|
@ -231,10 +231,11 @@ typedef enum {
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue