1 /*
2  * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 
8 #ifndef __BTC_ALARM_H__
9 #define __BTC_ALARM_H__
10 
11 #include <stdint.h>
12 #include "osi/alarm.h"
13 
14 /* btc_alarm_args_t */
15 typedef struct {
16     osi_alarm_callback_t cb;
17     void *cb_data;
18 } btc_alarm_args_t;
19 
20 void btc_alarm_handler(btc_msg_t *msg);
21 
22 #endif /* __BTC_ALARM_H__ */
23