netfinder.h

来自「实现了C8051F340单片机依据HTTP协议传输数据」· C头文件 代码 · 共 42 行

H
42
字号
//-----------------------------------------------------------------------------
// netfinder.h
//-----------------------------------------------------------------------------
// Copyright 2006 Silicon Laboratories, Inc.
//
// Description:
// 	This file contains user defined constants used by the TCP/IP Stack.
//
// Generated by TCP/IP Library Builder Version 3.1

//-----------------------------------------------------------------------------
// User Configurable Settings
//-----------------------------------------------------------------------------

#define NETFINDER_PORT        3040              // Defines the UDP port assigned
                                                // to the Netfinder protocol

// Customization Strings:
// These strings will be displayed on the front panel of the Netfinder 
// application. Add quotes ("") around the string, but do not add a semicolon
// at the end of the line. STRING_A and STRING_B describe the embedded system.
// STRING_C and STRING_D describe the first and second events.
#define STRING_A "Netfinder Device Name"
#define STRING_B "Enter Text Description"
#define STRING_C "Time Powered"
#define STRING_D "Time on Network"

//-----------------------------------------------------------------------------
// Function Prototypes
//-----------------------------------------------------------------------------
extern int netfinder_start(void);             
extern int netfinder_process_packet(void);
extern void netfinder_update_RTC(void);
extern void netfinder_reset_event1(void);
extern void netfinder_reset_event2(void);

//-----------------------------------------------------------------------------
// Global Variables
//-----------------------------------------------------------------------------
extern int netfinder_socketno;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?