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 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
sam_grove 5:3f93dd1d4cb3 3 * All rights reserved.
sam_grove 5:3f93dd1d4cb3 4 *
sam_grove 5:3f93dd1d4cb3 5 * Redistribution and use in source and binary forms, with or without modification,
sam_grove 5:3f93dd1d4cb3 6 * are permitted provided that the following conditions are met:
sam_grove 5:3f93dd1d4cb3 7 *
sam_grove 5:3f93dd1d4cb3 8 * 1. Redistributions of source code must retain the above copyright notice,
sam_grove 5:3f93dd1d4cb3 9 * this list of conditions and the following disclaimer.
sam_grove 5:3f93dd1d4cb3 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
sam_grove 5:3f93dd1d4cb3 11 * this list of conditions and the following disclaimer in the documentation
sam_grove 5:3f93dd1d4cb3 12 * and/or other materials provided with the distribution.
sam_grove 5:3f93dd1d4cb3 13 * 3. The name of the author may not be used to endorse or promote products
sam_grove 5:3f93dd1d4cb3 14 * derived from this software without specific prior written permission.
sam_grove 5:3f93dd1d4cb3 15 *
sam_grove 5:3f93dd1d4cb3 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
sam_grove 5:3f93dd1d4cb3 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
sam_grove 5:3f93dd1d4cb3 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
sam_grove 5:3f93dd1d4cb3 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
sam_grove 5:3f93dd1d4cb3 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
sam_grove 5:3f93dd1d4cb3 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
sam_grove 5:3f93dd1d4cb3 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
sam_grove 5:3f93dd1d4cb3 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
sam_grove 5:3f93dd1d4cb3 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
sam_grove 5:3f93dd1d4cb3 25 * OF SUCH DAMAGE.
sam_grove 5:3f93dd1d4cb3 26 *
sam_grove 5:3f93dd1d4cb3 27 * This file is part of the lwIP TCP/IP stack.
sam_grove 5:3f93dd1d4cb3 28 *
sam_grove 5:3f93dd1d4cb3 29 * Author: Adam Dunkels <adam@sics.se>
sam_grove 5:3f93dd1d4cb3 30 *
sam_grove 5:3f93dd1d4cb3 31 */
sam_grove 5:3f93dd1d4cb3 32 #ifndef __LWIP_ARCH_H__
sam_grove 5:3f93dd1d4cb3 33 #define __LWIP_ARCH_H__
sam_grove 5:3f93dd1d4cb3 34
sam_grove 5:3f93dd1d4cb3 35 #ifndef LITTLE_ENDIAN
sam_grove 5:3f93dd1d4cb3 36 #define LITTLE_ENDIAN 1234
sam_grove 5:3f93dd1d4cb3 37 #endif
sam_grove 5:3f93dd1d4cb3 38
sam_grove 5:3f93dd1d4cb3 39 #ifndef BIG_ENDIAN
sam_grove 5:3f93dd1d4cb3 40 #define BIG_ENDIAN 4321
sam_grove 5:3f93dd1d4cb3 41 #endif
sam_grove 5:3f93dd1d4cb3 42
sam_grove 5:3f93dd1d4cb3 43 #include "arch/cc.h"
sam_grove 5:3f93dd1d4cb3 44
sam_grove 5:3f93dd1d4cb3 45 /** Temporary: define format string for size_t if not defined in cc.h */
sam_grove 5:3f93dd1d4cb3 46 #ifndef SZT_F
sam_grove 5:3f93dd1d4cb3 47 #define SZT_F U32_F
sam_grove 5:3f93dd1d4cb3 48 #endif /* SZT_F */
sam_grove 5:3f93dd1d4cb3 49 /** Temporary upgrade helper: define format string for u8_t as hex if not
sam_grove 5:3f93dd1d4cb3 50 defined in cc.h */
sam_grove 5:3f93dd1d4cb3 51 #ifndef X8_F
sam_grove 5:3f93dd1d4cb3 52 #define X8_F "02x"
sam_grove 5:3f93dd1d4cb3 53 #endif /* X8_F */
sam_grove 5:3f93dd1d4cb3 54
sam_grove 5:3f93dd1d4cb3 55 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 56 extern "C" {
sam_grove 5:3f93dd1d4cb3 57 #endif
sam_grove 5:3f93dd1d4cb3 58
sam_grove 5:3f93dd1d4cb3 59 #ifndef PACK_STRUCT_BEGIN
sam_grove 5:3f93dd1d4cb3 60 #define PACK_STRUCT_BEGIN
sam_grove 5:3f93dd1d4cb3 61 #endif /* PACK_STRUCT_BEGIN */
sam_grove 5:3f93dd1d4cb3 62
sam_grove 5:3f93dd1d4cb3 63 #ifndef PACK_STRUCT_END
sam_grove 5:3f93dd1d4cb3 64 #define PACK_STRUCT_END
sam_grove 5:3f93dd1d4cb3 65 #endif /* PACK_STRUCT_END */
sam_grove 5:3f93dd1d4cb3 66
sam_grove 5:3f93dd1d4cb3 67 #ifndef PACK_STRUCT_FIELD
sam_grove 5:3f93dd1d4cb3 68 #define PACK_STRUCT_FIELD(x) x
sam_grove 5:3f93dd1d4cb3 69 #endif /* PACK_STRUCT_FIELD */
sam_grove 5:3f93dd1d4cb3 70
sam_grove 5:3f93dd1d4cb3 71
sam_grove 5:3f93dd1d4cb3 72 #ifndef LWIP_UNUSED_ARG
sam_grove 5:3f93dd1d4cb3 73 #define LWIP_UNUSED_ARG(x) (void)x
sam_grove 5:3f93dd1d4cb3 74 #endif /* LWIP_UNUSED_ARG */
sam_grove 5:3f93dd1d4cb3 75
sam_grove 5:3f93dd1d4cb3 76
sam_grove 5:3f93dd1d4cb3 77 #ifdef LWIP_PROVIDE_ERRNO
sam_grove 5:3f93dd1d4cb3 78
sam_grove 5:3f93dd1d4cb3 79 #define EPERM 1 /* Operation not permitted */
sam_grove 5:3f93dd1d4cb3 80 #define ENOENT 2 /* No such file or directory */
sam_grove 5:3f93dd1d4cb3 81 #define ESRCH 3 /* No such process */
sam_grove 5:3f93dd1d4cb3 82 #define EINTR 4 /* Interrupted system call */
sam_grove 5:3f93dd1d4cb3 83 #define EIO 5 /* I/O error */
sam_grove 5:3f93dd1d4cb3 84 #define ENXIO 6 /* No such device or address */
sam_grove 5:3f93dd1d4cb3 85 #define E2BIG 7 /* Arg list too long */
sam_grove 5:3f93dd1d4cb3 86 #define ENOEXEC 8 /* Exec format error */
sam_grove 5:3f93dd1d4cb3 87 #define EBADF 9 /* Bad file number */
sam_grove 5:3f93dd1d4cb3 88 #define ECHILD 10 /* No child processes */
sam_grove 5:3f93dd1d4cb3 89 #define EAGAIN 11 /* Try again */
sam_grove 5:3f93dd1d4cb3 90 #define ENOMEM 12 /* Out of memory */
sam_grove 5:3f93dd1d4cb3 91 #define EACCES 13 /* Permission denied */
sam_grove 5:3f93dd1d4cb3 92 #define EFAULT 14 /* Bad address */
sam_grove 5:3f93dd1d4cb3 93 #define ENOTBLK 15 /* Block device required */
sam_grove 5:3f93dd1d4cb3 94 #define EBUSY 16 /* Device or resource busy */
sam_grove 5:3f93dd1d4cb3 95 #define EEXIST 17 /* File exists */
sam_grove 5:3f93dd1d4cb3 96 #define EXDEV 18 /* Cross-device link */
sam_grove 5:3f93dd1d4cb3 97 #define ENODEV 19 /* No such device */
sam_grove 5:3f93dd1d4cb3 98 #define ENOTDIR 20 /* Not a directory */
sam_grove 5:3f93dd1d4cb3 99 #define EISDIR 21 /* Is a directory */
sam_grove 5:3f93dd1d4cb3 100 #define EINVAL 22 /* Invalid argument */
sam_grove 5:3f93dd1d4cb3 101 #define ENFILE 23 /* File table overflow */
sam_grove 5:3f93dd1d4cb3 102 #define EMFILE 24 /* Too many open files */
sam_grove 5:3f93dd1d4cb3 103 #define ENOTTY 25 /* Not a typewriter */
sam_grove 5:3f93dd1d4cb3 104 #define ETXTBSY 26 /* Text file busy */
sam_grove 5:3f93dd1d4cb3 105 #define EFBIG 27 /* File too large */
sam_grove 5:3f93dd1d4cb3 106 #define ENOSPC 28 /* No space left on device */
sam_grove 5:3f93dd1d4cb3 107 #define ESPIPE 29 /* Illegal seek */
sam_grove 5:3f93dd1d4cb3 108 #define EROFS 30 /* Read-only file system */
sam_grove 5:3f93dd1d4cb3 109 #define EMLINK 31 /* Too many links */
sam_grove 5:3f93dd1d4cb3 110 #define EPIPE 32 /* Broken pipe */
sam_grove 5:3f93dd1d4cb3 111 #define EDOM 33 /* Math argument out of domain of func */
sam_grove 5:3f93dd1d4cb3 112 #define ERANGE 34 /* Math result not representable */
sam_grove 5:3f93dd1d4cb3 113 #define EDEADLK 35 /* Resource deadlock would occur */
sam_grove 5:3f93dd1d4cb3 114 #define ENAMETOOLONG 36 /* File name too long */
sam_grove 5:3f93dd1d4cb3 115 #define ENOLCK 37 /* No record locks available */
sam_grove 5:3f93dd1d4cb3 116 #define ENOSYS 38 /* Function not implemented */
sam_grove 5:3f93dd1d4cb3 117 #define ENOTEMPTY 39 /* Directory not empty */
sam_grove 5:3f93dd1d4cb3 118 #define ELOOP 40 /* Too many symbolic links encountered */
sam_grove 5:3f93dd1d4cb3 119 #define EWOULDBLOCK EAGAIN /* Operation would block */
sam_grove 5:3f93dd1d4cb3 120 #define ENOMSG 42 /* No message of desired type */
sam_grove 5:3f93dd1d4cb3 121 #define EIDRM 43 /* Identifier removed */
sam_grove 5:3f93dd1d4cb3 122 #define ECHRNG 44 /* Channel number out of range */
sam_grove 5:3f93dd1d4cb3 123 #define EL2NSYNC 45 /* Level 2 not synchronized */
sam_grove 5:3f93dd1d4cb3 124 #define EL3HLT 46 /* Level 3 halted */
sam_grove 5:3f93dd1d4cb3 125 #define EL3RST 47 /* Level 3 reset */
sam_grove 5:3f93dd1d4cb3 126 #define ELNRNG 48 /* Link number out of range */
sam_grove 5:3f93dd1d4cb3 127 #define EUNATCH 49 /* Protocol driver not attached */
sam_grove 5:3f93dd1d4cb3 128 #define ENOCSI 50 /* No CSI structure available */
sam_grove 5:3f93dd1d4cb3 129 #define EL2HLT 51 /* Level 2 halted */
sam_grove 5:3f93dd1d4cb3 130 #define EBADE 52 /* Invalid exchange */
sam_grove 5:3f93dd1d4cb3 131 #define EBADR 53 /* Invalid request descriptor */
sam_grove 5:3f93dd1d4cb3 132 #define EXFULL 54 /* Exchange full */
sam_grove 5:3f93dd1d4cb3 133 #define ENOANO 55 /* No anode */
sam_grove 5:3f93dd1d4cb3 134 #define EBADRQC 56 /* Invalid request code */
sam_grove 5:3f93dd1d4cb3 135 #define EBADSLT 57 /* Invalid slot */
sam_grove 5:3f93dd1d4cb3 136
sam_grove 5:3f93dd1d4cb3 137 #define EDEADLOCK EDEADLK
sam_grove 5:3f93dd1d4cb3 138
sam_grove 5:3f93dd1d4cb3 139 #define EBFONT 59 /* Bad font file format */
sam_grove 5:3f93dd1d4cb3 140 #define ENOSTR 60 /* Device not a stream */
sam_grove 5:3f93dd1d4cb3 141 #define ENODATA 61 /* No data available */
sam_grove 5:3f93dd1d4cb3 142 #define ETIME 62 /* Timer expired */
sam_grove 5:3f93dd1d4cb3 143 #define ENOSR 63 /* Out of streams resources */
sam_grove 5:3f93dd1d4cb3 144 #define ENONET 64 /* Machine is not on the network */
sam_grove 5:3f93dd1d4cb3 145 #define ENOPKG 65 /* Package not installed */
sam_grove 5:3f93dd1d4cb3 146 #define EREMOTE 66 /* Object is remote */
sam_grove 5:3f93dd1d4cb3 147 #define ENOLINK 67 /* Link has been severed */
sam_grove 5:3f93dd1d4cb3 148 #define EADV 68 /* Advertise error */
sam_grove 5:3f93dd1d4cb3 149 #define ESRMNT 69 /* Srmount error */
sam_grove 5:3f93dd1d4cb3 150 #define ECOMM 70 /* Communication error on send */
sam_grove 5:3f93dd1d4cb3 151 #define EPROTO 71 /* Protocol error */
sam_grove 5:3f93dd1d4cb3 152 #define EMULTIHOP 72 /* Multihop attempted */
sam_grove 5:3f93dd1d4cb3 153 #define EDOTDOT 73 /* RFS specific error */
sam_grove 5:3f93dd1d4cb3 154 #define EBADMSG 74 /* Not a data message */
sam_grove 5:3f93dd1d4cb3 155 #define EOVERFLOW 75 /* Value too large for defined data type */
sam_grove 5:3f93dd1d4cb3 156 #define ENOTUNIQ 76 /* Name not unique on network */
sam_grove 5:3f93dd1d4cb3 157 #define EBADFD 77 /* File descriptor in bad state */
sam_grove 5:3f93dd1d4cb3 158 #define EREMCHG 78 /* Remote address changed */
sam_grove 5:3f93dd1d4cb3 159 #define ELIBACC 79 /* Can not access a needed shared library */
sam_grove 5:3f93dd1d4cb3 160 #define ELIBBAD 80 /* Accessing a corrupted shared library */
sam_grove 5:3f93dd1d4cb3 161 #define ELIBSCN 81 /* .lib section in a.out corrupted */
sam_grove 5:3f93dd1d4cb3 162 #define ELIBMAX 82 /* Attempting to link in too many shared libraries */
sam_grove 5:3f93dd1d4cb3 163 #define ELIBEXEC 83 /* Cannot exec a shared library directly */
sam_grove 5:3f93dd1d4cb3 164 #define EILSEQ 84 /* Illegal byte sequence */
sam_grove 5:3f93dd1d4cb3 165 #define ERESTART 85 /* Interrupted system call should be restarted */
sam_grove 5:3f93dd1d4cb3 166 #define ESTRPIPE 86 /* Streams pipe error */
sam_grove 5:3f93dd1d4cb3 167 #define EUSERS 87 /* Too many users */
sam_grove 5:3f93dd1d4cb3 168 #define ENOTSOCK 88 /* Socket operation on non-socket */
sam_grove 5:3f93dd1d4cb3 169 #define EDESTADDRREQ 89 /* Destination address required */
sam_grove 5:3f93dd1d4cb3 170 #define EMSGSIZE 90 /* Message too long */
sam_grove 5:3f93dd1d4cb3 171 #define EPROTOTYPE 91 /* Protocol wrong type for socket */
sam_grove 5:3f93dd1d4cb3 172 #define ENOPROTOOPT 92 /* Protocol not available */
sam_grove 5:3f93dd1d4cb3 173 #define EPROTONOSUPPORT 93 /* Protocol not supported */
sam_grove 5:3f93dd1d4cb3 174 #define ESOCKTNOSUPPORT 94 /* Socket type not supported */
sam_grove 5:3f93dd1d4cb3 175 #define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
sam_grove 5:3f93dd1d4cb3 176 #define EPFNOSUPPORT 96 /* Protocol family not supported */
sam_grove 5:3f93dd1d4cb3 177 #define EAFNOSUPPORT 97 /* Address family not supported by protocol */
sam_grove 5:3f93dd1d4cb3 178 #define EADDRINUSE 98 /* Address already in use */
sam_grove 5:3f93dd1d4cb3 179 #define EADDRNOTAVAIL 99 /* Cannot assign requested address */
sam_grove 5:3f93dd1d4cb3 180 #define ENETDOWN 100 /* Network is down */
sam_grove 5:3f93dd1d4cb3 181 #define ENETUNREACH 101 /* Network is unreachable */
sam_grove 5:3f93dd1d4cb3 182 #define ENETRESET 102 /* Network dropped connection because of reset */
sam_grove 5:3f93dd1d4cb3 183 #define ECONNABORTED 103 /* Software caused connection abort */
sam_grove 5:3f93dd1d4cb3 184 #define ECONNRESET 104 /* Connection reset by peer */
sam_grove 5:3f93dd1d4cb3 185 #define ENOBUFS 105 /* No buffer space available */
sam_grove 5:3f93dd1d4cb3 186 #define EISCONN 106 /* Transport endpoint is already connected */
sam_grove 5:3f93dd1d4cb3 187 #define ENOTCONN 107 /* Transport endpoint is not connected */
sam_grove 5:3f93dd1d4cb3 188 #define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
sam_grove 5:3f93dd1d4cb3 189 #define ETOOMANYREFS 109 /* Too many references: cannot splice */
sam_grove 5:3f93dd1d4cb3 190 #define ETIMEDOUT 110 /* Connection timed out */
sam_grove 5:3f93dd1d4cb3 191 #define ECONNREFUSED 111 /* Connection refused */
sam_grove 5:3f93dd1d4cb3 192 #define EHOSTDOWN 112 /* Host is down */
sam_grove 5:3f93dd1d4cb3 193 #define EHOSTUNREACH 113 /* No route to host */
sam_grove 5:3f93dd1d4cb3 194 #define EALREADY 114 /* Operation already in progress */
sam_grove 5:3f93dd1d4cb3 195 #define EINPROGRESS 115 /* Operation now in progress */
sam_grove 5:3f93dd1d4cb3 196 #define ESTALE 116 /* Stale NFS file handle */
sam_grove 5:3f93dd1d4cb3 197 #define EUCLEAN 117 /* Structure needs cleaning */
sam_grove 5:3f93dd1d4cb3 198 #define ENOTNAM 118 /* Not a XENIX named type file */
sam_grove 5:3f93dd1d4cb3 199 #define ENAVAIL 119 /* No XENIX semaphores available */
sam_grove 5:3f93dd1d4cb3 200 #define EISNAM 120 /* Is a named type file */
sam_grove 5:3f93dd1d4cb3 201 #define EREMOTEIO 121 /* Remote I/O error */
sam_grove 5:3f93dd1d4cb3 202 #define EDQUOT 122 /* Quota exceeded */
sam_grove 5:3f93dd1d4cb3 203
sam_grove 5:3f93dd1d4cb3 204 #define ENOMEDIUM 123 /* No medium found */
sam_grove 5:3f93dd1d4cb3 205 #define EMEDIUMTYPE 124 /* Wrong medium type */
sam_grove 5:3f93dd1d4cb3 206
sam_grove 5:3f93dd1d4cb3 207
sam_grove 5:3f93dd1d4cb3 208 #define ENSROK 0 /* DNS server returned answer with no data */
sam_grove 5:3f93dd1d4cb3 209 #define ENSRNODATA 160 /* DNS server returned answer with no data */
sam_grove 5:3f93dd1d4cb3 210 #define ENSRFORMERR 161 /* DNS server claims query was misformatted */
sam_grove 5:3f93dd1d4cb3 211 #define ENSRSERVFAIL 162 /* DNS server returned general failure */
sam_grove 5:3f93dd1d4cb3 212 #define ENSRNOTFOUND 163 /* Domain name not found */
sam_grove 5:3f93dd1d4cb3 213 #define ENSRNOTIMP 164 /* DNS server does not implement requested operation */
sam_grove 5:3f93dd1d4cb3 214 #define ENSRREFUSED 165 /* DNS server refused query */
sam_grove 5:3f93dd1d4cb3 215 #define ENSRBADQUERY 166 /* Misformatted DNS query */
sam_grove 5:3f93dd1d4cb3 216 #define ENSRBADNAME 167 /* Misformatted domain name */
sam_grove 5:3f93dd1d4cb3 217 #define ENSRBADFAMILY 168 /* Unsupported address family */
sam_grove 5:3f93dd1d4cb3 218 #define ENSRBADRESP 169 /* Misformatted DNS reply */
sam_grove 5:3f93dd1d4cb3 219 #define ENSRCONNREFUSED 170 /* Could not contact DNS servers */
sam_grove 5:3f93dd1d4cb3 220 #define ENSRTIMEOUT 171 /* Timeout while contacting DNS servers */
sam_grove 5:3f93dd1d4cb3 221 #define ENSROF 172 /* End of file */
sam_grove 5:3f93dd1d4cb3 222 #define ENSRFILE 173 /* Error reading file */
sam_grove 5:3f93dd1d4cb3 223 #define ENSRNOMEM 174 /* Out of memory */
sam_grove 5:3f93dd1d4cb3 224 #define ENSRDESTRUCTION 175 /* Application terminated lookup */
sam_grove 5:3f93dd1d4cb3 225 #define ENSRQUERYDOMAINTOOLONG 176 /* Domain name is too long */
sam_grove 5:3f93dd1d4cb3 226 #define ENSRCNAMELOOP 177 /* Domain name is too long */
sam_grove 5:3f93dd1d4cb3 227
sam_grove 5:3f93dd1d4cb3 228 #ifndef errno
sam_grove 5:3f93dd1d4cb3 229 extern int errno;
sam_grove 5:3f93dd1d4cb3 230 #endif
sam_grove 5:3f93dd1d4cb3 231
sam_grove 5:3f93dd1d4cb3 232 #endif /* LWIP_PROVIDE_ERRNO */
sam_grove 5:3f93dd1d4cb3 233
sam_grove 5:3f93dd1d4cb3 234 #ifdef __cplusplus
sam_grove 5:3f93dd1d4cb3 235 }
sam_grove 5:3f93dd1d4cb3 236 #endif
sam_grove 5:3f93dd1d4cb3 237
sam_grove 5:3f93dd1d4cb3 238 #endif /* __LWIP_ARCH_H__ */