2f14f6dac5
* API HAL I2C: add timeout support. Update I2C API usage by drivers. * F4: Add missing API HAL Vibro implementation.
12 lines
285 B
C
12 lines
285 B
C
#include <api-hal-vibro.h>
|
|
#include <api-hal-gpio.h>
|
|
|
|
void api_hal_vibro_init() {
|
|
hal_gpio_init(&vibro_gpio, GpioModeOutputPushPull, GpioPullNo, GpioSpeedLow);
|
|
hal_gpio_write(&vibro_gpio, false);
|
|
}
|
|
|
|
void api_hal_vibro_on(bool value) {
|
|
hal_gpio_write(&vibro_gpio, value);
|
|
}
|