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:
Kojto
Date:
Tue Feb 14 11:24:20 2017 +0000
Revision:
136:ef9c61f8c49f
Parent:
135:176b8275d35d
Child:
145:64910690c574
Release 136 of the mbed library

Ports for Upcoming Targets


Fixes and Changes

3432: Target STM USBHOST support https://github.com/ARMmbed/mbed-os/pull/3432
3181: NUCLEO_F207ZG extending PeripheralPins.c: all available alternate functions can be used now https://github.com/ARMmbed/mbed-os/pull/3181
3626: NUCLEO_F412ZG : Add USB Device +Host https://github.com/ARMmbed/mbed-os/pull/3626
3628: Fix warnings https://github.com/ARMmbed/mbed-os/pull/3628
3629: STM32: L0 LL layer https://github.com/ARMmbed/mbed-os/pull/3629
3632: IDE Export support for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3632
3642: Missing IRQ pin fix for platform VK_RZ_A1H https://github.com/ARMmbed/mbed-os/pull/3642
3664: Fix ncs36510 sleep definitions https://github.com/ARMmbed/mbed-os/pull/3664
3655: [STM32F4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3655
3657: [STM32L4] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3657
3658: [STM32F3] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3658
3685: STM32: I2C: reset state machine https://github.com/ARMmbed/mbed-os/pull/3685
3692: uVisor: Standardize available legacy heap and stack https://github.com/ARMmbed/mbed-os/pull/3692
3621: Fix for #2884, LPC824: export to LPCXpresso, target running with wron https://github.com/ARMmbed/mbed-os/pull/3621
3649: [STM32F7] Modify folder structure https://github.com/ARMmbed/mbed-os/pull/3649
3695: Enforce device_name is valid in targets.json https://github.com/ARMmbed/mbed-os/pull/3695
3723: NCS36510: spi_format function bug fix https://github.com/ARMmbed/mbed-os/pull/3723

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 129:0ab6a29f35bf 1 /* mbed Microcontroller Library
<> 129:0ab6a29f35bf 2 * Copyright (c) 2016 ARM Limited
<> 129:0ab6a29f35bf 3 *
<> 129:0ab6a29f35bf 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 129:0ab6a29f35bf 5 * you may not use this file except in compliance with the License.
<> 129:0ab6a29f35bf 6 * You may obtain a copy of the License at
<> 129:0ab6a29f35bf 7 *
<> 129:0ab6a29f35bf 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 129:0ab6a29f35bf 9 *
<> 129:0ab6a29f35bf 10 * Unless required by applicable law or agreed to in writing, software
<> 129:0ab6a29f35bf 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 129:0ab6a29f35bf 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 129:0ab6a29f35bf 13 * See the License for the specific language governing permissions and
<> 129:0ab6a29f35bf 14 * limitations under the License.
<> 129:0ab6a29f35bf 15 */
<> 129:0ab6a29f35bf 16
<> 129:0ab6a29f35bf 17 #ifndef MBED_MBED_RTX_H
<> 129:0ab6a29f35bf 18 #define MBED_MBED_RTX_H
<> 129:0ab6a29f35bf 19
<> 129:0ab6a29f35bf 20 #if defined(TARGET_MAX32600)
<> 129:0ab6a29f35bf 21
<> 129:0ab6a29f35bf 22 #ifndef INITIAL_SP
<> 129:0ab6a29f35bf 23 #define INITIAL_SP (0x20008000UL)
<> 129:0ab6a29f35bf 24 #endif
<> 129:0ab6a29f35bf 25 #ifndef OS_TASKCNT
<> 129:0ab6a29f35bf 26 #define OS_TASKCNT 14
<> 129:0ab6a29f35bf 27 #endif
<> 129:0ab6a29f35bf 28 #ifndef OS_MAINSTKSIZE
<> 129:0ab6a29f35bf 29 #define OS_MAINSTKSIZE 256
<> 129:0ab6a29f35bf 30 #endif
<> 129:0ab6a29f35bf 31 #ifndef OS_CLOCK
<> 129:0ab6a29f35bf 32 #define OS_CLOCK 24000000
<> 129:0ab6a29f35bf 33 #endif
<> 129:0ab6a29f35bf 34
<> 129:0ab6a29f35bf 35 #elif defined(TARGET_MAX32610)
<> 129:0ab6a29f35bf 36
<> 129:0ab6a29f35bf 37 #ifndef INITIAL_SP
<> 129:0ab6a29f35bf 38 #define INITIAL_SP (0x20008000UL)
<> 129:0ab6a29f35bf 39 #endif
<> 129:0ab6a29f35bf 40 #ifndef OS_TASKCNT
<> 129:0ab6a29f35bf 41 #define OS_TASKCNT 14
<> 129:0ab6a29f35bf 42 #endif
<> 129:0ab6a29f35bf 43 #ifndef OS_MAINSTKSIZE
<> 129:0ab6a29f35bf 44 #define OS_MAINSTKSIZE 256
<> 129:0ab6a29f35bf 45 #endif
<> 129:0ab6a29f35bf 46 #ifndef OS_CLOCK
<> 129:0ab6a29f35bf 47 #define OS_CLOCK 24000000
<> 129:0ab6a29f35bf 48 #endif
<> 129:0ab6a29f35bf 49
<> 129:0ab6a29f35bf 50 #elif defined(TARGET_MAX32620)
<> 129:0ab6a29f35bf 51
<> 129:0ab6a29f35bf 52 #ifndef INITIAL_SP
<> 129:0ab6a29f35bf 53 #define INITIAL_SP (0x20040000UL)
<> 129:0ab6a29f35bf 54 #endif
<> 129:0ab6a29f35bf 55 #ifndef OS_TASKCNT
<> 129:0ab6a29f35bf 56 #define OS_TASKCNT 14
<> 129:0ab6a29f35bf 57 #endif
<> 129:0ab6a29f35bf 58 #ifndef OS_MAINSTKSIZE
<> 129:0ab6a29f35bf 59 #define OS_MAINSTKSIZE 256
<> 129:0ab6a29f35bf 60 #endif
<> 129:0ab6a29f35bf 61 #ifndef OS_CLOCK
<> 129:0ab6a29f35bf 62 #define OS_CLOCK 48000000
<> 129:0ab6a29f35bf 63 #endif
<> 129:0ab6a29f35bf 64
<> 129:0ab6a29f35bf 65 #elif defined(TARGET_MAX32625)
<> 129:0ab6a29f35bf 66
<> 129:0ab6a29f35bf 67 #ifndef INITIAL_SP
<> 129:0ab6a29f35bf 68 #define INITIAL_SP (0x20028000UL)
<> 129:0ab6a29f35bf 69 #endif
<> 129:0ab6a29f35bf 70 #ifndef OS_TASKCNT
<> 129:0ab6a29f35bf 71 #define OS_TASKCNT 14
<> 129:0ab6a29f35bf 72 #endif
<> 129:0ab6a29f35bf 73 #ifndef OS_MAINSTKSIZE
<> 129:0ab6a29f35bf 74 #define OS_MAINSTKSIZE 256
<> 129:0ab6a29f35bf 75 #endif
<> 129:0ab6a29f35bf 76 #ifndef OS_CLOCK
<> 129:0ab6a29f35bf 77 #define OS_CLOCK 96000000
<> 129:0ab6a29f35bf 78 #endif
<> 129:0ab6a29f35bf 79
<> 135:176b8275d35d 80 #elif defined(TARGET_MAX32630)
<> 135:176b8275d35d 81
<> 135:176b8275d35d 82 #ifndef INITIAL_SP
<> 135:176b8275d35d 83 #define INITIAL_SP (0x20080000UL)
<> 135:176b8275d35d 84 #endif
<> 135:176b8275d35d 85 #ifndef OS_TASKCNT
<> 135:176b8275d35d 86 #define OS_TASKCNT 14
<> 135:176b8275d35d 87 #endif
<> 135:176b8275d35d 88 #ifndef OS_MAINSTKSIZE
<> 135:176b8275d35d 89 #define OS_MAINSTKSIZE 256
<> 135:176b8275d35d 90 #endif
<> 135:176b8275d35d 91 #ifndef OS_CLOCK
<> 135:176b8275d35d 92 #define OS_CLOCK 96000000
<> 135:176b8275d35d 93 #endif
<> 135:176b8275d35d 94
<> 129:0ab6a29f35bf 95 #endif
<> 129:0ab6a29f35bf 96
<> 129:0ab6a29f35bf 97 #endif // MBED_MBED_RTX_H