aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/XPLAINBridge/Lib/SoftUART.c
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/XPLAINBridge/Lib/SoftUART.c')
-rw-r--r--Projects/XPLAINBridge/Lib/SoftUART.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Projects/XPLAINBridge/Lib/SoftUART.c b/Projects/XPLAINBridge/Lib/SoftUART.c
index 01f9b2e12..31b11c1cf 100644
--- a/Projects/XPLAINBridge/Lib/SoftUART.c
+++ b/Projects/XPLAINBridge/Lib/SoftUART.c
@@ -40,14 +40,14 @@ uint8_t SoftUART_IsReady(void)
return !(stx_count);
}
-uint8_t SoftUART_TxByte(uint8_t c)
+uint8_t SoftUART_TxByte(uint8_t Byte)
{
while (stx_count);
- stx_data = ~c;
+ stx_data = ~Byte;
stx_count = 10;
- return c;
+ return Byte;
}
uint8_t SoftUART_IsReceived(void)