mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
23 lines
396 B
C
23 lines
396 B
C
/*
|
|
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
#ifndef __BTC_ALARM_H__
|
|
#define __BTC_ALARM_H__
|
|
|
|
#include <stdint.h>
|
|
#include "osi/alarm.h"
|
|
|
|
/* btc_alarm_args_t */
|
|
typedef struct {
|
|
osi_alarm_callback_t cb;
|
|
void *cb_data;
|
|
} btc_alarm_args_t;
|
|
|
|
void btc_alarm_handler(btc_msg_t *msg);
|
|
|
|
#endif /* __BTC_ALARM_H__ */
|