From 6be3fa8d5f172aa2fe20e4bd93cd11ca4443eea1 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Thu, 2 Feb 2017 11:48:40 +0000 Subject: Replaced uppercase TRUE/FALSE. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10081 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/ports/simulator/posix/hal_serial_lld.c | 28 +++++++++++++-------------- os/hal/ports/simulator/win32/hal_serial_lld.c | 28 +++++++++++++-------------- 2 files changed, 28 insertions(+), 28 deletions(-) (limited to 'os/hal') diff --git a/os/hal/ports/simulator/posix/hal_serial_lld.c b/os/hal/ports/simulator/posix/hal_serial_lld.c index 8ef404850..e4792fa8c 100755 --- a/os/hal/ports/simulator/posix/hal_serial_lld.c +++ b/os/hal/ports/simulator/posix/hal_serial_lld.c @@ -116,7 +116,7 @@ static bool connint(SerialDriver *sdp) { socklen_t addrlen = sizeof(addr); if ((sdp->com_data = accept(sdp->com_listen, &addr, &addrlen)) == -1) - return FALSE; + return false; #if 0 if (ioctl(sdp->com_data, FIONBIO, &nb) != 0) { @@ -133,9 +133,9 @@ static bool connint(SerialDriver *sdp) { osalSysLockFromISR(); chnAddFlagsI(sdp, CHN_CONNECTED); osalSysUnlockFromISR(); - return TRUE; + return true; } - return FALSE; + return false; abort: if (sdp->com_listen != -1) close(sdp->com_listen); @@ -161,22 +161,22 @@ static bool inint(SerialDriver *sdp) { osalSysLockFromISR(); chnAddFlagsI(sdp, CHN_DISCONNECTED); osalSysUnlockFromISR(); - return FALSE; + return false; case -1: if (errno == EWOULDBLOCK) - return FALSE; + return false; close(sdp->com_data); sdp->com_data = -1; - return FALSE; + return false; } for (i = 0; i < n; i++) { osalSysLockFromISR(); sdIncomingDataI(sdp, data[i]); osalSysUnlockFromISR(); } - return TRUE; + return true; } - return FALSE; + return false; } static bool outint(SerialDriver *sdp) { @@ -192,7 +192,7 @@ static bool outint(SerialDriver *sdp) { n = sdRequestDataI(sdp); osalSysUnlockFromISR(); if (n < 0) - return FALSE; + return false; data[0] = (uint8_t)n; n = send(sdp->com_data, data, sizeof(data), 0); switch (n) { @@ -202,17 +202,17 @@ static bool outint(SerialDriver *sdp) { osalSysLockFromISR(); chnAddFlagsI(sdp, CHN_DISCONNECTED); osalSysUnlockFromISR(); - return FALSE; + return false; case -1: if (errno == EWOULDBLOCK) - return FALSE; + return false; close(sdp->com_data); sdp->com_data = -1; - return FALSE; + return false; } - return TRUE; + return true; } - return FALSE; + return false; } /*===========================================================================*/ diff --git a/os/hal/ports/simulator/win32/hal_serial_lld.c b/os/hal/ports/simulator/win32/hal_serial_lld.c index 2c70348b4..031450e67 100644 --- a/os/hal/ports/simulator/win32/hal_serial_lld.c +++ b/os/hal/ports/simulator/win32/hal_serial_lld.c @@ -103,7 +103,7 @@ static bool connint(SerialDriver *sdp) { int addrlen = sizeof(addr); if ((sdp->com_data = accept(sdp->com_listen, &addr, &addrlen)) == INVALID_SOCKET) - return FALSE; + return false; if (ioctlsocket(sdp->com_data, FIONBIO, &nb) != 0) { printf("%s: Unable to setup non blocking mode on data socket\n", sdp->com_name); @@ -112,9 +112,9 @@ static bool connint(SerialDriver *sdp) { chSysLockFromISR(); chnAddFlagsI(sdp, CHN_CONNECTED); chSysUnlockFromISR(); - return TRUE; + return true; } - return FALSE; + return false; abort: if (sdp->com_listen != INVALID_SOCKET) closesocket(sdp->com_listen); @@ -141,22 +141,22 @@ static bool inint(SerialDriver *sdp) { chSysLockFromISR(); chnAddFlagsI(sdp, CHN_DISCONNECTED); chSysUnlockFromISR(); - return FALSE; + return false; case SOCKET_ERROR: if (WSAGetLastError() == WSAEWOULDBLOCK) - return FALSE; + return false; closesocket(sdp->com_data); sdp->com_data = INVALID_SOCKET; - return FALSE; + return false; } for (i = 0; i < n; i++) { chSysLockFromISR(); sdIncomingDataI(sdp, data[i]); chSysUnlockFromISR(); } - return TRUE; + return true; } - return FALSE; + return false; } static bool outint(SerialDriver *sdp) { @@ -172,7 +172,7 @@ static bool outint(SerialDriver *sdp) { n = sdRequestDataI(sdp); chSysUnlockFromISR(); if (n < 0) - return FALSE; + return false; data[0] = (uint8_t)n; n = send(sdp->com_data, (char *)data, sizeof(data), 0); switch (n) { @@ -182,17 +182,17 @@ static bool outint(SerialDriver *sdp) { chSysLockFromISR(); chnAddFlagsI(sdp, CHN_DISCONNECTED); chSysUnlockFromISR(); - return FALSE; + return false; case SOCKET_ERROR: if (WSAGetLastError() == WSAEWOULDBLOCK) - return FALSE; + return false; closesocket(sdp->com_data); sdp->com_data = INVALID_SOCKET; - return FALSE; + return false; } - return TRUE; + return true; } - return FALSE; + return false; } /*===========================================================================*/ -- cgit v1.2.3