The code from https://github.com/vpcola/Nucleo

Committer:
sinrab
Date:
Wed Oct 08 11:00:24 2014 +0000
Revision:
0:5464d5e415e5
The code from https://github.com/vpcola/Nucleo

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sinrab 0:5464d5e415e5 1 /*----------------------------------------------------------------------------
sinrab 0:5464d5e415e5 2 * RL-ARM - RTX
sinrab 0:5464d5e415e5 3 *----------------------------------------------------------------------------
sinrab 0:5464d5e415e5 4 * Name: RTX_CONFIG.H
sinrab 0:5464d5e415e5 5 * Purpose: Exported functions of RTX_Config.c
sinrab 0:5464d5e415e5 6 * Rev.: V4.60
sinrab 0:5464d5e415e5 7 *----------------------------------------------------------------------------
sinrab 0:5464d5e415e5 8 *
sinrab 0:5464d5e415e5 9 * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
sinrab 0:5464d5e415e5 10 * All rights reserved.
sinrab 0:5464d5e415e5 11 * Redistribution and use in source and binary forms, with or without
sinrab 0:5464d5e415e5 12 * modification, are permitted provided that the following conditions are met:
sinrab 0:5464d5e415e5 13 * - Redistributions of source code must retain the above copyright
sinrab 0:5464d5e415e5 14 * notice, this list of conditions and the following disclaimer.
sinrab 0:5464d5e415e5 15 * - Redistributions in binary form must reproduce the above copyright
sinrab 0:5464d5e415e5 16 * notice, this list of conditions and the following disclaimer in the
sinrab 0:5464d5e415e5 17 * documentation and/or other materials provided with the distribution.
sinrab 0:5464d5e415e5 18 * - Neither the name of ARM nor the names of its contributors may be used
sinrab 0:5464d5e415e5 19 * to endorse or promote products derived from this software without
sinrab 0:5464d5e415e5 20 * specific prior written permission.
sinrab 0:5464d5e415e5 21 *
sinrab 0:5464d5e415e5 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
sinrab 0:5464d5e415e5 23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sinrab 0:5464d5e415e5 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sinrab 0:5464d5e415e5 25 * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
sinrab 0:5464d5e415e5 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
sinrab 0:5464d5e415e5 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
sinrab 0:5464d5e415e5 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
sinrab 0:5464d5e415e5 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
sinrab 0:5464d5e415e5 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sinrab 0:5464d5e415e5 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
sinrab 0:5464d5e415e5 32 * POSSIBILITY OF SUCH DAMAGE.
sinrab 0:5464d5e415e5 33 *---------------------------------------------------------------------------*/
sinrab 0:5464d5e415e5 34
sinrab 0:5464d5e415e5 35
sinrab 0:5464d5e415e5 36 /* Error Codes */
sinrab 0:5464d5e415e5 37 #define OS_ERR_STK_OVF 1
sinrab 0:5464d5e415e5 38 #define OS_ERR_FIFO_OVF 2
sinrab 0:5464d5e415e5 39 #define OS_ERR_MBX_OVF 3
sinrab 0:5464d5e415e5 40
sinrab 0:5464d5e415e5 41 /* Definitions */
sinrab 0:5464d5e415e5 42 #define BOX_ALIGN_8 0x80000000
sinrab 0:5464d5e415e5 43 #define _declare_box(pool,size,cnt) U32 pool[(((size)+3)/4)*(cnt) + 3]
sinrab 0:5464d5e415e5 44 #define _declare_box8(pool,size,cnt) U64 pool[(((size)+7)/8)*(cnt) + 2]
sinrab 0:5464d5e415e5 45 #define _init_box8(pool,size,bsize) _init_box (pool,size,(bsize) | BOX_ALIGN_8)
sinrab 0:5464d5e415e5 46
sinrab 0:5464d5e415e5 47 /* Variables */
sinrab 0:5464d5e415e5 48 extern U32 idle_task_stack[];
sinrab 0:5464d5e415e5 49 extern U32 os_fifo[];
sinrab 0:5464d5e415e5 50 extern void *os_active_TCB[];
sinrab 0:5464d5e415e5 51
sinrab 0:5464d5e415e5 52 /* Constants */
sinrab 0:5464d5e415e5 53 extern U16 const os_maxtaskrun;
sinrab 0:5464d5e415e5 54 extern U32 const os_trv;
sinrab 0:5464d5e415e5 55 extern U8 const os_flags;
sinrab 0:5464d5e415e5 56 extern U32 const os_rrobin;
sinrab 0:5464d5e415e5 57 extern U32 const os_clockrate;
sinrab 0:5464d5e415e5 58 extern U32 const os_timernum;
sinrab 0:5464d5e415e5 59 extern U16 const idle_task_stack_size;
sinrab 0:5464d5e415e5 60
sinrab 0:5464d5e415e5 61 extern U8 const os_fifo_size;
sinrab 0:5464d5e415e5 62
sinrab 0:5464d5e415e5 63 /* Functions */
sinrab 0:5464d5e415e5 64 extern void os_idle_demon (void);
sinrab 0:5464d5e415e5 65 extern int os_tick_init (void);
sinrab 0:5464d5e415e5 66 extern void os_tick_irqack (void);
sinrab 0:5464d5e415e5 67 extern void os_tmr_call (U16 info);
sinrab 0:5464d5e415e5 68 extern void os_error (U32 err_code);
sinrab 0:5464d5e415e5 69
sinrab 0:5464d5e415e5 70 /*----------------------------------------------------------------------------
sinrab 0:5464d5e415e5 71 * end of file
sinrab 0:5464d5e415e5 72 *---------------------------------------------------------------------------*/
sinrab 0:5464d5e415e5 73