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

_iNetType

unsigned char

0 ~ 1

Network type selection
0: TFTP, 1: SAMBA

1

_szIpAddress

char[16]

IP address of the TFTP or SAMBA server.

17

_szFileName

char[256]

File name of the SVM update package.
The maximum string length is defined by MAX_STRING_SIZE.

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;