Socket APIs: Basic I/O function

Wiznet Socket API

Basic I/O function

These are basic input/output functions to read values from register or write values to register. More...

Functions

uint8_t WIZCHIP_READ (uint32_t AddrSel)
 It reads 1 byte value from a register. More...
 
void WIZCHIP_WRITE (uint32_t AddrSel, uint8_t wb)
 It writes 1 byte value to a register. More...
 
void WIZCHIP_READ_BUF (uint32_t AddrSel, uint8_t *pBuf, uint16_t len)
 It reads sequence data from registers. More...
 
void WIZCHIP_WRITE_BUF (uint32_t AddrSel, uint8_t *pBuf, uint16_t len)
 It writes sequence data to registers. More...
 
void wiz_send_data (uint8_t sn, uint8_t *wizdata, uint16_t len)
 It copies data to internal TX memory. More...
 
void wiz_recv_data (uint8_t sn, uint8_t *wizdata, uint16_t len)
 It copies data to your buffer from internal RX memory. More...
 
void wiz_recv_ignore (uint8_t sn, uint16_t len)
 It discard the received data in RX memory. More...
 

Detailed Description

These are basic input/output functions to read values from register or write values to register.

Function Documentation

uint8_t WIZCHIP_READ ( uint32_t  AddrSel)

It reads 1 byte value from a register.

Parameters
AddrSelRegister address
Returns
The value of register
void WIZCHIP_WRITE ( uint32_t  AddrSel,
uint8_t  wb 
)

It writes 1 byte value to a register.

Parameters
AddrSelRegister address
wbWrite data
Returns
void
void WIZCHIP_READ_BUF ( uint32_t  AddrSel,
uint8_t *  pBuf,
uint16_t  len 
)

It reads sequence data from registers.

Parameters
AddrSelRegister address
pBufPointer buffer to read data
lenData length
void WIZCHIP_WRITE_BUF ( uint32_t  AddrSel,
uint8_t *  pBuf,
uint16_t  len 
)

It writes sequence data to registers.

Parameters
AddrSelRegister address
pBufPointer buffer to write data
lenData length
void wiz_send_data ( uint8_t  sn,
uint8_t *  wizdata,
uint16_t  len 
)

It copies data to internal TX memory.

This function reads the Tx write pointer register and after that, it copies the wizdata(pointer buffer) of the length of len(variable) bytes to internal TX memory and updates the Tx write pointer register. This function is being called by send() and sendto() function also.

Parameters
snSocket number. It should be 0 ~ _WIZCHIP_SOCK_NUM_.
wizdataPointer buffer to write data
lenData length
See also
wiz_recv_data()
void wiz_recv_data ( uint8_t  sn,
uint8_t *  wizdata,
uint16_t  len 
)

It copies data to your buffer from internal RX memory.

This function read the Rx read pointer register and after that, it copies the received data from internal RX memory to wizdata(pointer variable) of the length of len(variable) bytes. This function is being called by recv() also.

Parameters
snSocket number. It should be 0 ~ _WIZCHIP_SOCK_NUM_.
wizdataPointer buffer to read data
lenData length
See also
wiz_send_data()
void wiz_recv_ignore ( uint8_t  sn,
uint16_t  len 
)

It discard the received data in RX memory.

It discards the data of the length of len(variable) bytes in internal RX memory.

Parameters
(uint8_t)snSocket number. It should be 0 ~ _WIZCHIP_SOCK_NUM_.
lenData length
Generated on Wed May 4 2016 16:44:00 for Socket APIs by   doxygen 1.8.9.1