Development mbed library for MAX32630FTHR

Dependents:   blinky_max32630fthr

Committer:
switches
Date:
Fri Dec 16 16:27:57 2016 +0000
Revision:
3:1198227e6421
Parent:
0:5c4d7b2438d3
Changed ADC scale for MAX32625 platforms to 1.2V full scale to match MAX32630 platforms

Who changed what in which revision?

UserRevisionLine numberNew contents of line
switches 0:5c4d7b2438d3 1 /* mbed Microcontroller Library
switches 0:5c4d7b2438d3 2 * Copyright (c) 2006-2012 ARM Limited
switches 0:5c4d7b2438d3 3 *
switches 0:5c4d7b2438d3 4 * Permission is hereby granted, free of charge, to any person obtaining a copy
switches 0:5c4d7b2438d3 5 * of this software and associated documentation files (the "Software"), to deal
switches 0:5c4d7b2438d3 6 * in the Software without restriction, including without limitation the rights
switches 0:5c4d7b2438d3 7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
switches 0:5c4d7b2438d3 8 * copies of the Software, and to permit persons to whom the Software is
switches 0:5c4d7b2438d3 9 * furnished to do so, subject to the following conditions:
switches 0:5c4d7b2438d3 10 *
switches 0:5c4d7b2438d3 11 * The above copyright notice and this permission notice shall be included in
switches 0:5c4d7b2438d3 12 * all copies or substantial portions of the Software.
switches 0:5c4d7b2438d3 13 *
switches 0:5c4d7b2438d3 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
switches 0:5c4d7b2438d3 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
switches 0:5c4d7b2438d3 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
switches 0:5c4d7b2438d3 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
switches 0:5c4d7b2438d3 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
switches 0:5c4d7b2438d3 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
switches 0:5c4d7b2438d3 20 * SOFTWARE.
switches 0:5c4d7b2438d3 21 */
switches 0:5c4d7b2438d3 22 #include "rtos/RtosTimer.h"
switches 0:5c4d7b2438d3 23
switches 0:5c4d7b2438d3 24 #include <string.h>
switches 0:5c4d7b2438d3 25
switches 0:5c4d7b2438d3 26 #include "mbed.h"
switches 0:5c4d7b2438d3 27 #include "cmsis_os.h"
switches 0:5c4d7b2438d3 28 #include "platform/mbed_error.h"
switches 0:5c4d7b2438d3 29
switches 0:5c4d7b2438d3 30 namespace rtos {
switches 0:5c4d7b2438d3 31
switches 0:5c4d7b2438d3 32 void RtosTimer::constructor(mbed::Callback<void()> func, os_timer_type type) {
switches 0:5c4d7b2438d3 33 #ifdef CMSIS_OS_RTX
switches 0:5c4d7b2438d3 34 _timer.ptimer = (void (*)(const void *))Callback<void()>::thunk;
switches 0:5c4d7b2438d3 35
switches 0:5c4d7b2438d3 36 memset(_timer_data, 0, sizeof(_timer_data));
switches 0:5c4d7b2438d3 37 _timer.timer = _timer_data;
switches 0:5c4d7b2438d3 38 #endif
switches 0:5c4d7b2438d3 39 _function = func;
switches 0:5c4d7b2438d3 40 _timer_id = osTimerCreate(&_timer, type, &_function);
switches 0:5c4d7b2438d3 41 }
switches 0:5c4d7b2438d3 42
switches 0:5c4d7b2438d3 43 osStatus RtosTimer::start(uint32_t millisec) {
switches 0:5c4d7b2438d3 44 return osTimerStart(_timer_id, millisec);
switches 0:5c4d7b2438d3 45 }
switches 0:5c4d7b2438d3 46
switches 0:5c4d7b2438d3 47 osStatus RtosTimer::stop(void) {
switches 0:5c4d7b2438d3 48 return osTimerStop(_timer_id);
switches 0:5c4d7b2438d3 49 }
switches 0:5c4d7b2438d3 50
switches 0:5c4d7b2438d3 51 RtosTimer::~RtosTimer() {
switches 0:5c4d7b2438d3 52 osTimerDelete(_timer_id);
switches 0:5c4d7b2438d3 53 }
switches 0:5c4d7b2438d3 54
switches 0:5c4d7b2438d3 55 }