The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
<>
Date:
Tue Mar 14 16:20:51 2017 +0000
Revision:
138:093f2bd7b9eb
Parent:
128:9bcdf88f62b0
Child:
152:235179ab3f27
Release 138 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3716: fix for issue #3715: correction in startup files for ARM and IAR, alignment of system_stm32f429xx.c files https://github.com/ARMmbed/mbed-os/pull/3716
3741: STM32 remove warning in hal_tick_32b.c file https://github.com/ARMmbed/mbed-os/pull/3741
3780: STM32L4 : Fix GPIO G port compatibility https://github.com/ARMmbed/mbed-os/pull/3780
3831: NCS36510: SPISLAVE enabled (Conflict resolved) https://github.com/ARMmbed/mbed-os/pull/3831
3836: Allow to redefine nRF's PSTORAGE_NUM_OF_PAGES outside of the mbed-os https://github.com/ARMmbed/mbed-os/pull/3836
3840: STM32: gpio SPEED - always set High Speed by default https://github.com/ARMmbed/mbed-os/pull/3840
3844: STM32 GPIO: Typo correction. Update comment (GPIO_IP_WITHOUT_BRR) https://github.com/ARMmbed/mbed-os/pull/3844
3850: STM32: change spi error to debug warning https://github.com/ARMmbed/mbed-os/pull/3850
3860: Define GPIO_IP_WITHOUT_BRR for xDot platform https://github.com/ARMmbed/mbed-os/pull/3860
3880: DISCO_F469NI: allow the use of CAN2 instance when CAN1 is not activated https://github.com/ARMmbed/mbed-os/pull/3880
3795: Fix pwm period calc https://github.com/ARMmbed/mbed-os/pull/3795
3828: STM32 CAN API: correct format and type https://github.com/ARMmbed/mbed-os/pull/3828
3842: TARGET_NRF: corrected spi_init() to properly handle re-initialization https://github.com/ARMmbed/mbed-os/pull/3842
3843: STM32L476xG: set APB2 clock to 80MHz (instead of 40MHz) https://github.com/ARMmbed/mbed-os/pull/3843
3879: NUCLEO_F446ZE: Add missing AnalogIn pins on PF_3, PF_5 and PF_10. https://github.com/ARMmbed/mbed-os/pull/3879
3902: Fix heap and stack size for NUCLEO_F746ZG https://github.com/ARMmbed/mbed-os/pull/3902
3829: can_write(): return error code when no tx mailboxes are available https://github.com/ARMmbed/mbed-os/pull/3829

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 123:b0220dba8be7 1 /* mbed Microcontroller Library
Kojto 123:b0220dba8be7 2 * Copyright (c) 2015-2016 Nuvoton
Kojto 123:b0220dba8be7 3 *
Kojto 123:b0220dba8be7 4 * Licensed under the Apache License, Version 2.0 (the "License");
Kojto 123:b0220dba8be7 5 * you may not use this file except in compliance with the License.
Kojto 123:b0220dba8be7 6 * You may obtain a copy of the License at
Kojto 123:b0220dba8be7 7 *
Kojto 123:b0220dba8be7 8 * http://www.apache.org/licenses/LICENSE-2.0
Kojto 123:b0220dba8be7 9 *
Kojto 123:b0220dba8be7 10 * Unless required by applicable law or agreed to in writing, software
Kojto 123:b0220dba8be7 11 * distributed under the License is distributed on an "AS IS" BASIS,
Kojto 123:b0220dba8be7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Kojto 123:b0220dba8be7 13 * See the License for the specific language governing permissions and
Kojto 123:b0220dba8be7 14 * limitations under the License.
Kojto 123:b0220dba8be7 15 */
Kojto 123:b0220dba8be7 16
Kojto 123:b0220dba8be7 17 #ifndef NU_BIT_UTIL_H
Kojto 123:b0220dba8be7 18 #define NU_BIT_UTIL_H
Kojto 123:b0220dba8be7 19
Kojto 123:b0220dba8be7 20 #include "cmsis.h"
Kojto 123:b0220dba8be7 21
Kojto 123:b0220dba8be7 22 #ifdef __cplusplus
Kojto 123:b0220dba8be7 23 extern "C" {
Kojto 123:b0220dba8be7 24 #endif
Kojto 123:b0220dba8be7 25
Kojto 123:b0220dba8be7 26 __STATIC_INLINE int nu_clz(uint32_t x)
Kojto 123:b0220dba8be7 27 {
Kojto 123:b0220dba8be7 28 return __CLZ(x);
Kojto 123:b0220dba8be7 29 }
Kojto 123:b0220dba8be7 30
Kojto 123:b0220dba8be7 31 __STATIC_INLINE int nu_clo(uint32_t x)
Kojto 123:b0220dba8be7 32 {
Kojto 123:b0220dba8be7 33 return nu_clz(~x);
Kojto 123:b0220dba8be7 34 }
Kojto 123:b0220dba8be7 35
Kojto 123:b0220dba8be7 36 __STATIC_INLINE int nu_ctz(uint32_t x)
Kojto 123:b0220dba8be7 37 {
Kojto 123:b0220dba8be7 38 int c = __CLZ(x & -x);
Kojto 123:b0220dba8be7 39 return x ? 31 - c : c;
Kojto 123:b0220dba8be7 40 }
Kojto 123:b0220dba8be7 41
Kojto 123:b0220dba8be7 42 __STATIC_INLINE int nu_cto(uint32_t x)
Kojto 123:b0220dba8be7 43 {
Kojto 123:b0220dba8be7 44 return nu_ctz(~x);
Kojto 123:b0220dba8be7 45 }
Kojto 123:b0220dba8be7 46
Kojto 123:b0220dba8be7 47
Kojto 123:b0220dba8be7 48 __STATIC_INLINE uint16_t nu_get16_le(const uint8_t *pos)
Kojto 123:b0220dba8be7 49 {
Kojto 123:b0220dba8be7 50 uint16_t val;
Kojto 123:b0220dba8be7 51
Kojto 123:b0220dba8be7 52 val = *pos ++;
Kojto 123:b0220dba8be7 53 val += (*pos << 8);
Kojto 123:b0220dba8be7 54
Kojto 123:b0220dba8be7 55 return val;
Kojto 123:b0220dba8be7 56 }
Kojto 123:b0220dba8be7 57
Kojto 123:b0220dba8be7 58 __STATIC_INLINE void nu_set16_le(uint8_t *pos, uint16_t val)
Kojto 123:b0220dba8be7 59 {
Kojto 123:b0220dba8be7 60 *pos ++ = val & 0xFF;
Kojto 123:b0220dba8be7 61 *pos = val >> 8;
Kojto 123:b0220dba8be7 62 }
Kojto 123:b0220dba8be7 63
Kojto 123:b0220dba8be7 64 __STATIC_INLINE uint32_t nu_get32_le(const uint8_t *pos)
Kojto 123:b0220dba8be7 65 {
Kojto 123:b0220dba8be7 66 uint32_t val;
Kojto 123:b0220dba8be7 67
Kojto 123:b0220dba8be7 68 val = *pos ++;
Kojto 123:b0220dba8be7 69 val += (*pos ++ << 8);
Kojto 123:b0220dba8be7 70 val += (*pos ++ << 16);
Kojto 123:b0220dba8be7 71 val += (*pos ++ << 24);
Kojto 123:b0220dba8be7 72
Kojto 123:b0220dba8be7 73 return val;
Kojto 123:b0220dba8be7 74 }
Kojto 123:b0220dba8be7 75
Kojto 123:b0220dba8be7 76 __STATIC_INLINE void nu_set32_le(uint8_t *pos, uint32_t val)
Kojto 123:b0220dba8be7 77 {
Kojto 123:b0220dba8be7 78 *pos ++ = val & 0xFF;
Kojto 123:b0220dba8be7 79 *pos ++ = (val >> 8) & 0xFF;
Kojto 123:b0220dba8be7 80 *pos ++ = (val >> 16) & 0xFF;
Kojto 123:b0220dba8be7 81 *pos = (val >> 24) & 0xFF;
Kojto 123:b0220dba8be7 82 }
Kojto 123:b0220dba8be7 83
Kojto 123:b0220dba8be7 84 __STATIC_INLINE uint16_t nu_get16_be(const uint8_t *pos)
Kojto 123:b0220dba8be7 85 {
Kojto 123:b0220dba8be7 86 uint16_t val;
Kojto 123:b0220dba8be7 87
Kojto 123:b0220dba8be7 88 val = *pos ++;
Kojto 123:b0220dba8be7 89 val <<= 8;
Kojto 123:b0220dba8be7 90 val += *pos;
Kojto 123:b0220dba8be7 91
Kojto 123:b0220dba8be7 92 return val;
Kojto 123:b0220dba8be7 93 }
Kojto 123:b0220dba8be7 94
Kojto 123:b0220dba8be7 95 __STATIC_INLINE void nu_set16_be(uint8_t *pos, uint16_t val)
Kojto 123:b0220dba8be7 96 {
Kojto 123:b0220dba8be7 97 *pos ++ = val >> 8;
Kojto 123:b0220dba8be7 98 *pos = (val & 0xFF);
Kojto 123:b0220dba8be7 99 }
Kojto 123:b0220dba8be7 100
Kojto 123:b0220dba8be7 101 __STATIC_INLINE uint32_t nu_get32_be(const uint8_t *pos)
Kojto 123:b0220dba8be7 102 {
Kojto 123:b0220dba8be7 103 uint32_t val;
Kojto 123:b0220dba8be7 104
Kojto 123:b0220dba8be7 105 val = *pos ++;
Kojto 123:b0220dba8be7 106 val <<= 8;
Kojto 123:b0220dba8be7 107 val += *pos ++;
Kojto 123:b0220dba8be7 108 val <<= 8;
Kojto 123:b0220dba8be7 109 val += *pos ++;
Kojto 123:b0220dba8be7 110 val <<= 8;
Kojto 123:b0220dba8be7 111 val += *pos;
Kojto 123:b0220dba8be7 112
Kojto 123:b0220dba8be7 113 return val;
Kojto 123:b0220dba8be7 114 }
Kojto 123:b0220dba8be7 115
Kojto 123:b0220dba8be7 116 __STATIC_INLINE void nu_set32_be(uint8_t *pos, uint32_t val)
Kojto 123:b0220dba8be7 117 {
Kojto 123:b0220dba8be7 118 *pos ++ = val >> 24;
Kojto 123:b0220dba8be7 119 *pos ++ = val >> 16;
Kojto 123:b0220dba8be7 120 *pos ++ = val >> 8;
Kojto 123:b0220dba8be7 121 *pos ++ = (val & 0xFF);
Kojto 123:b0220dba8be7 122 }
Kojto 123:b0220dba8be7 123
Kojto 123:b0220dba8be7 124 #ifdef __cplusplus
Kojto 123:b0220dba8be7 125 }
Kojto 123:b0220dba8be7 126 #endif
Kojto 123:b0220dba8be7 127
Kojto 123:b0220dba8be7 128 #endif