We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 572b223 + 6e4388c commit c560db3Copy full SHA for c560db3
README.md
@@ -37,7 +37,7 @@ NXP:
37
Freescale:
38
* KL05Z (Cortex-M0+)
39
* [KL25Z](http://mbed.org/platforms/KL25Z/) (Cortex-M0+)
40
-* KL46Z (Cortex-M0+)
+* [KL46Z](https://mbed.org/platforms/FRDM-KL46Z/) (Cortex-M0+)
41
42
STMicroelectronics:
43
* STM32F407 (Cortex-M4)
libraries/mbed/targets/hal/TARGET_Freescale/TARGET_KL46Z/PinNames.h
@@ -231,10 +231,11 @@ typedef enum {
231
NC = (int)0xFFFFFFFF
232
} PinName;
233
234
-/* PullDown not available for KL46 */
+/* Pull modes for input pins */
235
typedef enum {
236
PullNone = 0,
237
- PullUp = 2,
+ PullDown = 2,
238
+ PullUp = 3
239
} PinMode;
240
241
#ifdef __cplusplus
0 commit comments