-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathChangeLog-2002
1293 lines (892 loc) · 42.9 KB
/
ChangeLog-2002
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2002-12-31 Joerg Wunsch <[email protected]>
* include/stdio.h: add fgetc().
* libc/stdio/Makefile.am: Ditto.
* libc/stdio/clearerr.c: add __SEOF.
* libc/stdio/feof.c: Ditto.
* libc/stdio/fgetc.c: add unget functionality, fix a blatant bug
that caused and char except \0 to return EOF.
* libc/stdio/fgets.c: use getc() instead of stream->get().
* libc/stdio/fread.c: Ditto.
* libc/stdio/stdio_private.h: add ungetc() stuff, activate __SEOF.
2002-12-28 Joerg Wunsch <[email protected]>
* doc/api/using-tools.doc: explain side-effects of -ffreestanding.
* include/stdio.h: add fread() and fwrite().
* libc/stdio/Makefile.am: Ditto.
* libc/stdio/fread.c: New file.
* libc/stdio/fwrite.c: New file.
2002-12-26 Joerg Wunsch <[email protected]>
* include/stdio.h: include declarations for basic
input functions.
* libc/stdio/Makefile.am: include the new files below.
* libc/stdio/stdio_private.h: activate the __SERR flag.
* libc/stdio/clearerr.c: New file.
* libc/stdio/feof.c: New file.
* libc/stdio/ferror.c: New file.
* libc/stdio/fgetc.c: New file.
* libc/stdio/fgets.c: New file.
* libc/stdio/getc.S: New file.
* libc/stdio/getchar.c: New file.
* libc/stdio/gets.c: New file.
2002-12-26 Joerg Wunsch <[email protected]>
* libc/stdio/fdevopen.c: don't clobber flags when
opening a stream for reading and writing.
* libc/stdio/fputc.c: check __SWR before writing.
* libc/stdio/fputs.c: check __SWR before writing,
call stream->put() directly.
* libc/stdio/fputs_p.c: Ditto.
* libc/stdio/puts.c: Ditto.
* libc/stdio/puts_p.c: Ditto.
2002-12-24 Joerg Wunsch <[email protected]>
* libm/fplib/readme.atan2: remove now unrelated file.
2002-12-23 Joerg Wunsch <[email protected]>
* include/avr/iom163.h: UBRRH -> UBRRHI.
2002-12-22 Joerg Wunsch <[email protected]>
* libc/stdio/fputs.c: New file.
* libc/stdio/fputs_p.c: Ditto.
* libc/stdio/putc.S: Ditto.
* libc/stdio/putchar.c: Ditto.
* libc/stdio/puts.c: Ditto.
* libc/stdio/puts_p.c: Ditto.
* include/stdio.h: document fputs*(), putc*(), puts*().
* libc/stdio/Makefile.am: include new files.
2002-12-22 Joerg Wunsch <[email protected]>
* libm/fplib/atan.S: completely rewritten, much better accuracy.
* libm/fplib/atan2.S: completely rewritten;
both contributed by Reiner Patommel.
2002-12-22 Joerg Wunsch <[email protected]>
* libm/fplib/fplib.inc: add FPPUSH, FPPOP, FPCLR, and FPSWAP
macros; contributed by Reiner Patommel.
2002-12-18 Joerg Wunsch <[email protected]>
* doc/examples/twitest/twitest.c: TWI example, new file.
* doc/examples/twitest/twitest.dox: TWI example, docs.
* doc/examples/twitest/Makefile: TWI example, sample makefile.
* doc/api/doxygen.config.in: include twitest.
* doc/examples/Makefile.am: include twitest.
2002-12-18 Joerg Wunsch <[email protected]>
* include/avr/iom163.h: add bit definitions for TWSR.
* include/avr/iom323.h: ditto.
2002-12-18 Joerg Wunsch <[email protected]>
* include/avr/twi.h: add some more useful macros.
2002-12-17 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: add Eric's entry about relocating code to a
fixed address.
2002-12-17 Joerg Wunsch <[email protected]>
* doc/api/using-tools.dox: add an anchor used in the FAQ.
2002-12-17 Theodore A. Roth <[email protected]>
* include/inttypes.h: Added more dox, since doxygen isn't generating
them by default anymore.
2002-12-17 Joerg Wunsch <[email protected]>
* include/avr/wdt.h: fix typo.
2002-12-17 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* include/avr/iom169.h: Revert premature patch (from Joerg's work in
progress).
2002-12-16 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/faq.dox: Fix broken link where doxygen tried to xref to
"main()" when it should not.
2002-12-16 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: add entry about effect of -Ox.
2002-12-15 Joerg Wunsch <[email protected]>
* include/avr/wdt.h: Document, invent symbolic timeout constants.
* doc/TODO: delete wdt.h.
2002-12-15 Joerg Wunsch <[email protected]>
* doc/TODO: update per mailing list discussion.
2002-12-14 Joerg Wunsch <[email protected]>
* include/avr/iom169.h: fix typo.
2002-12-13 Joerg Wunsch <[email protected]>
* doc/api/main_page.dox: fix typo, remove non-existent tiny10.
2002-12-12 Joerg Wunsch <[email protected]>
* include/math.h: document isnan() and isinf().
2002-12-12 Joerg Wunsch <[email protected]>
* include/*: add CVS Ids (where missing).
2002-12-11 Joerg Wunsch <[email protected]>
* libc/string/strstr.S: complete fixed rewrite, thanks to
Philip Soeberg.
2002-12-11 Joerg Wunsch <[email protected]>
* libm/fplib/asin.S: complete rewrite, kudos to Reiner Patommel.
2002-12-09 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
2002-12-09 Joerg Wunsch <[email protected]>
* libm/fplib/isinfnan.S: micro-optimize.
2002-12-08 Joerg Wunsch <[email protected]>
* libm/fplib/sqrt.S: move the detection of 0 earlier [Bug #1837].
2002-12-08 Joerg Wunsch <[email protected]>
* libc/stdio/vfprintf.c: recognize Inf and NaN.
2002-12-08 Joerg Wunsch <[email protected]>
* include/math.h: add isinf()/isnan().
* libc/fplib/Makefile.am: ditto.
* libc/fplib/isinfnan.S: new file.
2002-12-06 Joerg Wunsch <[email protected]>
* include/avr/iom128.h: fix defs for CS0[012].
2002-12-06 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am: Generate a time-stamp file after fixing png's
and anchors to inhibit unnecessary fixes. [Bug #1808]
2002-12-03 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/main_page.dox: Remove untested note from mega32.
2002-11-27 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* configure.in: Add missing ".o" to "crtm8535".
2002-11-26 Theodore A. Roth <[email protected]>
* NEWS: Note support for new devices (mega32, mega64, mega8515,
mega8535).
* configure.in: Add support for new megas.
* doc/TODO: Remove note about new mega header files.
* doc/api/main_page.dox: Add note about new megas.
2002-11-26 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am: Fix bad anchors.
2002-11-26 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: add section about external RAM.
2002-11-26 Joerg Wunsch <[email protected]>
* doc/api/assembler.dox: New file.
* doc/api/Makefile.am: use assembler.dox.
* doc/api/inline_asm.dox: refer to assembler.dox.
* doc/api/interrupts.dox: Ditto.
2002-11-26 Joerg Wunsch <[email protected]>
* include/stdlib.h: fix typos.
2002-11-25 Theodore A. Roth <[email protected]>
(Thanks to Steinar Haugen <[email protected]> for contributing the iom32.h,
iom64.h, iom8515.h and iom8535.h files.)
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* include/avr/iom128.h: Reformat.
* include/avr/iom32.h: New file.
* include/avr/iom64.h: New file.
* include/avr/iom8515.h: New file.
* include/avr/iom8535.h: New file.
2002-11-25 Joerg Wunsch <[email protected]>
* doc/TODO: remove obsolete entries.
2002-11-25 Joerg Wunsch <[email protected]>
* include/math.h: document.
2002-11-25 Joerg Wunsch <[email protected]>
* include/ctype.h: remove a wrong comment.
2002-11-25 Joerg Wunsch <[email protected]>
* include/inttypes.h: make -mint8 aware.
2002-11-24 Joerg Wunsch <[email protected]>
* Makefile.am: enable libprintf_flt.a.
* include/stdio.h: explain floating point printf().
* libc/stdio/Makefile.am: enable libprintf_flt.a.
* libc/stdio/stdio_private.h: define values for PRINTF_LEVEL.
* libc/stdio/vfprintf.c: implement optional floating point support.
2002-11-24 Joerg Wunsch <[email protected]>
* libc/stdlib/ctype.S: cleanup empty comments.
* libc/stdlib/ctype.S: add CVS Id.
* libc/stdlib/ctype.S: rename cty_is* into __ctype_is*.
* libc/stdlib/ctype.S: ispunct(): encapsulate func. calls using _U().
2002-11-19 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* configure.in: Don't recurse into doc dir while building unless
"--enable-doc is passed to configure. This allows a default build to
bypass building the docs, but still allows the user to cd into the doc
dir and build the docs if they feel lucky. Do you feel lucky, punk?
2002-11-18 Theodore A. Roth <[email protected]>
* libc/string/memcmp.S: Add note about unsigned nature of compare.
2002-11-18 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/inline_asm.dox: Update URL for project.
Remove link to Rich Neswold's document since it is now (mostly) merged
in with avr-libc.
* doc/api/main_page.dox: Update URL for project.
Update avr-libc-dev list address.
Add note about avr-gcc mailing list.
2002-11-17 Joerg Wunsch <[email protected]>
* doc/examples/demo/Makefile: Use -j .text -j .data for avr-objcopy.
* doc/examples/demo/demo.dox: Ditto.
2002-11-16 Theodore A. Roth <[email protected]>
* doc/api/faq.dox: Add \code and \endcode around example. D'oh!
* doc/api/using-tools.dox: Use \verbatim instead of <code>.
* include/avr/pgmspace.h: Put both #includes in a single \code statement.
2002-11-16 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/faq.dox: Fix broken subject headers (doxygen-1.2.18 doesn't
like them being bold when generating ps or pdf).
Change \subsection to \section since doxygen-1.2.18 handles it properly
now.
New FAQ entry for arrays of strings in rom.
* doc/api/inline_asm.dox: Change \subsection to \section since
doxygen-1.2.18 handles it properly now.
* doc/api/malloc.dox: Ditto.
* doc/api/sections.dox: Ditto.
* doc/api/tools-install.dox: Ditto.
* doc/examples/demo/demo.dox: Ditto.
* doc/api/using-tools.dox: Ditto.
Change <h3> headings to \subsection's.
2002-11-12 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/TODO: Add note about missing io*.h files.
* doc/api/main_page.dox: Update notes for at94K and at76c711.
* include/avr/io.h: Include existing io76c711.h file.
2002-11-12 Theodore A. Roth <[email protected]>
[thanks to Juergen Schilling <[email protected]>]
* include/avr/iom169.h: Fix interrupt vector defs.
Remove duplicate PINE defs.
Add PING defs.
2002-11-12 Theodore A. Roth <[email protected]>
* avr-libc.spec.in: Add --enable-doc to configure command.
2002-11-11 Theodore A. Roth <[email protected]>
* configure.in: Add --enable-doc option and disable building of docs
as the default.
* doc/TODO: Remove note about sleep api.
* doc/api/Makefile.am: Remove sending error to /dev/null since that
confuses windows systems.
2002-11-11 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* include/avr/eeprom.h (eeprom_read_byte): New function, replaces
eeprom_rb.
(eeprom_read_word): New function, replaces eeprom_rw.
(eeprom_write_byte): New function, replaces eeprom_wb.
(eeprom_read_block): Change interface to take pointer to eeprom addr.
(eeprom_rb): Deprecate and make macro to eeprom_read_byte.
(eeprom_rw): Deprecate and make macro to eeprom_read_word.
(eeprom_rw): Deprecate and make macro to eeprom_write_byte.
* libc/misc/ee_rb.S: L_eeprom_rb -> L_eeprom_read_byte.
* libc/misc/ee_rw.S: L_eeprom_rw -> L_eeprom_read_word.
* libc/misc/ee_wb.S: L_eeprom_wb -> L_eeprom_write_byte.
* libc/misc/eeprom.S: Convert to use new interfaces.
2002-11-10 Theodore A. Roth <[email protected]>
* doc/api/Makefile.am (fix_png): Gracefully handle missing USER_MANUAL
directory.
Fix spelling mistake.
* include/avr/iom8.h: Fix copy/paste error in TWAR reg bit defs.
2002-11-09 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* eeprom.h: Formatting and punctuation changes.
2002-11-08 Theodore A. Roth <[email protected]>
* doc/examples/demo/Makefile: Remove png transparency fix-up since it's
done later anyways.
2002-11-08 Theodore A. Roth <[email protected]>
* doc/INSTALL: Add note about reconf and autoconf/automake.
2002-11-08 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* include/avr/iom169.h: Fix typo in UCSR0A register bit def.
2002-11-08 Joerg Wunsch <[email protected]>
* include/setjmp.h: make -mint8 proof.
2002-11-05 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* include/avr/iom8.h: Sync up with latest datasheet (2486H-AVR-09/02).
2002-11-04 Theodore A. Roth <[email protected]>
* doc/api/Makefile.am: Fix all pngs to have proper transparency.
2002-11-04 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/TODO: Updated.
* include/avr/sleep.h: New file.
* include/avr/sfr_defs.h: Fix spelling in dox comments.
2002-10-31 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/examples/demo/Makefile: Set eeprom base addr to 0x0.
2002-10-30 Joerg Wunsch <[email protected]>
* doc/api/malloc.dox: fix typo.
2002-10-30 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am: Make `make demo` less likely to fail.
2002-10-30 Theodore A. Roth <[email protected]>
* doc/api/dox.css: Change default html colors.
* doc/api/dox_html_header: Don't spec body bgcolor.
2002-10-29 Joerg Wunsch <[email protected]>
* doc/api/malloc.dox: Fix the fix.
2002-10-29 Joerg Wunsch <[email protected]>
* doc/api/malloc.dox: Make the addresses used consistent.
* doc/api/malloc-x*.fig: Ditto.
2002-10-28 Theodore A. Roth <[email protected]>
* doc/api/malloc-std.fig: Make figs more consistent.
* doc/api/malloc-x1.fig: Make figs more consistent.
* doc/api/malloc-x2.fig: Make figs more consistent.
* doc/api/malloc.dox: Grammar and spelling fixups.
2002-10-28 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* configure.in: Fix typo.
Update my email address.
Add CHECK_PNG_UTILS.
* doc/api/Makefile.am: Add png and eps files to clean list.
Add transparency to png images.
* doc/examples/demo/Makefile: Add transparency to png images.
2002-10-28 Theodore A. Roth <[email protected]>
* doc/api/Makefile.am: Use png instead of gif images.
* doc/api/malloc.dox: Ditto.
2002-10-27 Joerg Wunsch <[email protected]>
* doc/api/malloc*.fig: Improve pictures.
* doc/api/malloc.dox: fix LaTeX pic widths.
2002-10-26 Joerg Wunsch <[email protected]>
* doc/api/malloc.dox: Include some pictures.
* doc/api/Makefile.am: pictures' infrastructure.
* doc/api/doxygen.conf.in: pictures' infrastructure.
* doc/api/malloc*.fig: picture sources.
2002-10-25 Joerg Wunsch <[email protected]>
* doc/api/malloc.dox: Explain malloc details.
* include/stdlib.h: refer to malloc explanation.
* doc/api/Makefile.am: include malloc.dox.
* doc/api/sections.dox: refer to malloc explanation.
2002-10-22 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* avr-libc.spec.in: Require doxygen >= 1.2.16 for build.
2002-10-20 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* reconf: Make compatible with RedHat-8.0 autotools.
2002-10-19 Joerg Wunsch <[email protected]>
* include/stdlib.h: make doxygen work.
2002-10-17 Joerg Wunsch <[email protected]>
* libc/stdio/vfprintf.c: implement %p.
* include/stdio.h: document %p.
2002-10-16 Joerg Wunsch <[email protected]>
* Makefile.am: add hooks for libprintf_*.a.
* libc/stdio/Makefile.am: ditto.
* libc/stdio/vfprintf.c: add printf levels.
2002-10-16 Joerg Wunsch <[email protected]>
* configure.in libc/Makefile.am: wire stdio
into the infrastructure.
* include/stdio.h: new file.
* libc/stdio/Makefile.am: new file.
* libc/stdio/fclose.c: new file.
* libc/stdio/fdevopen.c: new file.
* libc/stdio/fprintf.c: new file.
* libc/stdio/fprintf_p.c: new file.
* libc/stdio/fputc.c: new file.
* libc/stdio/printf.c: new file.
* libc/stdio/printf_p.c: new file.
* libc/stdio/snprintf.c: new file.
* libc/stdio/snprintf_p.c: new file.
* libc/stdio/sprintf.c: new file.
* libc/stdio/sprintf_p.c: new file.
* libc/stdio/stdio_private.h: new file.
* libc/stdio/vfprintf.c: new file.
2002-10-16 Joerg Wunsch <[email protected]>
* include/stdlib.h: fix rand() & Co.
* libc/stdlib/rand.c: fix rand() & Co.
* libc/stdlib/random.c: New file.
2002-10-16 Joerg Wunsch <[email protected]>
* include/avr/ina90.h include/avr/pgmspace.h:
Move __LPM & Co from ina90.h to pgmspace.h
2002-10-13 Theodore A. Roth <[email protected]>
* avr-libc.spec.in: Added docs subpackage for user manual.
Dropped avr-gcc version to 3.2.75 to allow snapshots.
* configure.in: Bumped version and made it rpm compatible.
* doc/Makefile.am (EXTRA_DIST): Removed register-usage.txt.
* doc/TODO: Updated.
2002-10-12 Joerg Wunsch <[email protected]>
* libc/stdlib/calloc.c: new file.
* include/stdlib.h libc/stdlib/Makefile.am: add calloc().
2002-10-11 Theodore A. Roth <[email protected]>
* include/errno.h: Add dox.
* include/stdlib.h: Add xref to errno.
2002-10-11 Theodore A. Roth <[email protected]>
* doc/api/main_page.dox: Updated.
2002-10-11 Theodore A. Roth <[email protected]>
* include/string.h: Add note about flash based strings.
* include/avr/pgmspace.h: Add note about ram based strings.
2002-10-11 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am (DEMO_LIBS): Only grab the first lib found.
2002-10-10 Theodore A. Roth <[email protected]>
* doc/TODO: Removed ctype.h.
* include/ctype.h: Add dox comments.
2002-10-10 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/acknowledge.dox: Add cross references.
2002-10-08 Joerg Wunsch <[email protected]>
* doc/api/using-tools.dox: New file.
* doc/examples/demo/demo.dox: Change title.
* doc/api/faq.dox: describe register usage.
* doc/register-usage.txt: file gone, it's in the
FAQ now.
* doc/api/Makefile.am: wire the new using-tools.dox
into the make infrastructure.
2002-10-07 Joerg Wunsch <[email protected]>
* doc/examples/demo/demo.fig: Introduce R2.
* doc/examples/demo/demo.dox: Document R2.
2002-10-04 Theodore A. Roth <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Bump version.
* doc/api/faq.dox: Add io port passing entry.
2002-10-03 Joerg Wunsch <[email protected]>
* doc/examples/demo/demo.dox: Fix Ted's FIXME.
2002-10-01 Theodore A. Roth <[email protected]>
* doc/TODO: Updated.
* doc/api/Makefile.am: Add using-avrprog.dox.
* doc/api/tools-install.dox: Add ref to using-avrprog.dox.
* doc/api/using-avrprog.dox: New file.
2002-10-01 Marek Michalkiewicz <[email protected]>
* include/avr/iom163.h: Add SIG_COMPARATOR, fix SIG_2WIRE_SERIAL.
* include/avr/iotn26.h: New file, from
Stefan Swanepoel <[email protected]>.
* doc/api/main_page.dox: Add attiny26 as supported.
* NEWS: Add tiny26 to new device list.
* configure.in (AM_INIT_AUTOMAKE): Bump version.
(AVR_CRT_TINY): Add crttn26.o.
2002-09-30 Theodore A. Roth <[email protected]>
* doc/api/main_page.dox: Add atmega16 as supported.
2002-09-30 Theodore A. Roth <[email protected]>
* libc/stdlib/malloc.c: Quell compiler warning.
2002-09-30 Theodore A. Roth <[email protected]>
* include/avr/io1200.h: Generate compiler warning if not included
from avr/io.h.
* include/avr/io2313.h: Ditto.
* include/avr/io2323.h: Ditto.
* include/avr/io2333.h: Ditto.
* include/avr/io2343.h: Ditto.
* include/avr/io4414.h: Ditto.
* include/avr/io4433.h: Ditto.
* include/avr/io4434.h: Ditto.
* include/avr/io76c711.h: Ditto.
* include/avr/io8515.h: Ditto.
* include/avr/io8534.h: Ditto.
* include/avr/io8535.h: Ditto.
* include/avr/ioat94k.h: Ditto.
* include/avr/iom103.h: Ditto.
* include/avr/iom128.h: Ditto.
* include/avr/iom16.h: Ditto.
* include/avr/iom161.h: Ditto.
* include/avr/iom162.h: Ditto.
* include/avr/iom163.h: Ditto.
* include/avr/iom169.h: Ditto.
* include/avr/iom323.h: Ditto.
* include/avr/iom8.h: Ditto.
* include/avr/iotn11.h: Ditto.
* include/avr/iotn12.h: Ditto.
* include/avr/iotn15.h: Ditto.
* include/avr/iotn22.h: Ditto.
* include/avr/iotn28.h: Ditto.
2002-09-30 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/Makefile.am: Move examples to SUBDIRS.
* doc/api/Makefile.am: New rules for demo project.
* doc/api/doxygen.config.in: Add paths to demo project.
* doc/examples/Makefile.am: New file.
* doc/examples/demo/Makefile: New file.
* doc/examples/demo/demo.c: New file.
* doc/examples/demo/demo.dox: New file.
* doc/examples/demo/demo.fig: New file.
2002-09-30 Theodore A. Roth <[email protected]>
* NEWS: Add mega16 to new device list.
2002-09-29 Marek Michalkiewicz <[email protected]>
* configure.in (AVR_CRT_MEGA): Add crtm16.o.
* include/avr/iom16.h: New, from Magnus Johansson <[email protected]>.
2002-09-29 Marek Michalkiewicz <[email protected]>
* include/avr/delay.h: New.
* configure.in (AM_INIT_AUTOMAKE): Update version.
2002-09-29 Reiner Patommel <[email protected]>
* libm/fplib/atan.S, libm/fplib/atan2.S: Fix swapped atan2()
arguments to match C standards.
2002-09-27 Theodore A. Roth <[email protected]>
* libc/stdlib/malloc.c: Remove cast from STACK_POINTER macro.
2002-09-27 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* include/setjmp.h: Add extern "C" for C++ usage.
2002-09-25 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/tools-install.dox: Move note about reconf and cvs up.
2002-09-17 Marek Michalkiewicz <[email protected]>
* include/avr/sfr_defs.h (_VECTOR): Move above #ifndef __ASSEMBLER__.
2002-09-11 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/faq.dox: Cleanups and add examples.
2002-09-11 Theodore A. Roth <[email protected]>
* doc/TODO: Remove include/stdlib.h.
* include/stdlib.h: Misc cleanups.
2002-09-10 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
2002-09-09 Theodore A. Roth <[email protected]>
* libc/string/strstr.S: Fix dox (s/needle/s2/ and s/haystack/s1/).
2002-09-09 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: add three subsections.
2002-09-09 Theodore A. Roth <[email protected]>
* doc/TODO: Added note about testsuite.
2002-09-09 Joerg Wunsch <[email protected]>
* include/stdlib.h: improve grouping for old doxygen versions.
2002-09-09 Joerg Wunsch <[email protected]>
* libc/stdlib/malloc.c: use _SFR_IO16() around the SP address.
2002-09-09 Joerg Wunsch <[email protected]>
* include/stdlib.h: rename DTOSTRE_* into DTOSTR_*.
* libm/fplib/dtostre.S: rename DTOSTRE_* into DTOSTR_*.
2002-09-08 Joerg Wunsch <[email protected]>
* include/stdlib.h: document this file.
* libm/fplib/dtostre.S: use <stdlib.h>.
2002-09-08 Joerg Wunsch <[email protected]>
* libm/fplib/dtostre.S: another leading "0" fix.
2002-09-07 Joerg Wunsch <[email protected]>
* libm/fplib/dtostre.S: don't print "." iff prec == 0.
2002-09-07 Joerg Wunsch <[email protected]>
* libm/fplib/fplib.inc: introduce FPMOV and FPLOAD.
* libm/fplib/dtostre.S: use FPMOV, FPLOAD, and XCALL.
2002-09-06 Joerg Wunsch <[email protected]>
* libm/fplib/dtostre.S: fix numerous bugs and nits.
2002-09-04 Theodore A. Roth <[email protected]>
* doc/TODO: Add what needs to be doxumented still.
2002-09-04 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/TODO: Add note about __ prefix of args in dox.
* include/setjmp.h: Add dox comments.
2002-09-03 Joerg Wunsch <[email protected]>
* doc/api/Makefile.am: implement --enable-versioned-doc
* configure.in: implement --enable-versioned-doc
2002-09-02 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* NEWS: Note mega169 as new supported device.
* doc/api/main_page.dox: Add list of supported devices.
2002-08-31 Marek Michalkiewicz <[email protected]>
* configure.in (AM_INIT_AUTOMAKE): Update version.
(AVR_CRT_MEGA): Add crtm169.o.
* include/avr/iom169.h: New file.
* include/avr/iom323.h: Fix typo (SIG_INTERRUPT3 -> 2).
2002-08-30 Theodore A. Roth <[email protected]>
* doc/api/inline_asm.dox: Remove _PC_ from dox. It doesn't seem to
be available to the user.
2002-08-30 Theodore A. Roth <[email protected]>
* doc/TODO: Updated.
* doc/api/faq.dox: Remove C example for .init1; refer to sections dox.
* doc/api/sections.dox: Remove faq_startup ref.
Add note about -Wl,-Tdata,<addr>.
Add explanation of ',"ax",@progbits'.
2002-08-30 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am: Add sections.dox.
* doc/api/sections.dox: New file.
2002-08-29 Theodore A. Roth <[email protected]>
* doc/api/faq.dox: Move asm faq to faq dox.
* doc/api/inline_asm.dox: Move asm faq to faq dox.
* configure.in(AM_INIT_AUTOMAKE): Bump version.
2002-08-29 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: 16-bit timer IO registers and interrupts.
* doc/api/sfr.dox: xref to the FAQ.
2002-08-28 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: Mention C++ support.
2002-08-28 Joerg Wunsch <[email protected]>
* libc/stdlib/malloc.c: Fix STACK_POINTER().
2002-08-28 Theodore A. Roth <[email protected]>
* NEWS: Updated with summary of change log.
2002-08-28 Theodore A. Roth <[email protected]>
* include/avr/iom128.h: Sync up io register bit names with latest
datasheet (2467E-AVR-05/02). [modification of submission by
Svein E. Seldal <[email protected]>].
2002-08-28 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version
* doc/api/interrupts.dox: Fix typo (s/Overflow2/Overflow3/).
2002-08-27 Theodore A. Roth <[email protected]>
* doc/TODO: Updated.
2002-08-27 Theodore A. Roth <[email protected]>
* include/avr/iom128.h: Updated IO register names to match latest
datasheet from Atmel. (modified submission from Svein E. Seldal
* configure.in(AM_INIT_AUTOMAKE): Bump version.
2002-08-22 Theodore A. Roth <[email protected]>
* common/macros.inc: Use <avr/io.h> instead of <io.h>.
* doc/api/faq.dox: Use <avr/io.h> instead of <io.h>.
* include/eeprom.h: Add deprecated #warning.
* include/ina90.h: Add deprecated #warning.
* include/interrupt.h: Add deprecated #warning.
* include/io.h: Add deprecated #warning.
* include/pgmspace.h: Add deprecated #warning.
* include/progmem.h: Add deprecated #warning.
* include/sig-avr.h: Add deprecated #warning.
* include/timer.h: Add deprecated #warning.
* include/twi.h: Add deprecated #warning.
* include/wdt.h: Add deprecated #warning.
* include/avr/eeprom.h: Use <avr/io.h> instead of <io.h>.
* include/avr/ina90.h: Use <avr/eeprom.h> instead of <eeprom.h>.
* include/avr/interrupt.h: Use <avr/io.h> instead of <io.h>.
* include/avr/pgmspace.h: Use <avr/pgmspace.h> instead of <pgmspace.h>.
Same for <io.h> and <ina90.h>
* include/avr/timer.h: Use <avr/io.h> instead of <io.h>.
* include/avr/wdt.h: Use <avr/io.h> instead of <io.h>.
2002-08-23 Joerg Wunsch <[email protected]>
* include/avr/eeprom.h: document.
2002-08-23 Joerg Wunsch <[email protected]>
* doc/api/acknowledge.dox: Mention Ted's work.
2002-08-22 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
2002-08-22 Theodore A. Roth <[email protected]>
* doc/api/sfr.dox: Reformat paragraphs that are too wide.
* include/avr/sfr_defs.h: Reformat paragraphs that are too wide.
Added cvs Id keyword.
2002-08-22 Theodore A. Roth <[email protected]>
* doc/api/sfr.dox: Grammar cleanups.
* include/avr/sfr_defs.h: Make Marek's notes into dox.
Added compiler note to _BV().
Added note about switched arg order for outb()/outw().
Documented deprecated macros.
2002-08-21 Joerg Wunsch <[email protected]>
* doc/api/Makefile.am
* doc/api/sfr.dox
* include/avr/io.h
* include/avr/sfr_defs.h: document <avr/sfr_defs.h>.
2002-08-21 Theodore A. Roth <[email protected]>
* doc/api/inline_asm.dox: Move old history into non-doxy comment.
Change GCC-AVR to AVR-GCC. Add note about new location.
2002-08-21 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/inline_asm.dox: Removed `n' and `v' constraints from table.
Grammar fixes. Add link to gcc online docs.
2002-08-16 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/Makefile.am(EXTRA_DIST): Add tools-install.dox file.
* doc/api/dox_html_header: Fix title.
* doc/api/tools.dox: New file.
2002-08-14 Theodore A. Roth <[email protected]>
* doc/api/inline_asm.dox: Fixed variable name in clobber section. New
section C stubs added. (thanks to Harald Kipp)
2002-08-14 Theodore A. Roth <[email protected]>
* doc/api/faq.dox: Minor dox update.
* doc/api/inline_asm.dox: Minor dox update.
* doc/api/main_page.dox: Minor dox update.
2002-08-13 Theodore A. Roth <[email protected]>
* doc/api/doxygen.config.in: Updated to use doxygen-1.2.17.
2002-08-13 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
* doc/api/acknowledge.dox: Minor updates.
2002-08-13 Theodore A. Roth <[email protected]>
* libc/string/memset.S: Fix dox comment (s/src/dest/).
2002-08-12 Theodore A. Roth <[email protected]>
* configure.in(AM_INIT_AUTOMAKE): Bump version.
2002-08-12 Joerg Wunsch <[email protected]>
* crt1/gcrt1.S: avr-gcc >= 3.3 is required.
* avr-libc.spec.in: avr-gcc >= 3.3 is required.
2002-08-09 Joerg Wunsch <[email protected]>
* doc/api/faq.dox: add a subsection about _BV().
2002-08-09 Joerg Wunsch <[email protected]>
* include/avr/io.h: add documentation.
2002-08-09 Joerg Wunsch <[email protected]>
* doc/api/Makefile.am: Black magic to split a long table.
* doc/api/interrupts.dox: minor changes and additions.
2002-08-09 Joerg Wunsch <[email protected]>
* domake: Allow for environmental override of ${MAKE}.
2002-08-09 Joerg Wunsch <[email protected]>
* reconf: Extend the automake/autoconf checks to allow for
customized executable names for the versions required.
2002-08-09 Theodore A. Roth <[email protected]>
* reconf: Check for correct versions of automake/autoconf.
2002-08-09 Theodore A. Roth <[email protected]>
* .cvsignore: New file.
* crt1/.cvsignore: New file.
* doc/.cvsignore: New file.
* doc/api/.cvsignore: New file.
* libc/.cvsignore: New file.
* libc/misc/.cvsignore: New file.