From 7802282906aa5ef63d943733ab124a3820bb1130 Mon Sep 17 00:00:00 2001 From: hg Date: Thu, 5 Jun 2014 21:00:27 +0200 Subject: [PATCH] fix tx --- src/main.cpp | 2 +- src/uart.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e64b37b..4608656 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -46,7 +46,7 @@ int main() { uartWrite('W'); while (1) { -// __bis_status_register(LPM0_bits); + __bis_status_register(LPM0_bits); } } diff --git a/src/uart.cpp b/src/uart.cpp index af22e11..7902061 100644 --- a/src/uart.cpp +++ b/src/uart.cpp @@ -78,7 +78,7 @@ void uartWrite(uint8_t o) { } enableDataRegisterEmptyInterrupt(); - _realUartTx(); + // _realUartTx(); #endif }