Nordic stack and drivers for the mbed BLE API
Fork of nRF51822 by
Revision 117:dbc5d7f0fdd5, committed 2015-04-30
- Comitter:
- rgrover1
- Date:
- Thu Apr 30 08:34:38 2015 +0100
- Parent:
- 116:fa7257f1c455
- Child:
- 118:f9e5e2935c5c
- Commit message:
- Synchronized with git rev 7588e719
Author: Rohit Grover
Merge pull request #8 from rosterloh/master
Fix for GCC lost in SDK v8.0 update
Changed in this revision
nordic-sdk/components/softdevice/s110/headers/nrf_svc.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/nordic-sdk/components/softdevice/s110/headers/nrf_svc.h Thu Apr 30 08:34:38 2015 +0100 +++ b/nordic-sdk/components/softdevice/s110/headers/nrf_svc.h Thu Apr 30 08:34:38 2015 +0100 @@ -53,7 +53,7 @@ { \ __asm( \ "svc %0\n" \ - "bx r14" : : "I" (number) : "r0" \ + "bx r14" : : "I" ((uint32_t)number) : "r0" \ ); \ } \ _Pragma("GCC diagnostic pop")