From c59817a62250f20bb5c8c7df2b4cddac81f603be Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Thu, 9 Feb 2017 13:48:08 -1000 Subject: [PATCH] px4esc-v1 bootloader Update for upstream NuttX up_timer_initialize changes up_timer_initialize became arm_timer_initialize --- nuttx-configs/px4esc-v1/src/ostubs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuttx-configs/px4esc-v1/src/ostubs.c b/nuttx-configs/px4esc-v1/src/ostubs.c index 4d0bb7a20a..48561d137c 100644 --- a/nuttx-configs/px4esc-v1/src/ostubs.c +++ b/nuttx-configs/px4esc-v1/src/ostubs.c @@ -150,7 +150,7 @@ void os_start(void) /* Initialize the OS's timer subsystem */ #if !defined(CONFIG_SUPPRESS_INTERRUPTS) && !defined(CONFIG_SUPPRESS_TIMER_INTS) && \ !defined(CONFIG_SYSTEMTICK_EXTCLK) - up_timer_initialize(); + arm_timer_initialize(); #endif /* Keep the compiler happy for a no return function */