⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ioreg.h

📁 avrrice软件用于AVR单片机的JTAG调试.
💻 H
字号:
/* *	avarice - The "avarice" program. *	Copyright (C) 2003, 2004 James Harris * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License Version 2 *      as published by the Free Software Foundation. * *	This program is distributed in the hope that it will be useful, *	but WITHOUT ANY WARRANTY; without even the implied warranty of *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *	GNU General Public License for more details. * *	You should have received a copy of the GNU General Public License *	along with this program; if not, write to the Free Software *	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. * * This file contains IO Register definitions for use with avr-gdb's 'info * io_register' command. * * $Id: ioreg.h,v 1.4 2004/05/26 22:03:31 troth Exp $ */#ifndef INCLUDE_IOREG_H#define INCLUDE_IOREG_H#define IO_REG_RSE    0x01    // IO register has read side effecttypedef struct {    const char* name;    const unsigned char reg_addr;    const unsigned char flags;} gdb_io_reg_def_type;extern gdb_io_reg_def_type atmega16_io_registers[];extern gdb_io_reg_def_type atmega162_io_registers[];extern gdb_io_reg_def_type atmega169_io_registers[];extern gdb_io_reg_def_type atmega32_io_registers[];#endif /* INCLUDE_IOREG_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -