LwIP 之三 操作系统隔离接口 sys_arch

  目前,网络上多数文章所使用的 LwIP 版本为1.4.1。最新版本为 2.0.3。从 1.4.1 到 2.0.3(貌似从2.0.0开始), LwIP 的源码有了一定的变化,甚至于源码的文件结构也不一样,内部的一些实现源文件也被更新和替换了。

简介

   LwIP 为了适应不同的操作系统,在代码中没有使用和某一个操作系统相关的系统调用和数据结构。而是在 LwIP 和操作系统之间增加了一个操作系统封装层。操作系统封装层为操作系统服务(定时,进程同步,消息传递)提供了一个统一的接口。
  在 LwIP 源码的doc/sys_arch.txt文件中,有详细的说明需要移植者实现那些文件及函数。以下主要是针对该文件的一些翻译。
  The operating system emulation layer provides a common interface between the LwIP code and the underlying operating system kernel. The general idea is that porting LwIP to new architectures requires only small changes to a few header files and a new sys_arch implementation. It is also possible to do a sys_arch implementation that does not rely on any underlying operating system.
  操作系统仿真层提供 LwIP 代码和底层操作系统内核之间的通用接口。 总体思路是将 LwIP 移植到新体系结构中只需对少量头文件和对新sys_arch实现进行小改动即可,且可以不依赖任何底层操作系统的sys_arch实现。
  The sys_arch provides semaphores, mailboxes and mutexes to LwIP . For the full LwIP functionality, multiple threads support can be implemented in the sys_arch, but this is not required for the basic LwIP functionality. Timer scheduling is implemented in LwIP , but can be implemented by the sys_arch port ( LwIP _TIMERS_CUSTOM==1).
  sys_arch为 LwIP 提供信号量,邮箱和互斥量。 对于完整的 LwIP 功能,可以在sys_arch中实现多线程支持,但对于基本的 LwIP 功能来说,这不是必需的。 定时器调度在 LwIP 中实现,但可以通过sys_arch( LwIP _TIMERS_CUSTOM == 1)实现。
  In addition to the source file providing the functionality of sys_arch,the OS emulation layer must provide several header files defining macros used throughout LwIP . The files required and the macros they must define are listed below the sys_arch description.
  除了提供sys_arch功能的源文件之外,操作系统仿真层还必须提供几个用于定义整个 LwIP 中使用的宏的头文件。 所需的文件和宏必须安装如下列出的描述进行定义。
  Semaphores can be either counting or binary - LwIP works with both kinds. Mailboxes should be implemented as a queue which allows multiple messages to be posted (implementing as a rendez-vous point where only one message can be posted at a time can have a highly negative impact on performance). A message in a mailbox is just a pointer, nothing more.
  信号量可以是计数或二进制 —— LwIP 可以同时使用这两种类型。 邮箱应该作为允许发布多个邮件的队列来实现(作为一次只能发布一条邮件的rendez-vous点,可能会对性能产生很大的负面影响)。 邮箱中的消息只是一个指针,仅此而已。
  Semaphores are represented by the type “sys_sem_t” which is typedef’d in the sys_arch.h file. Mailboxes are equivalently represented by the type “sys_mbox_t”. Mutexes are represented by the type “sys_mutex_t”. LwIP does not place any restrictions on how these types are represented internally.
  信号量由sys_arch.h文件中typedef的类型“sys_sem_t”表示。 邮箱等同于“sys_mbox_t”类型。 互斥体由“sys_mutex_t”类型表示。 LwIP 并没有对这些类型如何在内部表现出任何限制。

例如,在使用FreeRTOS时移植时,sys_arch.h文件中有如下语句
LwIP 之三 操作系统隔离接口 sys_arch_第1张图片

  Since LwIP 1.4.0, semaphore, mutexes and mailbox functions are prototyped in a way that allows both using pointers or actual OS structures to be used. This way, memory required for such types can be either allocated in place (globally or on the stack) or on the heap (allocated internally in the "_new()" functions).
  从 LwIP 1.4.0版本开始,信号量,互斥和邮箱功能的原型方式允许使用指针或实际的OS结构体。 这样,这些类型所需的内存可以在使用的地方分配(全局或堆栈)或在堆上(在“
_ new()”函数内部分配)。

