610f4f5d73
* targets/api-hal: rework documentation in doxygen style * core/api-hal: rework documentation in doxygen style * core/furi: rework documentation in doxygen style * drivers: rework documentation in doxygen style Co-authored-by: あく <alleteam@gmail.com>
20 lines
268 B
C
20 lines
268 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <api-hal-resources.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Initialize vibro */
|
|
void api_hal_vibro_init();
|
|
|
|
/** Turn on/off vibro */
|
|
void api_hal_vibro_on(bool value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|