Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 73e387c

Browse files
Li-Weiweidpgeorge
authored andcommitted
drivers/wiznet5k: Improve the performance of socket ops with threading.
Use MICROPY_THREAD_YIELD() instead of HAL_Delay in busy waiting to improve the performance of connect, send, recv, sento and recvfrom.
1 parent 5c43796 commit 73e387c

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

drivers/wiznet5k/ethernet/socket.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,9 @@
5252

5353
#include <string.h>
5454

55+
#include "py/mpthread.h"
5556
#include "socket.h"
5657

57-
extern void HAL_Delay(uint32_t);
58-
5958
#define SOCK_ANY_PORT_NUM 0xC000;
6059

6160
static uint16_t sock_any_port = SOCK_ANY_PORT_NUM;
@@ -242,7 +241,7 @@ int8_t WIZCHIP_EXPORT(connect)(uint8_t sn, uint8_t * addr, uint16_t port)
242241
#endif
243242
return SOCKERR_TIMEOUT;
244243
}
245-
HAL_Delay(1);
244+
MICROPY_THREAD_YIELD();
246245
}
247246
#if _WIZCHIP_ == 5200 // for W5200 ARP errata
248247
setSUBR((uint8_t*)"\x00\x00\x00\x00");
@@ -317,6 +316,7 @@ int32_t WIZCHIP_EXPORT(send)(uint8_t sn, uint8_t * buf, uint16_t len)
317316
}
318317
if( (sock_io_mode & (1<<sn)) && (len > freesize) ) return SOCK_BUSY;
319318
if(len <= freesize) break;
319+
MICROPY_THREAD_YIELD();
320320
}
321321
wiz_send_data(sn, buf, len);
322322
#if _WIZCHIP_ == 5200
@@ -368,7 +368,7 @@ int32_t WIZCHIP_EXPORT(recv)(uint8_t sn, uint8_t * buf, uint16_t len)
368368
}
369369
if((sock_io_mode & (1<<sn)) && (recvsize == 0)) return SOCK_BUSY;
370370
if(recvsize != 0) break;
371-
HAL_Delay(1);
371+
MICROPY_THREAD_YIELD();
372372
};
373373
if(recvsize < len) len = recvsize;
374374
wiz_recv_data(sn, buf, len);
@@ -416,7 +416,7 @@ int32_t WIZCHIP_EXPORT(sendto)(uint8_t sn, uint8_t * buf, uint16_t len, uint8_t
416416
if(getSn_SR(sn) == SOCK_CLOSED) return SOCKERR_SOCKCLOSED;
417417
if( (sock_io_mode & (1<<sn)) && (len > freesize) ) return SOCK_BUSY;
418418
if(len <= freesize) break;
419-
HAL_Delay(1);
419+
MICROPY_THREAD_YIELD();
420420
};
421421
wiz_send_data(sn, buf, len);
422422

@@ -446,7 +446,7 @@ int32_t WIZCHIP_EXPORT(sendto)(uint8_t sn, uint8_t * buf, uint16_t len, uint8_t
446446
return SOCKERR_TIMEOUT;
447447
}
448448
////////////
449-
HAL_Delay(1);
449+
MICROPY_THREAD_YIELD();
450450
}
451451
#if _WIZCHIP_ == 5200 // for W5200 ARP errata
452452
setSUBR((uint8_t*)"\x00\x00\x00\x00");
@@ -486,6 +486,7 @@ int32_t WIZCHIP_EXPORT(recvfrom)(uint8_t sn, uint8_t * buf, uint16_t len, uint8_
486486
if(getSn_SR(sn) == SOCK_CLOSED) return SOCKERR_SOCKCLOSED;
487487
if( (sock_io_mode & (1<<sn)) && (pack_len == 0) ) return SOCK_BUSY;
488488
if(pack_len != 0) break;
489+
MICROPY_THREAD_YIELD();
489490
};
490491
}
491492
sock_pack_info[sn] = PACK_COMPLETED;

0 commit comments

Comments
 (0)