Integrating the ublox LISA C200 modem

Fork of SprintUSBModemHTTPClientTest by Donatien Garnier

Committer:
sam_grove
Date:
Thu Sep 26 00:44:20 2013 -0500
Revision:
5:3f93dd1d4cb3
Exported program and replaced contents of the repo with the source
to build and debug using keil mdk. Libs NOT upto date are lwip, lwip-sys
and socket. these have newer versions under mbed_official but were starting
from a know working point

Who changed what in which revision?

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