📄 avr.h
字号:
/* * avrdude - A Downloader/Uploader for AVR device programmers * Copyright (C) 2000-2004 Brian S. Dean <bsd@bsdhome.com> * * 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. * * 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-1307 USA *//* $Id: avr.h,v 1.31 2004/12/22 01:52:45 bdean Exp $ */#ifndef __avr_h__#define __avr_h__#include <stdio.h>#include "avrpart.h"#include "pgm.h"extern struct avrpart parts[];int avr_read_byte(PROGRAMMER * pgm, AVRPART * p, AVRMEM * mem, unsigned long addr, unsigned char * value);int avr_read(PROGRAMMER * pgm, AVRPART * p, char * memtype, int size, int verbose);int avr_write_page(PROGRAMMER * pgm, AVRPART * p, AVRMEM * mem, unsigned long addr);int avr_write_byte(PROGRAMMER * pgm, AVRPART * p, AVRMEM * mem, unsigned long addr, unsigned char data);int avr_write(PROGRAMMER * pgm, AVRPART * p, char * memtype, int size, int verbose);int avr_signature(PROGRAMMER * pgm, AVRPART * p);int avr_verify(AVRPART * p, AVRPART * v, char * memtype, int size);int avr_get_cycle_count(PROGRAMMER * pgm, AVRPART * p, int * cycles);int avr_put_cycle_count(PROGRAMMER * pgm, AVRPART * p, int cycles);;int avr_mem_hiaddr(AVRMEM * mem);int avr_chip_erase(PROGRAMMER * pgm, AVRPART * p);extern void report_progress (int completed, int total, char *hdr);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -