File: ChangeLog

package info (click to toggle)
simulavr 1.0.0%2Bgit20160221.e53413b-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,748 kB
  • sloc: cpp: 35,491; python: 6,991; ansic: 3,567; makefile: 1,072; sh: 653; asm: 414; tcl: 320
file content (279 lines) | stat: -rw-r--r-- 10,359 bytes parent folder | download | duplicates (2)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
2009-05-22	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/feedback.tcl: Improve comment.
	* feedback/main.c: Write to UART1.
	* feedback/uart.c: Fix constant.

2009-05-19	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/debugio.c, feedback/debugio.h, feedback/defines.h,
	feedback/feedback.tcl, feedback/main.c, feedback/uart.c: Add use of
	USART1.

2009-05-18	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in: Search for shared library in current directory. This
	allows you to create a simple standalone kit.

2009-05-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/main.c, feedback/simfeedback.tcl.in: Add exit command to ui
	interpreter. This allows external feedback to shutdown the AVR
	simulation. This should be useful for automated testing.

2009-05-08	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am: Add example of using ATMega128 timer.
	* atmega128_timer/.cvsignore, atmega128_timer/Makefile.am,
	atmega128_timer/README, atmega128_timer/debugio.c,
	atmega128_timer/debugio.h, atmega128_timer/main.c: New files.

2009-05-07	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/debugio.c, feedback/main.c, feedback/uart.c,
	feedback/uart.h: Switch from polled to interrupt driven serial IO. Do
	some minor clean up.

2009-05-05	Knut Schwichtenberg <kschwi@web.de>

	* anacomp/main.c: Fix comments and clean up.

2009-04-22	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/simfeedback.tcl.in: Analog values are now mostly multiples
	of 10.

2009-04-21	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/feedback.tcl, feedback/main.c, feedback/simfeedback.tcl.in:
	Now sample ADC0-7 and print them on a single line. Feedback rotates
	value through them.

2009-04-20	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in: If feedback filename is "-", then assume the user
	will be explicitly starting a feedback program.
	* feedback/README: New file.

2009-04-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/Makefile.am, feedback/feedback.tcl, feedback/main.c,
	feedback/simfeedback.tcl.in: Improve and add support for changing
	ADC0 based upon the data seen on UART0.
	* feedback/adc.c: New file.

2009-04-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in: Whether you are doing an external GUI or system
	feedback, you do need the simulator's UI module enabled.

2009-04-10	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/debugio.c, feedback/feedback.tcl, feedback/main.c,
	feedback/simfeedback.tcl.in, feedback/uart.c: Improve feedback
	example so it prints no debug output and correctly displays three
	lines of hello world in the feedback window.

2009-04-10	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in: Fix algorithm for computation of cpu cycle time.

2009-04-07	Joel Sherrill <joel.sherrill@oarcorp.com>

	* feedback/feedback.tcl, feedback/main.c, feedback/simfeedback.tcl.in,
	feedback/uart.c: Clean up so others can review and help.

2009-03-31	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in, feedback/feedback.tcl, simple_ex1/Makefile.am: Fix
	typos reported on mailing list.

2009-03-27	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, simulavr.tcl.in: Add new test to demonstrate how one can
	externally generate feedback with a program running on the simulator
	without having a GUI. This is the foundation for system level
	testing.
	* feedback/.cvsignore, feedback/Makefile.am, feedback/debugio.c,
	feedback/debugio.h, feedback/defines.h, feedback/feedback.tcl,
	feedback/main.c, feedback/simfeedback.tcl.in, feedback/uart.c,
	feedback/uart.h: New files.

2009-03-26	Michael N. Moran <mike@mnmoran.org>

	Patch 4609
	* Makefile.am: Add new atmega48 example.
	* atmega48/Makefile.am, atmega48/Makefile.notauto, atmega48/README,
	atmega48/anadata1, atmega48/anadata2, atmega48/anadata3,
	atmega48/atmega48.tcl, atmega48/check.tcl.in, atmega48/main.cpp,
	atmega48/spidata: New files.

