You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2019/12/12 18:52:23 UTC

[mynewt-core] branch master updated: Remove restriction in syscfg to define bitbang RX pin - code allows to use it in tx only mode

This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 0329e2b  Remove restriction in syscfg to define bitbang RX pin - code allows to use it in tx only mode
0329e2b is described below

commit 0329e2b244305a342fc8719f56040638509c41b9
Author: Brian Wyld <br...@wyres.fr>
AuthorDate: Thu Dec 12 11:48:39 2019 +0100

    Remove restriction in syscfg to define bitbang RX pin - code allows to use it in tx only mode
---
 hw/drivers/uart/uart_bitbang/syscfg.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/drivers/uart/uart_bitbang/syscfg.yml b/hw/drivers/uart/uart_bitbang/syscfg.yml
index 1328876..a024622 100644
--- a/hw/drivers/uart/uart_bitbang/syscfg.yml
+++ b/hw/drivers/uart/uart_bitbang/syscfg.yml
@@ -28,5 +28,5 @@ syscfg.defs:
         value: -1
 
 syscfg.restrictions:
-    - UARTBB_0_PIN_TX >= 0 && UARTBB_0_PIN_RX >= 0
+    - UARTBB_0_PIN_TX >= 0
     - CONSOLE_UART_BAUD <= 19200