mbed library sources

Dependents:   frdm_kl05z_gpio_test

Fork of mbed-src by mbed official

Revision:
29:6ac4027eff2b
Parent:
15:4892fe388435
Child:
227:7bd0639b8911
--- a/targets/hal/TARGET_NXP/TARGET_LPC408X/pwmout_api.c	Fri Sep 20 10:00:04 2013 +0100
+++ b/targets/hal/TARGET_NXP/TARGET_LPC408X/pwmout_api.c	Mon Sep 23 11:30:07 2013 +0100
@@ -66,7 +66,7 @@
 void pwmout_init(pwmout_t* obj, PinName pin) {
     // determine the channel
     PWMName pwm = (PWMName)pinmap_peripheral(pin, PinMap_PWM);
-    if (pwm == (uint32_t)NC)
+    if (pwm == (PWMName)NC)
         error("PwmOut pin mapping failed");
     
     obj->channel = pwm;