From e53e01625740eb5de501684ff7a913388c370696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Mon, 16 Dec 2013 05:50:51 +0000 Subject: [PATCH] fixed busy waiting loop for PSC3 used for PIC communication --- BaS_gcc/sources/BaS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaS_gcc/sources/BaS.c b/BaS_gcc/sources/BaS.c index a7ff73d..db0cfba 100644 --- a/BaS_gcc/sources/BaS.c +++ b/BaS_gcc/sources/BaS.c @@ -66,7 +66,7 @@ static inline bool pic_txready(void) if (MCF_PSC3_PSCSR & MCF_PSC_PSCSR_TXRDY) return true; - return true; + return false; } /*