skeleton for lab1

Dependencies:   AvailableMemory mbed-rtos mbed

Fork of helloaabbc by 32314 mbed

Committer:
mbed36372
Date:
Fri Apr 04 21:31:22 2014 +0000
Revision:
1:55e99f6e2aa5
Parent:
0:1c8f2727e9f5
SP14_lab1

Who changed what in which revision?

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