mbed-src updated for BMD-200 evaluation board. Just pin numbers are updated.

Dependents:   mbed_blinky-bmd-200 bmd-200_accel_demo firstRig

Fork of mbed-src by mbed official

Replacement for the "mbed" or "mbed-src" library when using the BMD-200 Evaluation kit. This library only remaps the pin names (i.e. LED1 points to p0.01 instead of p0.18, etc) as used by the BMD-200 Evaluation board (select the nRF51822_mkit platform). All other code is untouched.

Files at this revision

API Documentation at this revision

Comitter:
mbed_official
Date:
Wed Jun 03 08:45:33 2015 +0100
Parent:
560:a217bc785985
Child:
562:0880f51c4036
Commit message:
Synchronized with git revision e775613c6b67f6d67298fec0fe26ded074b8d4c3

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

Added tests for the WFI instruction

Changed in this revision

targets/hal/TARGET_NXP/TARGET_LPC82X/pwmout_api.c Show annotated file Show diff for this revision Revisions of this file
--- a/targets/hal/TARGET_NXP/TARGET_LPC82X/pwmout_api.c	Wed Jun 03 08:30:08 2015 +0100
+++ b/targets/hal/TARGET_NXP/TARGET_LPC82X/pwmout_api.c	Wed Jun 03 08:45:33 2015 +0100
@@ -36,7 +36,7 @@
 
 void pwmout_init(pwmout_t* obj, PinName pin)
 {
-    MBED_ASSERT(pin != (uint32_t)NC);
+    MBED_ASSERT(pin != (PinName)NC);
 
     int sct_n = get_available_sct();
     if (sct_n == -1) {