sys_arch

  该部分主要指需要实现的各函数,通常做法为建立一个名为sys_arch.c的文件,在其中实现以下函数:
  The following functions must be implemented by the sys_arch: 以下函数必须由sys_arch实现:

  • void sys_init(void):Is called to initialize the sys_arch layer.被调用来初始化sys_arch层。
  • err_t sys_sem_new(sys_sem_t *sem, u8_t count):Creates a new semaphore. The semaphore is allocated to the memory that ‘sem’ points to (which can be both a pointer or the actual OS structure).创建一个新的信号量。信号量分配给’sem’指向的内存(可以是指针或实际的OS结构)。
      The “count” argument specifies the initial state of the semaphore (which iseither 0 or 1).“count”参数指定信号的初始状态(可以是0或1)。
      If the semaphore has been created, ERR_OK should be returned. Returning any other error will provide a hint what went wrong, but except for assertions, no real error handling is implemented. 如果信号量已经创建,则应返回ERR_OK。 返回任何其他错误将提供一个出了什么问题的提示,但除了断言之外,没有实现真正的错误处理。
  • void sys_sem_free(sys_sem_t *sem):Deallocates a semaphore.释放一个信号量
  • void sys_sem_signal(sys_sem_t *sem):Signals a semaphore. 指示信号量
  • u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout):Blocks the thread while waiting for the semaphore to be signaled. If the “timeout” argument is non-zero, the thread should only be blocked for the specified time (measured in milliseconds). If the “timeout” argument is zero, the thread should be blocked until the semaphore is signalled.在等待信号量发出信号时阻塞线程。 如果“超时”参数不为零,则线程只应在指定时间内被阻塞(以毫秒为单位)。 如果“超时”参数为零,则线程应被阻塞,直到信号被发信号。
      If the timeout argument is non-zero, the return value is the number of milliseconds spent waiting for the semaphore to be signaled. If the semaphore wasn’t signaled within the specified time, the return value is SYS_ARCH_TIMEOUT. If the thread didn’t have to wait for the semaphore(i.e., it was already signaled), the function may return zero.如果超时参数非零,则返回值是等待信号量发送信号所用的毫秒数。 如果在指定时间内没有发出信号量,则返回值为SYS_ARCH_TIMEOUT。 如果线程不必等待信号量(即它已经被发信号),该函数可能返回零。
      Notice that LwIP implements a function with a similar name, sys_sem_wait(), that uses the sys_arch_sem_wait() function.请注意, LwIP 实现了一个具有类似名称的函数sys_sem_wait(),该函数使用了sys_arch_sem_wait() 函数。
  • int sys_sem_valid(sys_sem_t *sem): Returns 1 if the semaphore is valid, 0 if it is not valid.如果信号量有效返回1,如果无效则返回0。
      When using pointers, a simple way is to check the pointer for != NULL.当使用指针时,一个简单的方法是检查指针 != NULL。
      When directly using OS structures, implementing this may be more complex.当直接使用OS结构时,实现这可能会更复杂。
      This may also be a define, in which case the function is not prototyped. 这也可能是一个定义,在这种情况下,函数不是原型的。
  • void sys_sem_set_invalid(sys_sem_t *sem): Invalidate a semaphore so that sys_sem_valid() returns 0. 使信号量失效,以便sys_sem_valid() 返回0。
      ATTENTION: This does NOT mean that the semaphore shall be deallocated:sys_sem_free() is always called before calling this function! 注意:这并不意味着信号量应该被释放:在调用这个函数之前总是要调用sys_sem_free()
      This may also be a define, in which case the function is not prototyped. 这也可能是一个定义,在这种情况下,函数不是原型的。
  • void sys_mutex_new(sys_mutex_t *mutex):Creates a new mutex. The mutex is allocated to the memory that ‘mutex’ points to (which can be both a pointer or the actual OS structure).创建一个新的互斥体。 互斥量被分配给’互斥’指向的内存(可以是指针或实际的操作系统结构)。
      If the mutex has been created, ERR_OK should be returned. Returning any other error will provide a hint what went wrong, but except for assertions, no real error handling is implemented.如果该互斥体已创建,则应返回ERR_OK。 返回任何其他错误将提供一个出了什么问题的提示,但除了断言之外,没有实现真正的错误处理。
  • void sys_mutex_free(sys_mutex_t *mutex): Deallocates a mutex.释放一个互斥信号量
  • void sys_mutex_lock(sys_mutex_t *mutex):Blocks the thread until the mutex can be grabbed.阻塞线程直到可以获取到互斥信号量。
  • void sys_mutex_unlock(sys_mutex_t *mutex):Releases the mutex previously locked through ‘sys_mutex_lock()’.释放先前通过sys_mutex_lock()锁定的互斥锁。
  • void sys_mutex_valid(sys_mutex_t *mutex): Returns 1 if the mutes is valid, 0 if it is not valid.如果互斥信号量有效则返回1,如果无效则返回0
      When using pointers, a simple way is to check the pointer for != NULL.当使用指针时,一个简单的方法是检查指针 != NULL。
      When directly using OS structures, implementing this may be more complex.当直接使用OS结构时,实现这可能会更复杂。
      This may also be a define, in which case the function is not prototyped.这也可能是一个定义,在这种情况下,函数不是原型的。
  • void sys_mutex_set_invalid(sys_mutex_t *mutex):Invalidate a mutex so that sys_mutex_valid() returns 0. 使互斥体失效,以便sys_mutex_valid()返回0。
      ATTENTION: This does NOT mean that the mutex shall be deallocated:sys_mutex_free() is always called before calling this function!这并不意味着该互斥体将被释放:在调用此函数之前总是调用sys_mutex_free()
      This may also be a define, in which case the function is not prototyped.这也可能是一个定义,在这种情况下,函数不是原型的。
  • err_t sys_mbox_new(sys_mbox_t *mbox, int size):Creates an empty mailbox for maximum “size” elements. Elements stored in mailboxes are pointers. You have to define macros “_MBOX_SIZE” in your LwIP opts.h, or ignore this parameter in your implementation and use a default size.创建最多包含size个元素的控邮箱。元素的指针存储在邮箱中。必须在LwIP opts.h中定义宏值_MBOX_SIZE,或者忽略该参数,已使用默认大小。
      If the mailbox has been created, ERR_OK should be returned. Returning any other error will provide a hint what went wrong, but except for assertions,no real error handling is implemented.如果邮箱已被创建,则返回ERR_OK。返回任何其他错误将提供一个出了什么问题的提示,但除了断言之外,没有实现真正的错误处理。
  • void sys_mbox_free(sys_mbox_t *mbox):Deallocates a mailbox. If there are messages still present in the mailbox when the mailbox is deallocated, it is an indication of a programming error in LwIP and the developer should be notified.
  • void sys_mbox_post(sys_mbox_t *mbox, void *msg):Posts the “msg” to the mailbox. This function have to block until the “msg” is really posted.
  • err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg):Try to post the “msg” to the mailbox. Returns ERR_MEM if this one is full, else, ERR_OK if the “msg” is posted.
  • u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout):Blocks the thread until a message arrives in the mailbox, but does not block the thread longer than “timeout” milliseconds (similar to the sys_arch_sem_wait() function). If “timeout” is 0, the thread should be blocked until a message arrives. The “msg” argument is a result parameter that is set by the function (i.e., by doing “*msg =ptr”). The “msg” parameter maybe NULL to indicate that the message should be dropped.
      The return values are the same as for the sys_arch_sem_wait() function:Number of milliseconds spent waiting or SYS_ARCH_TIMEOUT if there was a timeout.
      Note that a function with a similar name, sys_mbox_fetch(), is implemented by LwIP .
  • u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg):This is similar to sys_arch_mbox_fetch, however if a message is not present in the mailbox, it immediately returns with the code SYS_MBOX_EMPTY. On success 0 is returned.
      To allow for efficient implementations, this can be defined as a
    function-like macro in sys_arch.h instead of a normal function. For example, a naive implementation could be:
    #define sys_arch_mbox_tryfetch(mbox,msg)
    sys_arch_mbox_fetch(mbox,msg,1)
    although this would introduce unnecessary delays.
  • int sys_mbox_valid(sys_mbox_t *mbox):Returns 1 if the mailbox is valid, 0 if it is not valid.
      When using pointers, a simple way is to check the pointer for != NULL.
      When directly using OS structures, implementing this may be more complex.
      This may also be a define, in which case the function is not prototyped.
  • void sys_mbox_set_invalid(sys_mbox_t *mbox):Invalidate a mailbox so that sys_mbox_valid() returns 0.
      ATTENTION: This does NOT mean that the mailbox shall be deallocated:sys_mbox_free() is always called before calling this function!
      This may also be a define, in which case the function is not prototyped.

  If threads are supported by the underlying operating system and if such functionality is needed in LwIP , the following function will have to be implemented as well:

  • sys_thread_t sys_thread_new(char *name, void (* thread)(void *arg), void *arg, int stacksize, int prio):Starts a new thread named “name” with priority “prio” that will begin its execution in the function “thread()”. The “arg” argument will be passed as an argument to the thread() function. The stack size to used for this thread is the “stacksize” parameter. The id of the new thread is returned. Both the id and the priority are system dependent.

  When LwIP is used from more than one context (e.g. from multiple threads OR from main-loop and from interrupts), the SYS_LIGHTWEIGHT_PROT protection SHOULD be enabled!

  • sys_prot_t sys_arch_protect(void):This optional function does a “fast” critical region protection and returns the previous protection level. This function is only called during very short critical regions. An embedded system which supports ISR-based drivers might want to implement this function by disabling interrupts. Task-based systems might want to implement this by using a mutex or disabling tasking. This function should support recursive calls from the same task or interrupt. In other words, sys_arch_protect() could be called while already protected. In that case the return value indicates that it is already protected.
      sys_arch_protect() is only required if your port is supporting an operating system.
  • void sys_arch_unprotect(sys_prot_t pval):This optional function does a “fast” set of critical region protection to the value specified by pval. See the documentation for sys_arch_protect() for more information. This function is only required if your port is supporting an operating system.

For some configurations, you also need:

  • u32_t sys_now(void):This optional function returns the current time in milliseconds (don’t care for wraparound, this is only used for time diffs).
      Not implementing this function means you cannot use some modules (e.g. TCP timestamps, internal timeouts for NO_SYS==1).

Be careful with using mem_malloc() in sys_arch. When malloc() refers to mem_malloc() you can run into a circular function call problem. In mem.c mem_init() tries to allcate a semaphore using mem_malloc, which of course can’t be performed when sys_arch uses mem_malloc.

cc.h

通常做法为建立一个名为cc.h的文件,在其中定义以下类型及宏值:
  Architecture environment, some compiler specific, some environment specific (probably should move env stuff to sys_arch.h.)定义一些编译器特定的数据类型和对其方式。
(1)Typedefs for the types used by LwIP -
u8_t, s8_t, u16_t, s16_t, u32_t, s32_t, mem_ptr_t
(2)Compiler hints for packing LwIP 's structures

  • PACK_STRUCT_FIELD(x)
  • PACK_STRUCT_STRUCT
  • PACK_STRUCT_BEGIN
  • PACK_STRUCT_END

(3)Platform specific diagnostic output

  • LwIP _PLATFORM_DIAG(x) - non-fatal, print a message.
  • LwIP _PLATFORM_ASSERT(x) - fatal, print message and abandon execution.
  • Portability defines for printf formatters:
    U16_F, S16_F, X16_F, U32_F, S32_F, X32_F, SZT_F

