mbed os with nrf51 internal bandgap enabled to read battery level

Dependents:   BLE_file_test BLE_Blink ExternalEncoder

Committer:
elessair
Date:
Sun Oct 23 15:10:02 2016 +0000
Revision:
0:f269e3021894
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
elessair 0:f269e3021894 1 /*----------------------------------------------------------------------------
elessair 0:f269e3021894 2 * RL-ARM - RTX
elessair 0:f269e3021894 3 *----------------------------------------------------------------------------
elessair 0:f269e3021894 4 * Name: RT_TASK.H
elessair 0:f269e3021894 5 * Purpose: Task functions and system start up.
elessair 0:f269e3021894 6 * Rev.: V4.60
elessair 0:f269e3021894 7 *----------------------------------------------------------------------------
elessair 0:f269e3021894 8 *
elessair 0:f269e3021894 9 * Copyright (c) 1999-2009 KEIL, 2009-2015 ARM Germany GmbH
elessair 0:f269e3021894 10 * All rights reserved.
elessair 0:f269e3021894 11 * Redistribution and use in source and binary forms, with or without
elessair 0:f269e3021894 12 * modification, are permitted provided that the following conditions are met:
elessair 0:f269e3021894 13 * - Redistributions of source code must retain the above copyright
elessair 0:f269e3021894 14 * notice, this list of conditions and the following disclaimer.
elessair 0:f269e3021894 15 * - Redistributions in binary form must reproduce the above copyright
elessair 0:f269e3021894 16 * notice, this list of conditions and the following disclaimer in the
elessair 0:f269e3021894 17 * documentation and/or other materials provided with the distribution.
elessair 0:f269e3021894 18 * - Neither the name of ARM nor the names of its contributors may be used
elessair 0:f269e3021894 19 * to endorse or promote products derived from this software without
elessair 0:f269e3021894 20 * specific prior written permission.
elessair 0:f269e3021894 21 *
elessair 0:f269e3021894 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
elessair 0:f269e3021894 23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
elessair 0:f269e3021894 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
elessair 0:f269e3021894 25 * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
elessair 0:f269e3021894 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
elessair 0:f269e3021894 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
elessair 0:f269e3021894 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
elessair 0:f269e3021894 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
elessair 0:f269e3021894 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
elessair 0:f269e3021894 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
elessair 0:f269e3021894 32 * POSSIBILITY OF SUCH DAMAGE.
elessair 0:f269e3021894 33 *---------------------------------------------------------------------------*/
elessair 0:f269e3021894 34
elessair 0:f269e3021894 35 /* Definitions */
elessair 0:f269e3021894 36 #define __CMSIS_RTOS 1
elessair 0:f269e3021894 37
elessair 0:f269e3021894 38 /* Values for 'state' */
elessair 0:f269e3021894 39 #define INACTIVE 0
elessair 0:f269e3021894 40 #define READY 1
elessair 0:f269e3021894 41 #define RUNNING 2
elessair 0:f269e3021894 42 #define WAIT_DLY 3
elessair 0:f269e3021894 43 #define WAIT_ITV 4
elessair 0:f269e3021894 44 #define WAIT_OR 5
elessair 0:f269e3021894 45 #define WAIT_AND 6
elessair 0:f269e3021894 46 #define WAIT_SEM 7
elessair 0:f269e3021894 47 #define WAIT_MBX 8
elessair 0:f269e3021894 48 #define WAIT_MUT 9
elessair 0:f269e3021894 49
elessair 0:f269e3021894 50 /* Return codes */
elessair 0:f269e3021894 51 #define OS_R_TMO 0x01
elessair 0:f269e3021894 52 #define OS_R_EVT 0x02
elessair 0:f269e3021894 53 #define OS_R_SEM 0x03
elessair 0:f269e3021894 54 #define OS_R_MBX 0x04
elessair 0:f269e3021894 55 #define OS_R_MUT 0x05
elessair 0:f269e3021894 56
elessair 0:f269e3021894 57 #define OS_R_OK 0x00
elessair 0:f269e3021894 58 #define OS_R_NOK 0xff
elessair 0:f269e3021894 59
elessair 0:f269e3021894 60 /* Variables */
elessair 0:f269e3021894 61 extern struct OS_TSK os_tsk;
elessair 0:f269e3021894 62 extern struct OS_TCB os_idle_TCB;
elessair 0:f269e3021894 63
elessair 0:f269e3021894 64 /* Functions */
elessair 0:f269e3021894 65 extern void rt_switch_req (P_TCB p_new);
elessair 0:f269e3021894 66 extern void rt_dispatch (P_TCB next_TCB);
elessair 0:f269e3021894 67 extern void rt_block (U16 timeout, U8 block_state);
elessair 0:f269e3021894 68 extern void rt_tsk_pass (void);
elessair 0:f269e3021894 69 extern OS_TID rt_tsk_self (void);
elessair 0:f269e3021894 70 extern OS_RESULT rt_tsk_prio (OS_TID task_id, U8 new_prio);
elessair 0:f269e3021894 71 extern OS_RESULT rt_tsk_delete (OS_TID task_id);
elessair 0:f269e3021894 72 extern void rt_sys_init (void);
elessair 0:f269e3021894 73 extern void rt_sys_start (void);