X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/c77b30e9e6069c893b8461e104e7893762ed81a7..2a2de8fea94d2a524e988725585b17746cd30dba:/Projects/XPLAINBridge/Lib/SoftUART.c 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)