You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
278 B
22 lines
278 B
4 months ago
|
#ifndef __TASK_ERRMGR_H__
|
||
|
#define __TASK_ERRMGR_H__
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
No_Err = 0,
|
||
|
No_PD_PHY = 1,
|
||
|
} e_err_type;
|
||
|
|
||
|
extern e_err_type err;
|
||
|
|
||
|
void errmgr_init(void);
|
||
|
void errmgr_run(void);
|
||
|
|
||
|
#endif
|
||
|
|