(4)“lightweight” synchronization mechanisms

  • SYS_ARCH_DECL_PROTECT(x) - declare a protection state variable.
  • SYS_ARCH_PROTECT(x) - enter protection mode.
  • SYS_ARCH_UNPROTECT(x) - leave protection mode.

(5)If the compiler does not provide memset() this file must include a definition of it, or include a file which defines it.如果编译系统中没有包含 memset(),则需要自己包含该函数
(6)This file must either include a system-local errno.h which defines the standard nix error codes, or it should #define LwIP _PROVIDE_ERRNO to make LwIP /arch.h define the codes which are used throughout.该文件还必须包含本地系统的 errno.h 文件(该文件包含了标准nix错误码),或者可以定义宏值#define LwIP _PROVIDE_ERRNO(直接在 LwIP opts.h中定义即可)来使用 LwIP 自己的这个头文件。
  示例文件如下(系统为FreeRTOS时):

/*
 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
 * All rights reserved. 
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission. 
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 * OF SUCH DAMAGE.
 *
 * This file is part of the  LwIP  TCP/IP stack.
 * 
 * Author: Adam Dunkels 
 *
 */
#ifndef __CC_H__
#define __CC_H__

#include "cpu.h"

typedef unsigned   char    u8_t;
typedef signed     char    s8_t;
typedef unsigned   short   u16_t;
typedef signed     short   s16_t;
typedef unsigned   long    u32_t;
typedef signed     long    s32_t;
typedef u32_t mem_ptr_t;
typedef int sys_prot_t;

