aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TemperatureDataLogger/TempDataLogger.c
Commit message (Collapse)AuthorAgeFilesLines
* Update TemperatureDataLogger and Webserver projects to the latest FATFS ↵Dean Camera2010-06-141-7/+12
| | | | library version.
* The EEPROM stream read/write functions now use eeprom_update_byte() instead ↵Dean Camera2010-05-261-1/+1
| | | | | | of eeprom_write_byte(), so that only changed bytes are written to EEPROM to preserve its lifespan. Changed over the AVRISP-MKII and TemperatureDataLogger projects to use eeprom_update_byte() when writing non-volatile parameters to EEPROM to preserve its lifespan.
* Add new ReportType parameter to the HID class driver device callback and ↵Dean Camera2010-05-091-1/+2
| | | | | | host report sending routines. Renamed internal Host mode Class driver descriptor comparator callback routines so that they all start with a uniform DCOMP_{Class Abbreviation}_ prefix.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-312/+312
| | | | correctly converted to the target system's native end of line style.
* USB_Init() no longer calls sei() to enable global interrupts - this must now ↵Dean Camera2010-04-281-4/+5
| | | | be done in the user application once all init code has run.
* Add const keyword to the demo function parameters where possible.Dean Camera2010-04-181-1/+1
|
* Add briefs for the library core structures.Dean Camera2010-03-291-4/+0
|
* Add uIP-split code to the Webserver project, so that each packet is split in ↵Dean Camera2010-02-181-3/+4
| | | | half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory.
* Add missing TWI_Init() call to the TemperatureDataLogger project. Make ↵Dean Camera2010-02-151-0/+1
| | | | DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box.
* Fixed DFU bootloader programming not discarding the correct number of filler ↵Dean Camera2010-01-241-0/+4
| | | | bytes from the host when non-aligned programming ranges are specified (thanks to Thomas Bleeker).
* Enhance TemperatureDatalogger project -- add RTC capabilities so that data ↵Dean Camera2010-01-241-25/+140
| | | | is logged along with the current time and date. Make logging interval configurable, set by a C# PC host application.
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Oops - remove accidentally committed .lst files from the ↵Dean Camera2009-12-301-2/+2
| | | | TemperatureDataLogger project.
* Fix TemperatureDataLogger - sample tick timer wasn't being initialized in ↵Dean Camera2009-12-301-7/+14
| | | | the correct CTC mode.
* Add new TemperatureDataLogger project, a simple USB Mass Storage class ↵Dean Camera2009-12-301-0/+187
Temperature Data Logger using the onboard Dataflash and Temperature sensor.