Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed_blinky-bmd-200 bmd-200_accel_demo firstRig
Fork of mbed-src by
Diff: targets/hal/TARGET_Freescale/TARGET_KL25Z/pinmap.c
- Revision:
- 19:398f4c622e1b
- Parent:
- 13:0645d8841f51
--- a/targets/hal/TARGET_Freescale/TARGET_KL25Z/pinmap.c Mon Aug 12 13:49:01 2013 +0300 +++ b/targets/hal/TARGET_Freescale/TARGET_KL25Z/pinmap.c Mon Aug 19 18:17:02 2013 +0300 @@ -17,7 +17,7 @@ #include "error.h" void pin_function(PinName pin, int function) { - if (pin == (uint32_t)NC) return; + if (pin == (PinName)NC) return; uint32_t port_n = (uint32_t)pin >> PORT_SHIFT; uint32_t pin_n = (uint32_t)(pin & 0x7C) >> 2; @@ -30,7 +30,7 @@ } void pin_mode(PinName pin, PinMode mode) { - if (pin == (uint32_t)NC) { return; } + if (pin == (PinName)NC) { return; } __IO uint32_t* pin_pcr = (__IO uint32_t*)(PORTA_BASE + pin);