Socket APIs
|
These are basic input/output functions to read values from register or write values to register. More...
Functions | |
uint16_t | WIZCHIP_READ (uint32_t AddrSel) |
It reads 1 byte value from a register. More... | |
void | WIZCHIP_WRITE (uint32_t AddrSel, uint16_t wb) |
It writes 1 byte value to a register. More... | |
void | wiz_send_data (uint8_t sn, uint8_t *wizdata, uint32_t len) |
It copies data to internal TX memory. More... | |
void | wiz_recv_data (uint8_t sn, uint8_t *wizdata, uint32_t len) |
It copies data to your buffer from internal RX memory. More... | |
void | wiz_recv_ignore (uint8_t sn, uint32_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
uint16_t WIZCHIP_READ | ( | uint32_t | AddrSel | ) |
It reads 1 byte value from a register.
- Parameters
-
AddrSel Register address
- Returns
- The value of register
void WIZCHIP_WRITE | ( | uint32_t | AddrSel, |
uint16_t | wb | ||
) |
It writes 1 byte value to a register.
- Parameters
-
AddrSel Register address wb Write data
- Returns
- void
void wiz_send_data | ( | uint8_t | sn, |
uint8_t * | wizdata, | ||
uint32_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
-
(uint8_t)sn Socket number. It should be 0 ~ 7. wizdata Pointer buffer to write data len Data length
- See also
- wiz_recv_data()
void wiz_recv_data | ( | uint8_t | sn, |
uint8_t * | wizdata, | ||
uint32_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
-
(uint8_t)sn Socket number. It should be 0 ~ 7. wizdata Pointer buffer to read data len Data length
- See also
- wiz_send_data()
void wiz_recv_ignore | ( | uint8_t | sn, |
uint32_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)sn Socket number. It should be 0 ~ 7. len Data length
Generated on Wed May 4 2016 16:44:00 for Socket APIs by 1.8.9.1