2009-03-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in, spi/Makefile.am, spi/spi.tcl: system clock and cpu
	instance are now available at CPU extension invocation. spi does not
	use a gui.

2009-03-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* spi/Makefile.am: spi now runs with only a warning about spsr not
	writable.

2009-03-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* spi/Makefile.am: Fix typo that prevented make do from working.

2009-03-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/Makefile.am, atmel_key/Makefile.am, simple_ex1/Makefile.am,
	spi/Makefile.am, stdiodemo/Makefile.am: Clean up Makefiles. Add
	spi.tcl.
	* spi/spi.tcl: New file.

2009-03-26	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simulavr.tcl.in, anacomp/Makefile.am, spi/Makefile.am: spi example
	not working but broken in same way using check.tcl and new Tcl
	Simulavr framework.
	* spi/Makefile.notauto: New file.

2009-03-25	Joel Sherrill <joel.sherrill@oarcorp.com>

	* .cvsignore, gui.tcl.in, anacomp/Makefile.am, anacomp/checkdebug.py,
	anacomp/main.c, atmel_key/Makefile.am, simple_ex1/Makefile.am,
	stdiodemo/Makefile.am: Add shared framework simulavr.tcl. Switch some
	of the tests to providing a support file and using the shared Tcl
	framework.
	* simulavr.tcl.in, anacomp/anacomp.tcl, atmel_key/atmel_key.tcl,
	stdiodemo/stdiodemo.tcl: New files.
	* anacomp/check.tcl.in, anacomp/checkdebug.gdb,
	anacomp/checkdebug.tcl.in, atmel_key/Makefile.notauto,
	atmel_key/checkdebug.gdb, atmel_key/checkdebug.tcl.in,
	stdiodemo/Makefile.notauto: Removed.

2009-03-23	Michael N. Moran <mike@mnmoran.org>

	* Makefile.am: Add spi example.
	* spi/.cvsignore, spi/Makefile.am, spi/README, spi/anadata,
	spi/check.tcl.in, spi/main.cpp, spi/spidata: New files.
2009-03-16	Joel Sherrill <joel.sherrill@oarcorp.com>

	* atmel_key/.cvsignore, stdiodemo/.cvsignore: Adding files which were
	missed when you build in the source tree.

2009-03-16	Joel Sherrill <joel.sherrill@oarcorp.com>

	* ChangeLog, Makefile.am: Fix buglet where it did not build inside the
	source tree.

2009-03-16	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am: Fix buglet where it

2009-03-16	Knut Schwichtenberg <kschwi@web.de>

	PR 25875/TestSuite
	* gui.tcl.in, anacomp/checkdebug.tcl.in, stdiodemo/Makefile.am,
	stdiodemo/checkdebug.gdb, stdiodemo/checkdebug.tcl.in: stdiodemo did
	not work. Fix issues in gui.tcl.

2009-03-16	Knut Schwichtenberg <kschwi@web.de>

	PR 25878/Simulation
	* Makefile.am, gui.tcl.in, atmel_key/Makefile.am,
	atmel_key/checkdebug.gdb: Get atmel_key example working. Knut did the
	dirty work. Joel did the autoconf follow up.
	* kbd.xbm, atmel_key/checkdebug.tcl.in: New files.
	* atmel_key/debug.gdb, atmel_key/kbd.xbm: Removed.

2009-03-13	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/README, anacomp/checkdebug.py, anacomp/main.c,
	atmel_key/Makefile.notauto, atmel_key/Notes.txt, atmel_key/StdDefs.c,
	atmel_key/StdDefs.h, atmel_key/kb.c, atmel_key/kb.h,
	atmel_key/main.c, atmel_key/pindefs.h, atmel_key/scancodes.h,
	atmel_key/serial.c, atmel_key/serial.h, stdiodemo/Makefile.notauto,
	stdiodemo/checkdebug.gdb, stdiodemo/checkdebug.tcl.in,
	stdiodemo/stdiodemo.dox: Add CVS Id and make spacing consistent at
	the end of the header comment block. In some .h files moved the
	inclusion protection ifdef to after the header comment block to be
	consistent with most of the .h files.

