-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththread.h
More file actions
23 lines (19 loc) · 776 Bytes
/
thread.h
File metadata and controls
23 lines (19 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __THREAD_H
#define __THREAD_H
/*****************************************************************************
Copyright: 2016-2017, Firework.
File name: thread.h
Description: 此文件主要完成家庭网关系统按键录音上传和紧急呼叫功能。
Author: YU SHAO YANG
Version: 2.0
Date: 2016.05.15
History: 2016.04.30 修改函数名TEST为Voice_Thread,其他同前
2016.05.15 修改Voice_Thread函数,实现声音上传功能
修改Emergency_Thread_Level函数,实现紧急呼叫功能
*****************************************************************************/
void create_wav_thread(void);
void create_emergency_LV1(void);
void create_emergency_LV2(void);
void create_emergency_LV3(void);
int set_priority(const int pri);
#endif