From e05881352f0009ae28203d1bb3bb19ca5308bbcc 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 --- sources/BaS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/BaS.c b/sources/BaS.c index a7ff73d..db0cfba 100644 --- a/sources/BaS.c +++ b/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; } /*