bluetooth control motor
Dependents: BLE_LED_IDB0XA1_demo MOTOR_BLE_V2 Motor_Ble_v1 Motor_Ble_v10223 ... more
Fork of X_NUCLEO_IDB0XA1 by
source/platform/ble_clock.c
- Committer:
- barry210110
- Date:
- 2018-02-04
- Revision:
- 309:492635ae323d
- Parent:
- 297:c26445716704
File content as of revision 309:492635ae323d:
#include "ble_clock.h" #ifdef YOTTA_CFG_MBED_OS #include "mbed-drivers/wait_api.h" #include "mbed-drivers/rtc_time.h" #else #include "wait_api.h" #include "rtc_time.h" #endif const uint32_t CLOCK_SECOND = 1000; /*---------------------------------------------------------------------------*/ void Clock_Init(void) { //Not Used } /*---------------------------------------------------------------------------*/ tClockTime Clock_Time(void) { return clock(); } /*---------------------------------------------------------------------------*/ /** * Wait for a multiple of 1 ms. * */ void Clock_Wait(uint32_t i) { wait_ms(i); } /*---------------------------------------------------------------------------*/