probe_tcpip.h
来自「嵌入式的tcpip协议栈」· C头文件 代码 · 共 98 行
H
98 行
/*
*********************************************************************************************************
* uC/Probe Communication
*
* (c) Copyright 2007; Micrium, Inc.; Weston, FL
*
* All rights reserved. Protected by international copyright laws.
* Knowledge of the source code may NOT be used to develop a similar product.
* Please help us continue to provide the Embedded community with the finest
* software available. Your honesty is greatly appreciated.
*********************************************************************************************************
*/
/*
*********************************************************************************************************
*
* uC/Probe
*
* Communication: TCP-IP
*
* Filename : probe_tcpip.h
* Version : V1.40
* Programmer(s) : FBJ
*********************************************************************************************************
*/
#ifndef __PROBE_TCPIP_H__
#define __PROBE_TCPIP_H__
#if (PROBE_COM_METHOD_TCPIP > 0)
/*
*********************************************************************************************************
* INCLUDE FILES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* FUNCTION PROTOTYPES
*********************************************************************************************************
*/
void ProbeTCPIP_Init (void);
void ProbeTCPIP_Task (void *p_arg);
/*
*********************************************************************************************************
* RTOS INTERFACE FUNCTIONS
* (see probe_tcpip_os.c)
*********************************************************************************************************
*/
void ProbeTCPIP_OS_Init(void);
/*
*********************************************************************************************************
* CONFIGURATION ERRORS
*********************************************************************************************************
*/
#ifndef PROBE_TCPIP_TASK_PRIO
#error "PROBE_TCPIP_TASK_PRIO not #define'd in 'probe_com_cfg.h' "
#endif
#ifndef PROBE_TCPIP_TASK_STK_SIZE
#error "PROBE_TCPIP_TASK_STK_SIZE not #define'd in 'probe_com_cfg.h' "
#endif
#ifndef PROBE_TCPIP_RX_BUF_SIZE
#error "PROBE_TCPIP_RX_BUF_SIZE not #define'd in 'probe_com_cfg.h' "
#endif
#ifndef PROBE_TCPIP_TX_BUF_SIZE
#error "PROBE_TCPIP_TX_BUF_SIZE not #define'd in 'probe_com_cfg.h' "
#endif
#ifndef PROBE_TCPIP_PORT
#error "PROBE_TCPIP_PORT not #define'd in 'probe_com_cfg.h' "
#endif
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?