📄 relnotes.html
字号:
<p><ul><li>Added ADS7828 I2C A/D Converter Library + example code</li><li>Added DS1631 I2C Temperature Sensor Library + example code</li><li>Timer/Timer128 Library<ul><li>For processor that support it, <a class="el" href="group__timer.html#ga10">timerPause()</a> 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.</li><li>The timer library will now compile properly for the processors with only timers 0,1 (by excluding timer2 functions automatically)</li><li>Bugfix on Timer3 initialization</li><li>A big thanks to those that wrote in to report bugs or offer suggestions for improvement!</li></ul></li><li>Servo Library: optimized slightly</li><li>UART/UART2 Library: Improved compile compatibility across more AVR processors</li></ul><p><h3>9/15/2003</h3><p><ul><li>I2C Library<ul><li>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.</li></ul></li></ul><p><h3>7/23/2003</h3><p><ul><li>Cmdline Library (NEW)<ul><li>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.</li></ul></li><li>Uart/Uart2 Library<ul><li>Added a new method <a class="el" href="group__uart.html#ga11">uartAddToTxBuffer()</a> 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.</li></ul></li><li>i2ceeprom function library<ul><li>Fixed a compile bug that escaped last time.</li><li>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.</li></ul></li></ul><p><h3>7/12/2003</h3><p><ul><li>General Note<ul><li>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.</li><li>I made a lot of small fixes to various libraries without properly recording the changes. Sorry.</li></ul></li><li>STX/ETX function library<ul><li>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.</li></ul></li><li>Timer/Timer128 function library<ul><li>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.</li></ul></li></ul><p><h3>6/06/2003</h3><p><ul><li>General Note<ul><li>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...</li></ul></li><li>UART and UART2 function libraries<ul><li>You can now override the default UART receive handling (placing of the data into the receive buffer), by using the <a class="el" href="group__uart.html#ga2">uartSetRxHandler()</a> function and providing your own function.</li><li>You can now adjust the default size of the UART Rx/Tx buffers by #defining the size before including <a class="el" href="uart_8h.html">uart.h</a>. I recommend placing such #defines in your <a class="el" href="global_8h.html">global.h</a>.</li></ul></li><li>UARTSW function library<ul><li>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.</li></ul></li><li>A2D function library<ul><li>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.</li></ul></li><li>Timer/Timer128 function library<ul><li>#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.</li><li>You can now change the default interrupt handler type (INTERRUPT vs. SIGNAL) used for the timers by #defining it before including <a class="el" href="timer_8h.html">timer.h</a>. I recommend placing such #defines in your <a class="el" href="global_8h.html">global.h</a>.</li></ul></li></ul><p><h3>5/29/2003</h3><p><ul><li>Pulse function library<ul><li>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.</li></ul></li></ul><p><h3>5/1/2003</h3><p><ul><li>KS0108 Graphic LCD driver library<ul><li>Made some improvements to the code structure and #define names, eliminates some unnecessary lines.</li><li>Implemented untested support for up to 4 controller chips (240x64 pixel display).</li></ul></li><li>rprintf library<ul><li>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.</li><li>The floating-point print can now be enabled or disabled in the rprintfconf.h file. (it is disabled by default)</li></ul></li></ul><p><h3>4/30/2003</h3><p><ul><li>Uart function library<ul><li>Like the timer library, you can now universally switch from SIGNAL-type interrupt handlers to INTERRUPT-type handlers by changing a #define in <a class="el" href="uart_8h.html">uart.h</a> or <a class="el" href="uart2_8h.html">uart2.h</a>. 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.</li></ul></li><li>Pulse function library<ul><li>Fixed a major bug which caused some pulse output requests to idle until the timer overflowed</li></ul></li><li>ATA/IDE interface driver<ul><li>Brought this code out of basic disrepair and into service again - effort will continue as time permits</li></ul></li><li>FAT filesystem driver<ul><li>Brought this code out of basic disrepair and into service again - effort will continue as time permits</li><li>Will attempt to improve the overall interface for FAT as well as begin to support file writing</li></ul></li></ul><p><h3>3/13/2003</h3><p><ul><li>New "debug" function library<ul><li>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).</li></ul></li></ul><p><h3>3/2/2003</h3><p><ul><li>I2C Library<ul><li>Continued updating of I2C library - NOTE: some old functions have changed names slightly to clarify their purpose and relationship to new functions.</li><li>Added two function pointers designed to be set by the user to handle incoming Slave Receive and Slave Transmit operations.</li><li>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.</li><li>NOTE: Structure of the library continues to change but has solidified substantially.</li></ul></li></ul><p><h3>2/24/2003</h3><p><ul><li>Encoder Library<ul><li>Improved interrupt flexibility and processor compatibility for this library</li><li>Unfortunately, the complexity comes at the cost of a somewhat more complicated <a class="el" href="encoderconf_8h.html">encoderconf.h</a> which the user must edit to suit their specific needs on a per-project basis.</li></ul></li><li>I2C Library<ul><li>Second major revision of I2C library in an attempt to make it general enough to use for any common I2C operations.</li><li>Changes include the "functionalizing" of basic low-level I2C operations such as generate start,stop, and send address/data.</li><li>NOTE: Structure of the library has changed somewhat and will likely continue to be refined.</li></ul></li><li>Timer128 Library<ul><li>Added missing PWM on and off functions in Timer128 library</li></ul></li></ul><p><h3>2/24/2003</h3><p><ul><li>Release Notes Started </li></ul><hr size="1"><address style="align: right;"><small>Generated on Sun Oct 29 03:41:09 2006 for Procyon AVRlib by <a href="http://www.doxygen.org/index.html"><img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.2 </small></address></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -