aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TemperatureDataLogger
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Remove obsolete entry from the Doxygen configuration files.Dean Camera2010-05-231-1/+1
|
* Add new ReportType parameter to the HID class driver device callback and ↵Dean Camera2010-05-092-2/+3
| | | | | | 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-0826-9841/+9841
| | | | correctly converted to the target system's native end of line style.
* Change over instances of "make" in the makefiles to "$(MAKE)" to allow for ↵Dean Camera2010-05-071-1/+1
| | | | the make tool to be overridden.
* Change over unix line-endings to dos line endings.Dean Camera2010-05-072-839/+839
|
* Relocate USBInterrupt.c/.h from the HighLevel USB driver directory to the ↵Dean Camera2010-04-281-2/+2
| | | | LowLevel directory as it is hardware-dependent.
* USB_Init() no longer calls sei() to enable global interrupts - this must now ↵Dean Camera2010-04-282-4/+6
| | | | 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-186-18/+18
|
* Add briefs for the library core structures.Dean Camera2010-03-292-5/+1
|
* Standardized the naming scheme given to configuration descriptor ↵Dean Camera2010-03-222-13/+13
| | | | | | sub-elements in the Device mode demos, bootloaders and projects. Fix errors in the MouseHostWithParser demo from incorrect use of the HID_ALIGN_DATA() macro.
* Added a timeout value to the TWI_StartTransmission() function, within which ↵Dean Camera2010-02-242-7/+7
| | | | | | the addressed device must respond. Fixed TWI_StartTransmission() corrupting the contents of the GPIOR0 register.
* 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-154-13/+3
| | | | DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-041-1/+1
| | | | | | will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver). Spell-check code/comments in the Webserver/AVRISP-MKII projects.
* Exlude the "INCLUDE_FROM_*" macros from the individual project's documentation.Dean Camera2010-02-031-2/+3
|
* Minor fixups to the documentation and preprocessor tokens.Dean Camera2010-02-021-2/+2
|
* Fix up project documentation files' overview tables, so that multiple items ↵Dean Camera2010-01-281-9/+9
| | | | occupy multiple lines in the same cell, rather than multiple cells.
* Add FatFS library to the Webserver project, extend the HTTP server so that ↵Dean Camera2010-01-281-1/+1
| | | | it now serves files from the Dataflash. Add Mass Storage device mode class driver so that files can be loaded to the board Dataflash when inserted into a PC.
* Exclude host application directories from the Doxygen input source file ↵Dean Camera2010-01-251-1/+1
| | | | directories.
* Move TWI.c driver into the straight LUFA/Drivers/Peripheral/ directory.Dean Camera2010-01-251-0/+1
| | | | Fix TemperatureDataLogger and Webserver project builds.
* Minor code cleanups, remove TemperatureDataLogger host application's Visual ↵Dean Camera2010-01-2514-20/+863
| | | | Studio Solution files, add LibHIDNet license files.
* 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-2420-81/+1141
| | | | is logged along with the current time and date. Make logging interval configurable, set by a C# PC host application.
* Update Doxygen configuration files to the latest Doxygen version.Dean Camera2010-01-061-631/+709
|
* Update copyright year to 2010.Dean Camera2009-12-3013-28/+28
|
* Oops - remove accidentally committed .lst files from the ↵Dean Camera2009-12-304-7182/+2
| | | | TemperatureDataLogger project.
* Fix TemperatureDataLogger - sample tick timer wasn't being initialized in ↵Dean Camera2009-12-305-6323/+5763
| | | | the correct CTC mode.
* Oops - fix include directory for case-sensitive filesystems.Dean Camera2009-12-301-1/+1
|
* Add new TemperatureDataLogger project, a simple USB Mass Storage class ↵Dean Camera2009-12-3021-0/+15821
Temperature Data Logger using the onboard Dataflash and Temperature sensor.