mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 10:58:54 +00:00
41 lines
691 B
C
41 lines
691 B
C
/**
|
|
* @file app_sr_fun.h
|
|
* @brief declaration of fuction in zigbee_fun.c
|
|
* @author
|
|
* @date 2020.03.13
|
|
* @par email:
|
|
* @copyright HANGZHOU TUYA INFORMATION TECHNOLOGY CO.,LTD
|
|
* @par company
|
|
* http://www.tuya.com
|
|
*/
|
|
|
|
#ifndef __APP_SR__FUN_H__
|
|
#define __APP_SR__FUN_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "rtthread.h"
|
|
#include <aic_core.h>
|
|
#include <aic_hal.h>
|
|
#include "rtconfig.h"
|
|
#ifndef ULOG_USING_SYSLOG
|
|
#include <ulog.h>
|
|
#else
|
|
#include <syslog.h>
|
|
#endif /* ULOG_USING_SYSLOG */
|
|
|
|
|
|
int speech_uart_int(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|