You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by st...@apache.org on 2015/11/17 20:52:53 UTC

incubator-mynewt-larva git commit: for now remove printf() on gpio value. will switch to logging interface eventually.

Repository: incubator-mynewt-larva
Updated Branches:
  refs/heads/master 8a5b1ba5c -> add35d612


for now remove printf() on gpio value.  will switch to logging interface eventually.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/commit/add35d61
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/tree/add35d61
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/diff/add35d61

Branch: refs/heads/master
Commit: add35d61250a4c719bc108b6107080a815905c64
Parents: 8a5b1ba
Author: Sterling Hughes <st...@apache.org>
Authored: Tue Nov 17 11:52:32 2015 -0800
Committer: Sterling Hughes <st...@apache.org>
Committed: Tue Nov 17 11:52:44 2015 -0800

----------------------------------------------------------------------
 hw/mcu/native/src/hal_gpio.c | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-larva/blob/add35d61/hw/mcu/native/src/hal_gpio.c
----------------------------------------------------------------------
diff --git a/hw/mcu/native/src/hal_gpio.c b/hw/mcu/native/src/hal_gpio.c
index 5e864de..98f7c8c 100644
--- a/hw/mcu/native/src/hal_gpio.c
+++ b/hw/mcu/native/src/hal_gpio.c
@@ -78,7 +78,6 @@ void gpio_write(int pin, int val)
         return;
     }
     hal_gpio[pin].val = (val != 0);
-    printf("GPIO %d is now %d\n", pin, val);
 }
 
 int