mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-01 04:29:59 -07:00
* api-hal: add api-hal-vibro * cli: add vibro cli command * cli: add cli commands for led and disp backlight
12 lines
219 B
C
12 lines
219 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();
|
|
}
|