SVM_NETWORK_UPDATE
This structure defines parameters used for performing a network update of the Smart Vision Module (SVM). It includes network type selection, server IP address, and file name for the update package.
BYTE# |
Field Name |
Data Type |
Value |
Remarks |
|---|---|---|---|---|
0 |
|
|
0 ~ 1 |
Network type selection |
1 |
|
|
IP address of the TFTP or SAMBA server. |
|
17 |
|
|
File name of the SVM update package. |
Total size: 273 bytes
Defined in: DRFS.h
typedef struct _SVM_NETWORK_UPDATE
{
/* ttfp: 0, samba: 1 */
unsigned char _iNetType;
/* tftp server Ip address */
char _szIpAddress[16];
/* file name */
char _szFileName[MAX_STRING_SIZE];
} SVM_NETWORK_UPDATE, *LPSVM_NETWORK_UPDATE;