You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by je...@apache.org on 2020/10/22 06:26:40 UTC

[mynewt-core] branch master updated: remove timer 4 initialisation from loraping

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

jerzy 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 42f71c4  remove timer 4 initialisation from loraping
42f71c4 is described below

commit 42f71c43407f3227ec411f55eb901641587ad50d
Author: J. Ipanienko <j....@mexicomail.com>
AuthorDate: Sun Jul 12 13:38:38 2020 -0700

    remove timer 4 initialisation from loraping
    
    Timer is inited and never used and some BSP dont have timer 4.
---
 apps/loraping/src/main.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/apps/loraping/src/main.c b/apps/loraping/src/main.c
index 28ae433..85c507f 100644
--- a/apps/loraping/src/main.c
+++ b/apps/loraping/src/main.c
@@ -223,8 +223,6 @@ main(void)
 
     sysinit();
 
-    hal_timer_config(4, 1000000);
-
     /* Radio initialization. */
     radio_events.TxDone = on_tx_done;
     radio_events.RxDone = on_rx_done;