#define U16_F "hu"
#define S16_F "d"
#define X16_F "hx"
#define U32_F "u"
#define S32_F "d"
#define X32_F "x"
#define SZT_F "uz" 

/* define compiler specific symbols */
#if defined (__ICCARM__)

#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_STRUCT 
#define PACK_STRUCT_END
#define PACK_STRUCT_FIELD(x) x
#define PACK_STRUCT_USE_INCLUDES

#elif defined (__CC_ARM)

#define PACK_STRUCT_BEGIN __packed
#define PACK_STRUCT_STRUCT 
#define PACK_STRUCT_END
#define PACK_STRUCT_FIELD(x) x

#elif defined (__GNUC__)

#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_STRUCT __attribute__ ((__packed__))
#define PACK_STRUCT_END
#define PACK_STRUCT_FIELD(x) x

#elif defined (__TASKING__)

#define PACK_STRUCT_BEGIN
#define PACK_STRUCT_STRUCT
#define PACK_STRUCT_END
#define PACK_STRUCT_FIELD(x) x

#endif

#define  LwIP _PLATFORM_ASSERT(x) //do { if(!(x)) while(1); } while(0)

#endif /* __CC_H__ */

perf.h

  Architecture specific performance measurement.架构特定的性能测量。没搞明白这句啥意思!这是 LwIP 的作者测试用的?
Measurement calls made throughout LwIP , these can be defined to nothing.

  • PERF_START - start measuring something.
  • PERF_STOP(x) - stop measuring something, and record the result.

  通常做法为建立一个名为perf.h的文件,在其中定义以上类型及宏值,但是这两个宏值具体干啥用还没搞清楚!示例文件如下:

/*
 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
 * All rights reserved. 
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission. 
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 * OF SUCH DAMAGE.
 *
 * This file is part of the  LwIP  TCP/IP stack.
 * 
 * Author: Adam Dunkels 
 *
 */
#ifndef __PERF_H__
#define __PERF_H__

#define PERF_START    /* null definition */
#define PERF_STOP(x)  /* null definition */

#endif /* __PERF_H__ */

sys_arch.h

该文件主要是针对上面sys_arch.c的配套头文件,里面有各种函数的声明。
(1)Arch dependent types for the following objects:sys_sem_t, sys_mbox_t, sys_thread_t, And, optionally:sys_prot_t需要定义以上这些类型(sys_prot_t是可选的)
(2)Defines to set vars of sys_mbox_t and sys_sem_t to NULL.将以下两个宏值定位NULL

  • SYS_MBOX_NULL NULL
  • SYS_SEM_NULL NULL

  示例文件如下(系统为FreeRTOS时):

/*
 * Copyright (c) 2001-2003 Swedish Institute of Computer Science.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 * OF SUCH DAMAGE.
 *
 * This file is part of the  LwIP  TCP/IP stack.
 *
 * Author: Adam Dunkels 
 *
 */
#ifndef __SYS_RTXC_H__
#define __SYS_RTXC_H__

#include "FreeRTOS.h"
#include "task.h"
#include "queue.h"
#include "semphr.h"

#define SYS_MBOX_NULL (xQueueHandle)0
#define SYS_SEM_NULL  (xSemaphoreHandle)0
#define SYS_DEFAULT_THREAD_STACK_DEPTH	configMINIMAL_STACK_SIZE

typedef xSemaphoreHandle sys_sem_t;
typedef xSemaphoreHandle sys_mutex_t;
typedef xQueueHandle sys_mbox_t;
typedef xTaskHandle sys_thread_t;

typedef struct _sys_arch_state_t
{
	// Task creation data.
	char cTaskName[configMAX_TASK_NAME_LEN];
	unsigned short nStackDepth;
	unsigned short nTaskCount;
} sys_arch_state_t;

//extern sys_arch_state_t s_sys_arch_state;

//void sys_set_default_state();
//void sys_set_state(signed char *pTaskName, unsigned short nStackSize);

/* Message queue constants. */
#define archMESG_QUEUE_LENGTH	( 6 )
#endif /* __SYS_RTXC_H__ */

其他文件

例如cpu.hWindows下需要的bpstruct.h和epstruct.h

总结

最终需要在sys_arch中的文件如下图:
LwIP 之三 操作系统隔离接口 sys_arch_第2张图片

你可能感兴趣的:(LwIP)