mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-22 12:08:54 +00:00
19 lines
438 B
C
19 lines
438 B
C
/**
|
|
****************************************************************************************
|
|
*
|
|
* @file uwifi_task.h
|
|
*
|
|
* @brief api of task related implementations
|
|
*
|
|
* Copyright (C) ASR
|
|
*
|
|
****************************************************************************************
|
|
*/
|
|
#ifndef _UWIFI_TASK_H_
|
|
#define _UWIFI_TASK_H_
|
|
|
|
#include "asr_rtos.h"
|
|
OSStatus init_uwifi(void);
|
|
OSStatus deinit_uwifi(void);
|
|
|
|
#endif //_UWIFI_TASK_H_
|