-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathchanges.txt
103 lines (56 loc) · 2.34 KB
/
changes.txt
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
9 Aug 2018
update documentation
19 Sep 2011
Changes for Arduino 1.0
Moved examples folder to WaveHC/examples
8 May 2011
Changed default SPI speed for initialization to F_CPU/64.
Added #define SPI_INIT_SLOW in SdReader.h to select F_CPU/128.
9 Oct 2010
Added ATmega2560 Mega
14 Mar 2010
Fix Linux include problem. Warn for stereo files.
19 Dec 2009
Major rewrite of WaveHC to allow 16-bit 44.1 K files.
Use two 512 byte buffers unless 168 Arduino.
Improved SD card initialization and error handling.
Several new examples.
Better support of Mega Arduino and remapping DAC pins on all Arduinos.
Added DAC pinMode() calls to WaveHC::play(). These call can be
removed from sketches.
Reduce file open latency by file indexing and an open by index function.
Add RATE_ERROR_LEVEL variable for rate error handling control.
Make DAC LATCH pin optional. The LDAC line may be grounded and
USE_MCP_DAC_LDAC set to zero to free pin 5. See WavePinDefs.h
Added several new utility functions such as ls() to list files
and printEntryName() to print file names
More documentation for developers.
19 May 2009
Changed SdCard class and renamed it SdReader to avoid conflicts with other
Arduino libraries.
You must change the name in your sketches. For example
#include <SdCard.h>
SdCard card;
becomes
#include <SdReader.h>
SdReader card;
Improved error checking in the library and example sketches.
SD_CARD_INFO_SUPPORT is defined as 1 by default for SdReadTest.pde.
You can set it to zero to save flash if you don't need info functions.
Added a status function WaveHC::isPaused() which returns true if the player is paused.
Changed FatReader::open(FatReader &dir, char *name) to use a case independent
compare so it will find files like "TUNE.WAV" when called with name = "Tune.wav".
6 May 2009
Added SdReadTest.pde
This sketch performs a number of tests on a SD card.
SD_CARD_INFO_SUPPORT must be set to 1 in SdReader.h.
Delete all .o files in the WaveHC folder to force a rebuild of the library.
20 Apr 2009
Added WaveHC::pause() and WaveHC::resume().
18 Apr 2009
Added support for AtMega328.
Ladyada's OSX bug fix can be activated by setting OSX_BUG_FIX to 1 in WaveHC.cpp
Added WaveHC::seek(pos) based on Ladyada's seek function.
New dap_hc.pde prints free SRAM size in setup.
27 Jan 2009
This is a "preview release". I am looking for testers and feedback.