app.h
来自「uIP是免费的TCP/IP协议栈,我们将它移植到我们的AVR以太网开发板中」· C头文件 代码 · 共 23 行
H
23 行
#ifndef _APP_H_
#define _APP_H_
/*****************************************************************************
* "A Very Simple Application" from the uIP 0.9 documentation
*****************************************************************************/
/* UIP_APPSTATE_SIZE: The size of the application-specific state
stored in the uip_conn structure. (not used, but has to at least be one) */
#define UIP_APPSTATE_SIZE 1
#include "uip.h"
void example1_init(void);
void example1_app(void);
#define FS_STATISTICS 0
#define UIP_APPCALL example1_app
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?