huangcm
2025-07-03 a76b2fadf6ad4adf86e241e3753a63efe03ef80c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
*********************************************************************************************************
*                                                AR100 System
*                                     AR100 Software System Develop Kits
*                                               Debugger Module
*
*                                    (c) Copyright 2012-2016, Sunny China
*                                             All Rights Reserved
*
* File    : debugger_i.h
* By      : Sunny
* Version : v1.0
* Date    : 2012-5-3
* Descript: debugger internal header.
* Update  : date                auther      ver     notes
*           2012-5-3 17:15:39   Sunny       1.0     Create this file.
*********************************************************************************************************
*/
#ifndef __DEBUGGER_I_H__
#define __DEBUGGER_I_H__
 
#include "include.h"
 
#ifdef CFG_DEBUGGER_PRINTF
static s32 print_align(char *string, s32 len, s32 align);
static s32 print_current_time(void);
#endif
 
 
#endif /* __DEBUGGER_I_H__ */