aboutsummaryrefslogtreecommitdiff
path: root/drivers/wiznet5k
AgeCommit message (Collapse)Author
2019-12-13drivers/wiznet5k: Allow selecting maximum fixed buffer size for MACRAW.Damien George
Enabling WIZCHIP_USE_MAX_BUFFER will make the TX/RX buffers the maximum available size, for use with MACRAW mode.
2018-06-01drivers/wiznet5k: Fix bug with MACRAW socket calculating packet size.Damien George
2017-10-16drivers/wiznet5k: Get low-level W5500 driver working.Damien George
This patch implements the basic SPI read/write functions for the W5500 chip. It also allows _WIZCHIP_ to be configured externally to select the specific Wiznet chip.
2017-10-16drivers/wiznet5k: Improve the performance of socket ops with threading.Li Weiwei
Use MICROPY_THREAD_YIELD() instead of HAL_Delay in busy waiting to improve the performance of connect, send, recv, sento and recvfrom.
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
There were several different spellings of MicroPython present in comments, when there should be only one.
2016-07-11drivers/wiznet5k: Fix indentation so it's not misleading.Damien George
Otherwise gcc 6.1.1 raises a misleading-indentation error.
2014-12-04drivers, wiznet5k: Add socket_reset; fix orderly shutdown in recv.Damien George
2014-09-30drivers, wiznet5k: Wrap exported functions in a macro for renaming.Damien George
3rd party drivers should not export generic names like "close".
2014-09-01stmhal: Add wiznet5k module, to control WIZnet ethernet adaptor.Damien George
Allows to create socket objects that support TCP and UDP in server and client mode. Interface is very close to standard Python socket class, except bind and accept do not work the same (due to hardware not supporting them in the usual way). Not compiled by default. To compile this module, use: make MICROPY_PY_WIZNET5K=1
2014-09-01drivers, wiznet5k: Make DNS service use HAL sys tick.Damien George
2014-09-01drivers, wiznet5k: Add HAL_Delay(1) to "infinite" loops.Damien George
2014-09-01drivers, wiznet5k: Properly fix ARP bug with W5200 chipset.Damien George
2014-09-01drivers, wiznet5k: Add W5200 support.Damien George
2014-09-01drivers, wiznet5k: Change SPI interface to read/write multiple bytes.Damien George
2014-09-01drivers, wiznet5k: Fix IP addr verification.Damien George
2014-09-01drivers: Initial import of WIZnet5x000 driver.Damien George