mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2025-08-04 21:44:38 +08:00
Revert "Try to implement platform-independent keypressed()"
This reverts commit a0d7b01186ffaba8369d2b5f2e50275ae03af96b. The new 'keypressed()' wasn't platform-independent but broke the win32 port. Signed-off-by: Simon Goldschmidt <goldsimon@gmx.de>
This commit is contained in:
parent
a0d7b01186
commit
7c10065bd2
@ -86,16 +86,6 @@
|
||||
|
||||
#include "default_netif.h"
|
||||
|
||||
static u8_t
|
||||
keypressed(void)
|
||||
{
|
||||
struct timeval tv = { 0L, 0L };
|
||||
fd_set fds;
|
||||
FD_ZERO(&fds);
|
||||
FD_SET(0, &fds);
|
||||
return select(1, &fds, NULL, NULL, &tv);
|
||||
}
|
||||
|
||||
#if NO_SYS
|
||||
/* ... then we need information about the timer intervals: */
|
||||
#include "lwip/ip4_frag.h"
|
||||
@ -117,6 +107,10 @@ keypressed(void)
|
||||
/* include the port-dependent configuration */
|
||||
#include "lwipcfg.h"
|
||||
|
||||
#ifndef LWIP_EXAMPLE_APP_ABORT
|
||||
#define LWIP_EXAMPLE_APP_ABORT() 0
|
||||
#endif
|
||||
|
||||
/** Define this to 1 to enable a port-specific ethernet interface as default interface. */
|
||||
#ifndef USE_DEFAULT_ETH_NETIF
|
||||
#define USE_DEFAULT_ETH_NETIF 1
|
||||
@ -663,7 +657,7 @@ main_loop(void)
|
||||
#endif
|
||||
|
||||
/* MAIN LOOP for driver update (and timers if NO_SYS) */
|
||||
while (!keypressed()) {
|
||||
while (!LWIP_EXAMPLE_APP_ABORT()) {
|
||||
#if NO_SYS
|
||||
/* handle timers (already done in tcpip.c when NO_SYS=0) */
|
||||
sys_check_timeouts();
|
||||
|
@ -74,4 +74,8 @@ void sys_arch_netconn_sem_free(void);
|
||||
#define LWIP_NETCONN_THREAD_SEM_ALLOC() sys_arch_netconn_sem_alloc()
|
||||
#define LWIP_NETCONN_THREAD_SEM_FREE() sys_arch_netconn_sem_free()
|
||||
|
||||
#define LWIP_EXAMPLE_APP_ABORT() lwip_win32_keypressed()
|
||||
int lwip_win32_keypressed(void);
|
||||
|
||||
#endif /* LWIP_ARCH_SYS_ARCH_H */
|
||||
|
||||
|
@ -732,6 +732,28 @@ sys_arch_netconn_sem_free(void)
|
||||
|
||||
#endif /* !NO_SYS */
|
||||
|
||||
/* get keyboard state to terminate the debug app on any kbhit event using win32 API */
|
||||
int
|
||||
lwip_win32_keypressed(void)
|
||||
{
|
||||
INPUT_RECORD rec;
|
||||
DWORD num = 0;
|
||||
HANDLE h = GetStdHandle(STD_INPUT_HANDLE);
|
||||
BOOL ret = PeekConsoleInput(h, &rec, 1, &num);
|
||||
if (ret && num) {
|
||||
ReadConsoleInput(h, &rec, 1, &num);
|
||||
if (rec.EventType == KEY_EVENT) {
|
||||
if (rec.Event.KeyEvent.bKeyDown) {
|
||||
/* not a special key? */
|
||||
if (rec.Event.KeyEvent.uChar.AsciiChar != 0) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
/* This is an example implementation for LWIP_PLATFORM_DIAG:
|
||||
|
Loading…
x
Reference in New Issue
Block a user