Update NEWS
This commit is contained in:
parent
0d1b49a4e4
commit
dab99c0823
14
NEWS
14
NEWS
|
@ -72,6 +72,20 @@ Changes since version 7.0:
|
||||||
void (*enable)(PROGRAMMER *pgm, const AVRPART *p) #1078
|
void (*enable)(PROGRAMMER *pgm, const AVRPART *p) #1078
|
||||||
- Make avr910 programmer initialize() less verbose #1083
|
- Make avr910 programmer initialize() less verbose #1083
|
||||||
- Fix flash paged write for avrftdi.c #1074
|
- Fix flash paged write for avrftdi.c #1074
|
||||||
|
- Fix 4 parts wrt to their interfaces in avrdude.conf; rewrite
|
||||||
|
avrdude.conf.in file from avrdude -c* -p* output; reformat
|
||||||
|
conditional programmers in avrdude.conf.in using -c*; fix
|
||||||
|
reset=dedicated|io; entries #1086
|
||||||
|
- Add prog_modes, a bitwise or of prgramming modes, to part and
|
||||||
|
programmer definitions; add to part definition
|
||||||
|
+ mcuid, a unique id in 0..2039 for 8-bit AVR
|
||||||
|
+ n_interrupts, the number of interrupts
|
||||||
|
+ n_page_erase, if set, the # of pages erased for NVM erase
|
||||||
|
implement a simple calculator in config_gram.y for numeric
|
||||||
|
values; set part prog_modes, mcuid, n_interrupts and
|
||||||
|
n_page_erase in avrdude.conf.in; add external intelligence
|
||||||
|
about AVRs avrintel.[ch] to the project and warn during
|
||||||
|
parsing if mcuid is incompatible with it #1091
|
||||||
|
|
||||||
* Internals:
|
* Internals:
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* Atmel AVR8L, AVR8, XMEGA and AVR8X family description of interrupts and more
|
* Atmel AVR8L, AVR8, XMEGA and AVR8X family description of interrupts and more
|
||||||
*
|
*
|
||||||
* published under GNU General Public License, version 3 (GPL-3.0)
|
* published under GNU General Public License, version 3 (GPL-3.0)
|
||||||
* meta-author Stefan Rueger
|
* meta-author: Stefan Rueger <stefan.rueger@urclocks.com>
|
||||||
*
|
*
|
||||||
* v 1.1
|
* v 1.1
|
||||||
* 30.08.2022
|
* 30.08.2022
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
* Atmel AVR8L, AVR8, XMEGA and AVR8X family description of interrupts and more
|
* Atmel AVR8L, AVR8, XMEGA and AVR8X family description of interrupts and more
|
||||||
*
|
*
|
||||||
* published under GNU General Public License, version 3 (GPL-3.0)
|
* published under GNU General Public License, version 3 (GPL-3.0)
|
||||||
* meta-author Stefan Rueger
|
* meta-author Stefan Rueger <stefan.rueger@urclocks.com>
|
||||||
*
|
*
|
||||||
* v 1.1
|
* v 1.1
|
||||||
* 30.08.2022
|
* 30.08.2022
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* avrdude - A Downloader/Uploader for AVR device programmers
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
||||||
* Copyright (C) 2022, Stefan Rueger <smr@theblueorange.space>
|
* Copyright (C) 2022, Stefan Rueger <stefan.rueger@urclocks.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* avrdude - A Downloader/Uploader for AVR device programmers
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
||||||
* Copyright (C) 2022, Stefan Rueger <smr@theblueorange.space>
|
* Copyright (C) 2022, Stefan Rueger <stefan.rueger@urclocks.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* avrdude - A Downloader/Uploader for AVR device programmers
|
* avrdude - A Downloader/Uploader for AVR device programmers
|
||||||
* Copyright (C) 2022, Stefan Rueger <smr@theblueorange.space>
|
* Copyright (C) 2022, Stefan Rueger <stefan.rueger@urclocks.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
Loading…
Reference in New Issue