2009-03-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/Makefile.am: make dist appears to put the correct set of
	files in the tarball.

2009-03-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, atmel_key/.cvsignore, stdiodemo/.cvsignore: Add
	autotools Makefile.am. Builds but I have no way to ensure either
	example works. I have left the non-autotools
	* stdiodemo/Makefile.am: New file.

2009-03-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am, atmel_key/.cvsignore: Add autotools Makefile.am. Builds
	but I have no way to test.
	* atmel_key/Makefile.am: New file.

2009-03-11	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/Makefile.am, simple_ex1/Makefile.am: make dist now produces a
	tarball which compiles completely.

2009-03-10	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/.cvsignore, simple_ex1/.cvsignore: Use /usr/lib/tclConfig.sh
	if available. Build a static libsim.a which contains the non-Tcl
	dependent source for the shared library and the simulavr executable.
	This avoids the simulavr executable being dependent on Tcl at all.

2009-03-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* .cvsignore, anacomp/.cvsignore, atmel_key/.cvsignore,
	simple_ex1/.cvsignore, stdiodemo/.cvsignore: New files.

2009-03-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* simple_ex1/fred.c: Clean up. Make this echo the entire string.

2009-03-09	Joel Sherrill <joel.sherrill@oarcorp.com>

	* anacomp/Makefile.am, simple_ex1/Makefile.am: Add trace to CLEANFILES.
	* Makefile.in, anacomp/Makefile.in, simple_ex1/Makefile.in: Removed.
	These files are generated by bootstrap.

2009-03-05	Joel Sherrill <joel.sherrill@oarcorp.com>

	* Makefile.am: Add configure argument --disable-tcl and attempt to
	detect if tcl.h is not available. If it is not available, then

2009-03-04	Joel Sherrill <joel.sherrill@oarcorp.com>

	* stdiodemo/README: Move non-autoconf Makefiles to Makefile.notauto so
	it is VERY clear.
	* atmel_key/README, stdiodemo/.cvsignore: New files.

2009-03-03	Knut Schwichtenberg <kschwi@web.de>

	* atmel_key/AppNotePCATKeyboardInterface.pdf, atmel_key/Makefile.am,
	atmel_key/Notes.txt, atmel_key/StdDefs.c, atmel_key/StdDefs.h,
	atmel_key/checkdebug.gdb, atmel_key/debug.gdb, atmel_key/kb.c,
	atmel_key/kb.h, atmel_key/kbd.xbm, atmel_key/main.c,
	atmel_key/pindefs.h, atmel_key/scancodes.h, atmel_key/serial.c,
	atmel_key/serial.h: New files.

2009-03-03	Knut Schwichtenberg <kschwi@web.de>

	* anacomp/.cvsignore, anacomp/checkdebug.tcl.in: Merge stdiodemo
	example. Use DDD_WITH_ARGS to avoid invoking ddd when it
	* ChangeLog, anacomp/checkdebug.gdb, stdiodemo/Makefile.am,
	stdiodemo/README, stdiodemo/checkdebug.gdb,
	stdiodemo/checkdebug.tcl.in, stdiodemo/defines.h,
	stdiodemo/hd44780.c, stdiodemo/hd44780.h, stdiodemo/lcd.c,
	stdiodemo/lcd.h, stdiodemo/stdiodemo-setup.jpg,
	stdiodemo/stdiodemo.c, stdiodemo/stdiodemo.dox, stdiodemo/uart.c,
	stdiodemo/uart.h: New files.
	* anacomp/checkdebug.gdb.in: Removed.