?lang_form? ?lang_select? ?lang_submit? ?lang_endform?
{HEADER END}
{BLAME START}

library

?curdirlinks? -

Blame information for rev 6

Line No. Rev Author Line
1 6 kaklik /** \page relnotes Release Notes
2  
3 <h3>10/29/2006</h3>
4  
5 - It has been WAY too long since an official release. Sorry!
6 - Added xmodem support (currently receive only)
7 - \ref xmodem
8 - Small modifications and bugfixes spread throughout
9  
10 <h3>7/15/2006</h3>
11  
12 - The \ref buffer library is now thread-safe with appropriate critical sections to prevent data loss
13 - Modified default make process to build *.bin files in addition to *.hex
14 - Modifed the \ref enc28j60 ethernet driver
15 - now has/requires a conf file to define SPI I/O pins and chip select
16 - beginning to fix a few driver bugs stemming from device errata
17 - In \ref mmc library, fixed initialization sequence to comply with MMC/SD spec
18 - In \ref uart2 library, fixed typo in #defines of UART_BUFFER_EXTERNAL_RAM
19 - Modified \ref rprintf library to have proper [LF]=>[CR/LF] translation
20  
21 <h3>6/12/2006</h3>
22  
23 - Bugfix in uartsw.c affecting operation in non-inverted mode (thanks to strombom of avrfreaks)
24 - \ref uartsw
25  
26 <h3>4/15/2006</h3>
27  
28 - Adapted AVRlib to build with the new avr-libc
29  
30 <h3>10/24/2005</h3>
31  
32 - Added 'spyglass' support for I2C-controlled LCD+Pushbutton user interface board
33 - \ref spyglass
34 - Added some new support for RSL-specific projects (avrlib/rsl)
35  
36 <h3>9/27/2005</h3>
37  
38 - Network support
39 - Added new driver for SPI-based ethernet controller
40 - \ref enc28j60
41 - Small improvements throughout network support
42  
43 <h3>9/20/2005</h3>
44  
45 - Network support
46 - Added DHCP support to network stack
47 - \ref dhcp
48 - Small improvements throughout network support
49 - Added Parameter/data storage utility library
50 - \ref param
51  
52 <h3>8/22/2005</h3>
53  
54 - Added ethernet/WLAN network support to AVRlib. See Network files for more details.
55 Support includes:
56 - Ethernet Drivers
57 - \ref rtl8019
58 - \ref ax88796
59 - \ref cs8900
60 - WLAN 802.11b
61 - \ref prism2 <br>(specifically tested on TEW-222CF and misc other cards)
62 - Protocol Stack components
63 - \ref arp
64 - \ref icmp
65 - \ref ip
66 - UDP
67 - \ref net
68 - Suggest using third-party TCP solution, if needed, like Adam Dunkel's uIP or others.
69 - See <b>examples/netstack</b> for example usage.
70 - Added new ADS7870 A/D Converter driver. This A/D converter is a full data aquisition system with built-in gain stages, 12-bit precision, and fast SPI interface.
71 - Added timer support for Mega88, Mega168. See timerx8.c.
72 - Added usart support to uart library. Will now work with Mega88, Mega168, Mega169, etc.
73  
74 <h3>3/12/2005</h3>
75  
76 - Fixed AVRlib to comply to new WinAVR package (avr-libc has dropped several methods that were depricated causing the old AVRlib to fail to compile). Sorry about the delay. Please note that I've changed small parts of dozens of files. I may have introduced bugs that I haven't yet detected. Your feedback welcome.
77  
78 <h3>1/30/2005</h3>
79  
80 - Added new lis3l02 accelerometer library. This ST accelerometer incorporates a 3-axis sensor and A/D converter in one 28-pin SOIC package with I2C and SPI bus. Unfortunately, the production future of the digital version of this accelerometer is unknown.
81 - Added new extint external interrupt library. The library is not complete, but does work nicely for some processors. It is primarily designed to do two things:
82 - abstract AVR external interrupts so that programs which use them can more easily cross-compile between different processors
83 - allow novice (and even advanced) users to be able to use external interrupts without looking up a bunch of register and bit defines in the datasheets.
84 - Revised GPS library to standardize on units used for latitude/longitude angles
85 - Improved NMEA library. Packet processing function now returns type of packet decoded. Packet parsers reject valid but empty packets.
86 - MMC library has proper #defines to turn on/off debugging statements
87 - uartsw and uartsw2 libraries now support optional inversion of serial signal via #define in conf file
88  
89 <h3>10/15/2004</h3>
90  
91 - Added new spieeprom library. Not quite sure if it works properly.
92  
93 <h3>9/25/2004</h3>
94  
95 - Added a simple MultiMedia Card / SecureDigital Card interface library. The library allows you to read and write sector-sized (512 byte) data chunks. Please see mmc.h for information about how to connect the card to the microcontroller.
96 - Added uartGetByte() functions to uart.c and uart2.c. These functions emulate the typical getchar() function and return a received character if available, otherwise -1.
97 - Fixed bug causing incorrect I2C bus speed.
98  
99 <h3>6/25/2004</h3>
100  
101 - Changed encoder library to new read-in scheme which is more technically correct and resistant to error. New scheme counts both rising and falling edges of PHASEA, so be prepared for twice the precision (you'll get double the usual number of counts per revolution).
102 - Added timer functions to exploit arbitrary frequency/precision PWM in new AVR processors
103 - Fixed timerPause() precision management bug in Timer/Timer128 libraries. TimerPause function should now work correctly for longer delays.
104 - Added timerXGetPrescaler() functions to timer libraries to avoid code maintenance issues and to reduce overall code size
105 - Fixed bug in Pulse library that cause wildly incorrect frequencies to be produced
106  
107 <h3>5/04/2004</h3>
108  
109 - Added MegaIO directory with simple routines for accessing the MegaIO peripheral expander. MegaIO allows you to use a slave AVR processor as a peripheral expander and control it easily from a master AVR processor over the I2C bus. This gives your master processor easy access to: an extra buffered UART, extra PWM outputs, extra A/D inputs, extra I/O lines, extra RAM, and more.
110  
111 <h3>2/27/2004</h3>
112  
113 - Improved original Software UART library (uartsw: uses Timer1 OC1A OC1B and IC1)
114 - Added new Software UART library (uartsw2: uses Timer0 and Timer2 and INT2)
115 - Fixed small but catastrophic bug in the Software Memory Bus (sramsw)
116 - Fixed small but catastrophic bug in the Timer library when using Timer 0 Output Compare
117 - Fixed Timer128 library bug when using Timer 3 Output Compare B
118 - Added support for ICR top-count PWM when supported by processor
119 - <b>Thanks to all the users who have offered bugfixes and feedback!</b>
120  
121 <h3>2/22/2004</h3>
122  
123 - Added ADS7828 I2C A/D Converter Library + example code
124 - Added DS1631 I2C Temperature Sensor Library + example code
125 - Timer/Timer128 Library
126 - For processor that support it, timerPause() will sleep the processor during the delay time, thereby reducing power consumption. All interrupts are still active so hopefully this shouldn't break anybody's code.
127 - The timer library will now compile properly for the processors with only timers 0,1 (by excluding timer2 functions automatically)
128 - Bugfix on Timer3 initialization
129 - A big thanks to those that wrote in to report bugs or offer suggestions for improvement!
130 - Servo Library: optimized slightly
131 - UART/UART2 Library: Improved compile compatibility across more AVR processors
132  
133 <h3>9/15/2003</h3>
134  
135 - I2C Library
136 - A few bugfixes here. i2cMasterSend and i2cMasterReceive finally return error values if the target device is not present. This is especially important in the case of receive because that would otherwise hang. Some debugging has been added to the I2C interrupt state machine. Debugging can be turned on via #define but needs to be customized based on the processor in use.
137  
138 <h3>7/23/2003</h3>
139  
140 - Cmdline Library (NEW)
141 - This library is a complete fairly-easy-to-use command line interface complete with advanced line editing and history buffer. You add the commands and the functions to run for those commands. The arguments passed to your commands are available as strings or interpreted as decimal or hex integers.
142 - Uart/Uart2 Library
143 - Added a new method uartAddToTxBuffer() which adds one character at a time to the uart transmit buffer. The function can be used the the same way as uartSendByte, but writes only to the buffer. This is helpful for printf-ing inside interrupts or time-critical sections.
144 - i2ceeprom function library
145 - Fixed a compile bug that escaped last time.
146 - Bugfix: there was an endian-ness discrepancy between the read and write byte routines for the eeprom. Problem has been fixed thanks to feedback from users.
147  
148 <h3>7/12/2003</h3>
149  
150 - General Note
151 - CAUTION: The makefile and build process for AVRlib has changed to make installation and management simpler. You will need to define an AVRLIB environment variable to point to the location where you keep AVRlib. See the revised installation guide for more details.
152 - I made a lot of small fixes to various libraries without properly recording the changes. Sorry.
153 - STX/ETX function library
154 - The receiving packet engine has been revised for the stx/etx protocol. It's somewhat less stupidly coded now and should perform better. Fixed a bug that made servicing an empty receive buffer excessively long.
155 - Timer/Timer128 function library
156 - Since the creation of the timer library, the timerPause function had a bug/deficiency which caused it to be either slightly or grossly off in timing depending on the delay requested and the current prescaler setting. This bug is now fixed at the expense of a little extra code and timing performance should be considerably more accurate.
157  
158 <h3>6/06/2003</h3>
159  
160 - General Note
161 - I've recently seen the need for more project-dependent configurable settings in the core AVRlib libraries (uart, timer, rprintf). Rather than creating a smorgasboard of new "conf" files to handle the settings, I've decided to handle most things via #ifdefs and user-optional #defines. My feeling is that for core libraries, it nice to not have to lug around "conf" files all the time. We'll see how it goes...
162 - UART and UART2 function libraries
163 - You can now override the default UART receive handling (placing of the data into the receive buffer), by using the uartSetRxHandler() function and providing your own function.
164 - You can now adjust the default size of the UART Rx/Tx buffers by #defining the size before including uart.h. I recommend placing such #defines in your global.h.
165 - UARTSW function library
166 - Out of personal need, I have finally gotten the software-driven UART code working. Please consider this an alpha release. It works well, but the library is still in flux.
167 - A2D function library
168 - Efforts are being made to make the A2D functions compatible (compile transparently) over a greater range of AVR processors including the new Mega8,16,32,64. Please be patient if proper support for your processor is temporarily broken.
169 - Timer/Timer128 function library
170 - #defines have been added to specify the timer prescaler rates on RealTimeClock-equipped timer. You may have noticed that the RTC-equipped timer always has a different prescaler selection range than the other timers. You must use the new TIMERRTC_CLK_DIV defines instead of the TIMER_CLK_DIV defines on these timers, otherwise you will get wrong results.
171 - You can now change the default interrupt handler type (INTERRUPT vs. SIGNAL) used for the timers by #defining it before including timer.h. I recommend placing such #defines in your global.h.
172  
173 <h3>5/29/2003</h3>
174  
175 - Pulse function library
176 - There are two new functions PulseT1AStop() and PulseT1BStop(), that allow the stopping of pulse output regardless of the previously programmed number of pulses to be output. The new stop commands are crucial when using the continuous pulse output mode.
177  
178 <h3>5/1/2003</h3>
179  
180 - KS0108 Graphic LCD driver library
181 - Made some improvements to the code structure and #define names, eliminates some unnecessary lines.
182 - Implemented untested support for up to 4 controller chips (240x64 pixel display).
183 - rprintf library
184 - Thanks to some feedback, and some testing, I recently realized I had doubled the compiled size of the printf library when I added a floating-point print function a several months ago.
185 - The floating-point print can now be enabled or disabled in the rprintfconf.h file. (it is disabled by default)
186  
187 <h3>4/30/2003</h3>
188  
189 - Uart function library
190 - Like the timer library, you can now universally switch from SIGNAL-type interrupt handlers to INTERRUPT-type handlers by changing a #define in uart.h or uart2.h. Note, for the time being, I'm avoiding creating a "conf" file for the uart libraries because of their widespread use. Don't want to confuse users any mor than I have to.
191 - Pulse function library
192 - Fixed a major bug which caused some pulse output requests to idle until the timer overflowed
193 - ATA/IDE interface driver
194 - Brought this code out of basic disrepair and into service again - effort will continue as time permits
195 - FAT filesystem driver
196 - Brought this code out of basic disrepair and into service again - effort will continue as time permits
197 - Will attempt to improve the overall interface for FAT as well as begin to support file writing
198  
199 <h3>3/13/2003</h3>
200  
201 - New "debug" function library
202 - Added a new library for general functions useful when debugging. Currently the only available function is for nicely formatted hex/ascii table dumps (useful when inspecting memory or buffers).
203  
204 <h3>3/2/2003</h3>
205  
206 - I2C Library
207 - Continued updating of I2C library - NOTE: some old functions have changed names slightly to clarify their purpose and relationship to new functions.
208 - Added two function pointers designed to be set by the user to handle incoming Slave Receive and Slave Transmit operations.
209 - Added i2cMasterTransfer function which does the common write-then-read operation with repeated start in between so control of the bus is not lost. This kind of access is common when accessing memories or register based devices where the address must be written before reading back a value.
210 - NOTE: Structure of the library continues to change but has solidified substantially.
211  
212 <h3>2/24/2003</h3>
213  
214 - Encoder Library
215 - Improved interrupt flexibility and processor compatibility for this library
216 - Unfortunately, the complexity comes at the cost of a somewhat more complicated encoderconf.h which the user must edit to suit their specific needs on a per-project basis.
217 - I2C Library
218 - Second major revision of I2C library in an attempt to make it general enough to use for any common I2C operations.
219 - Changes include the "functionalizing" of basic low-level I2C operations such as generate start,stop, and send address/data.
220 - NOTE: Structure of the library has changed somewhat and will likely continue to be refined.
221 - Timer128 Library
222 - Added missing PWM on and off functions in Timer128 library
223  
224 <h3>2/24/2003</h3>
225  
226 - Release Notes Started
227  
228 */
{BLAME END}
{FOOTER START}

Powered by WebSVN v2.8.3