24 lines
447 B
C
24 lines
447 B
C
|
/*
|
||
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2010-03-22 Bernard first version
|
||
|
*/
|
||
|
#ifndef __FINSH_ERROR_H__
|
||
|
#define __FINSH_ERROR_H__
|
||
|
|
||
|
#include <finsh.h>
|
||
|
|
||
|
int finsh_error_init(void);
|
||
|
|
||
|
/* get error number */
|
||
|
uint8_t finsh_errno(void);
|
||
|
|
||
|
int finsh_error_set(uint8_t type);
|
||
|
const char* finsh_error_string(uint8_t type);
|
||
|
|
||
|
#endif
|