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