You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/10/28 22:43:17 UTC

[3/5] incubator-mynewt-core git commit: native hal uart; shorten task name.

native hal uart; shorten task name.


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

Branch: refs/heads/develop
Commit: dc038cccf98940a8d59f9b0b27d533f6be15beed
Parents: 96b3f5f
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Fri Oct 28 14:11:41 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Oct 28 15:41:31 2016 -0700

----------------------------------------------------------------------
 hw/mcu/native/src/hal_uart.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/dc038ccc/hw/mcu/native/src/hal_uart.c
----------------------------------------------------------------------
diff --git a/hw/mcu/native/src/hal_uart.c b/hw/mcu/native/src/hal_uart.c
index eaf964d..1ac5b97 100644
--- a/hw/mcu/native/src/hal_uart.c
+++ b/hw/mcu/native/src/hal_uart.c
@@ -340,7 +340,7 @@ hal_uart_init_cbs(int port, hal_uart_tx_char tx_func, hal_uart_tx_done tx_done,
 
     if (!uart_poller_running) {
         uart_poller_running = 1;
-        rc = os_task_init(&uart_poller_task, "uart_poller", uart_poller, NULL,
+        rc = os_task_init(&uart_poller_task, "uartpoll", uart_poller, NULL,
           UART_POLLER_PRIO, OS_WAIT_FOREVER, uart_poller_stack,
           UART_POLLER_STACK_SZ);
         assert(rc == 0);