aboutsummaryrefslogtreecommitdiffstats
path: root/drv_D4D.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_D4D.c')
-rwxr-xr-xdrv_D4D.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drv_D4D.c b/drv_D4D.c
index bbfeea3..f29de52 100755
--- a/drv_D4D.c
+++ b/drv_D4D.c
@@ -116,7 +116,7 @@ static void drv_D4D_receive_ACK()
static void drv_D4D_send_nowait(const char *data, const unsigned int len)
{
- if (len > 1 && data[0] >= 32 && data[0] <= 127)
+ if (len > 1 && data[0] >= 32 && data[0] < 127)
debug("drv_D4D_send_nowait('%c'", data[0]);
drv_generic_serial_write(data, len);
}