Final 350 project

Dependencies:   uzair Camera_LS_Y201 F7_Ethernet LCD_DISCO_F746NG NetworkAPI SDFileSystem mbed

Committer:
shoaib_ahmed
Date:
Mon Jul 31 09:16:35 2017 +0000
Revision:
0:791a779d6220
final project;

Who changed what in which revision?

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