WS63 SDK 文档 7021f4f@fbb_ws63
ws63 和 ws63e 解决方案的 SDK 文档
载入中...
搜索中...
未找到
oam_trace.h
浏览该文件的文档.
1/*
2 * Copyright (c) HiSilicon (Shanghai) Technologies Co., Ltd. 2021-2021. All rights reserved.
3 * Description: OAM TRACE for Suzhe BT Core
4 *
5 * Create: 2021-10-25
6 */
7
8#ifndef OAM_TRACE_H
9#define OAM_TRACE_H
10
11#include <stdint.h>
12#ifdef USE_CMSIS_OS
13#include "arch/exception.h"
14#endif
15
16#include "stdbool.h"
17
18#ifdef __cplusplus
19#if __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22#endif /* __cplusplus */
23
24bool is_valid_txt_addr(uint32_t pc);
25
29void register_os_exec_hook(void);
30
31#ifdef USE_CMSIS_OS
37void exec_fault_handler(uint32_t exc_type, const ExcContext *exc_buff_addr);
38#endif
39
40#ifdef __cplusplus
41#if __cplusplus
42extern "C" {
43#endif /* __cplusplus */
44#endif /* __cplusplus */
45
46#endif
bool is_valid_txt_addr(uint32_t pc)
Definition oam_trace.c:27
void exec_fault_handler(uint32_t exc_type, const ExcContext *exc_buff_addr)
Invoked by exception to dump exception information.
Definition oam_trace.c:101
void register_os_exec_hook(void)
Rigister Exception handle function.
Definition oam_trace.c:124