fix:Add LOS_SysDelay declaration.
Close #I3NT3Y Change-Id: I14a1edc3f9aa06cba28ad51a12f21f6fdcf14fd0
This commit is contained in:
parent
583d177de0
commit
9656d852ab
|
@ -1088,25 +1088,24 @@ extern UINT32 LOS_NewTaskIDGet(VOID);
|
|||
*/
|
||||
extern CHAR* LOS_TaskNameGet(UINT32 taskID);
|
||||
|
||||
|
||||
/* *
|
||||
* @ingroup los_hw
|
||||
* @brief: Function to determine whether task scheduling is required.
|
||||
* @ingroup los_task
|
||||
* @brief: cpu delay.
|
||||
*
|
||||
* @par Description:
|
||||
* This API is used to Judge and entry task scheduling.
|
||||
* This API is used to cpu delay, no task switching.
|
||||
*
|
||||
* @attention:
|
||||
* <ul><li>None.</li></ul>
|
||||
*
|
||||
* @param None.
|
||||
* @param ticks [IN] delay times.
|
||||
*
|
||||
* @retval: None.
|
||||
* @par Dependency:
|
||||
* <ul><li>los_hw.h: the header file that contains the API declaration.</li></ul>
|
||||
* <ul><li>los_task.h: the header file that contains the API declaration.</li></ul>
|
||||
* @see None.
|
||||
*/
|
||||
extern VOID LOS_Schedule(VOID);
|
||||
extern VOID LOS_SysDelay(UINT32 ticks);
|
||||
|
||||
/**
|
||||
* @ingroup los_cpup
|
||||
|
|
Loading…
Reference in New Issue