38 lines
776 B
C
38 lines
776 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) Fenda Technologies Co., Ltd. 2020. All rights reserved.
|
|
*
|
|
* Description: debug_api.h
|
|
*
|
|
* Author: saimen
|
|
*
|
|
* Create: 2020-12-16
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef DEBUG_API_H
|
|
#define DEBUG_API_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
extern void debug_api_init (void);
|
|
extern void debug_api_deinit (void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|
|
|
|
//*****************************************************************************
|
|
//
|
|
// End Doxygen group.
|
|
//! @}
|
|
//
|
|
//*****************************************************************************
|