comparison src/cs/services/vibr/vibr_api.h @ 294:e17bdedfbf2b

VIBR SWE initial implementation
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 27 Mar 2022 08:46:10 +0000
parents
children a927f030a4e0
comparison
equal deleted inserted replaced
293:2d7d95e7f9c2 294:e17bdedfbf2b
1 /*
2 * This header file defines the external API of our VIBR SWE,
3 * callable from other tasks such as UI or AT commands.
4 */
5
6 #ifndef __VIBR_API_H
7 #define __VIBR_API_H
8
9 #include "rv/rv_general.h"
10
11 #define VIBR_LEVEL_MAX 255
12
13 T_RV_RET vibr_pulse_train_start(UINT8 num_pulses, UINT8 vibr_level);
14 T_RV_RET vibr_pulse_train_stop(void);
15
16 #endif /* include guard */