mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-14 12:38:35 -07:00
* API HAL I2C: add timeout support. Update I2C API usage by drivers. * F4: Add missing API HAL Vibro implementation.
11 lines
218 B
C
11 lines
218 B
C
#include <api-hal.h>
|
|
|
|
void api_hal_init() {
|
|
api_hal_os_init();
|
|
api_hal_vcp_init();
|
|
api_hal_spi_init();
|
|
api_hal_i2c_init();
|
|
api_hal_power_init();
|
|
api_hal_light_init();
|
|
api_hal_vibro_init();
|
|
} |