diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/i18n/nl_nl.h | 7 | ||||
-rw-r--r-- | client/makefile | 2 | ||||
-rw-r--r-- | client/serial_linux.c | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/client/i18n/nl_nl.h b/client/i18n/nl_nl.h index 8caf1de..a2bbb47 100644 --- a/client/i18n/nl_nl.h +++ b/client/i18n/nl_nl.h @@ -59,6 +59,7 @@ #define W2_UI_ERROR_INT_W2_E_WARN_SERIAL_NOISY "W2_E_WARN_SERIAL_NOISY" #define W2_UI_ERROR_INT_W2_E_WARN_MODE_HISTORY_BUFFER_IOB "W2_E_WARN_MODE_HISTORY_BUFFER_IOB" #define W2_UI_ERROR_INT_W2_E_WARN_PING_TIMEOUT "W2_E_WARN_PING_TIMEOUT" +#define W2_UI_ERROR_INT_W2_E_INFO_ORDER_ARRIVED "W2_E_INFO_ORDER_ARRIVED" #define W2_UI_ERROR_USR_W2_E_UNKNOWN "onbekende error code" #define W2_UI_ERROR_USR_W2_E_CRIT_CONN_LOST "verbinding met de robot verloren" @@ -77,6 +78,7 @@ #define W2_UI_ERROR_USR_W2_E_WARN_SERIAL_NOISY "ongeldige seriele informatie gedetecteerd, (ruisend kanaal / controleer de verbinding?)" #define W2_UI_ERROR_USR_W2_E_WARN_MODE_HISTORY_BUFFER_IOB "mode geschiedenisbuffer index is buiten bereik" #define W2_UI_ERROR_USR_W2_E_WARN_PING_TIMEOUT "ping time-out" +#define W2_UI_ERROR_USR_W2_E_INFO_ORDER_ARRIVED "bij order locatie aangekomen" #define W2_UI_ORDER_CMD_HELP "help" #define W2_UI_ORDER_CMD_START "start" @@ -107,9 +109,12 @@ "1 - kies doolhof modus\n" \ "2 - kies grid modus\n" \ "3 - noodstop\n" \ - "4 - kies oplaad modus\n" \ + "4 - stel in op oplaad modus\n" \ "5 - natte vloer simulatie\n" \ "6 - calibreer sensoren\n" \ + "7 - doelgebied instelen op doolhof\n" \ + "8 - doelgebied instelen op grid\n" \ + "9 - doelgebied instelen op oplaadstation\n" \ "\n" \ "0 - vorige\n" \ diff --git a/client/makefile b/client/makefile index e72b585..d89c186 100644 --- a/client/makefile +++ b/client/makefile @@ -1,7 +1,7 @@ CC = gcc LD = gcc RM = rm -f -CFLAGS = -DW2_LANG_EN_US +CFLAGS = -DW2_LANG_NL_NL LDFLAGS = -lncursesw EXECNAME = main diff --git a/client/serial_linux.c b/client/serial_linux.c index 2497fac..0501cdf 100644 --- a/client/serial_linux.c +++ b/client/serial_linux.c @@ -67,6 +67,7 @@ int w2_serial_read() { } bool w2_serial_write(char *data, uint8_t length) { + usleep(1e3); return write(g_w2_serial_handle, data, length) == length; } |