ads1115 only
Fork of mbed by
TARGET_MAX32625NEXPAQ/TARGET_Maxim/mbed_rtx.h@129:0ab6a29f35bf, 2016-11-08 (annotated)
- Committer:
- <>
- Date:
- Tue Nov 08 17:28:34 2016 +0000
- Revision:
- 129:0ab6a29f35bf
Release 129 of the mbed library
Ports for Upcoming Targets
3011: Add u-blox Sara-N target. https://github.com/ARMmbed/mbed-os/pull/3011
3099: MAX32625 https://github.com/ARMmbed/mbed-os/pull/3099
3151: Add support for FRDM-K82F https://github.com/ARMmbed/mbed-os/pull/3151
3177: New mcu k22512 fixing pr 3136 https://github.com/ARMmbed/mbed-os/pull/3177
Fixes and Changes
3008: NUCLEO_F072RB: Fix wrong timer channel number on pwm PB_5 pin https://github.com/ARMmbed/mbed-os/pull/3008
3013: STM32xx - Change how the ADC internal pins are checked before pinmap_ https://github.com/ARMmbed/mbed-os/pull/3013
3041: [nRF5] - added implementation of API of serial port flow control configuration. https://github.com/ARMmbed/mbed-os/pull/3041
3084: [nrf5] fix in Digital I/O : a gpioe pin was uninitialized badly https://github.com/ARMmbed/mbed-os/pull/3084
3009: TRNG enabled. TRNG APIs implemented. REV A/B/C/D flags removed. Warnings removed https://github.com/ARMmbed/mbed-os/pull/3009
3074: Target stm init gcc alignement https://github.com/ARMmbed/mbed-os/pull/3074
2988: Update of can_api.c fixing #2987 https://github.com/ARMmbed/mbed-os/pull/2988
3173: [Exporters] Add a device_name to microbit entry in targets.json https://github.com/ARMmbed/mbed-os/pull/3173
2969: [nRF52] - switch irq priorities of driver handlers to the lowest level https://github.com/ARMmbed/mbed-os/pull/2969
3184: #3183 Compiler warning in trng_api.c with K64F https://github.com/ARMmbed/mbed-os/pull/3184
3104: [NuMaker] Support CAN and fix PWM CLK error https://github.com/ARMmbed/mbed-os/pull/3104
3186: MultiTech mDot - add back SPI3 pins https://github.com/ARMmbed/mbed-os/pull/3186
3075: nsapi - Add standardized return types for size and errors https://github.com/ARMmbed/mbed-os/pull/3075
3221: u-blox odin w2 drivers update https://github.com/ARMmbed/mbed-os/pull/3221
Who changed what in which revision?
User | Revision | Line number | New 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 | |
<> | 129:0ab6a29f35bf | 80 | #endif |
<> | 129:0ab6a29f35bf | 81 | |
<> | 129:0ab6a29f35bf | 82 | #endif // MBED_MBED_RTX_H |