dbg_common.h
来自「This a framework to test new ideas in tr」· C头文件 代码 · 共 53 行
H
53 行
/*************************************************************************** dbg.h - Interface to the /proc-filesystem ------------------- begin : 2002 authors : Linus Gasser emails : Linus.Gasser@epfl.ch ***************************************************************************//*************************************************************************** Changes ------- date - name - description 02-10-07 - ineiti - init 03-08-07 - ineiti - take out proc and replace by rtfifo... 04-06-07 - ineiti - update description... **************************************************************************//*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************//** * @short This is the interface to the debug-module. It is implemented * once for simulation and once for rf-mode. */#ifndef DBG_COMMON_H__#define DBG_COMMON_H__#include "system.h"#include "swr_types.h"#include "parameter_types.h"#define FIFO_SIZE 4096Uextern void *fifo_data;extern uint fifo_len;int setup_fifos( void );int destroy_fifos( void );void parse_command( char *cmd );#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?