From 878d376ef02c247353176e480d60369bb08a1b74 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 16 Jun 2015 23:39:08 +0200 Subject: [PATCH] make embedded_get_time_ms and posix_get_time_ms private. (use run_loop_get_time_ms instead) --- include/btstack/run_loop.h | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/include/btstack/run_loop.h b/include/btstack/run_loop.h index 6212d98c3..e51df5dc7 100644 --- a/include/btstack/run_loop.h +++ b/include/btstack/run_loop.h @@ -142,12 +142,6 @@ uint32_t embedded_get_ticks(void); */ void embedded_set_ticks(uint32_t ticks); #endif -#if defined(HAVE_TICK) || defined(HAVE_TIME_MS) -/** - * @brief Queries the current time in ms - */ -uint32_t embedded_get_time_ms(void); -#endif #ifdef EMBEDDED /** * @brief Sets an internal flag that is checked in the critical section just before entering sleep mode. Has to be called by the interrupt handler of a data source to signal the run loop that a new data is available. @@ -160,13 +154,6 @@ void embedded_execute_once(void); #endif /* API_END */ -#ifdef HAVE_TIME -/** - * @brief Queries the current time in ms since start - */ -uint32_t posix_get_time_ms(void); -#endif - #if defined __cplusplus } #endif