X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/55db57e1ede3c44a3b027cb442fa12e969b37f4b..fc8e4837a936bb1b4bd19bdd54660878b3efe02c:/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)