aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TempDataLogger/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Update copyrights for 2018.Dean Camera2018-01-046-10/+10
|
* Update copyrights for 2017.Dean Camera2017-04-186-10/+10
|
* Update copyrights to 2016.Dean Camera2016-01-316-10/+10
|
* Fixed incorrect comments in DataflashManager.c (thanks to Andrew Milkovich).Dean Camera2015-09-271-2/+2
|
* Update copyrights to 2015 (better late than never).Dean Camera2015-05-176-10/+10
|
* Obsolete the old MACROS and MACROE convenience macros.Dean Camera2014-09-141-3/+3
|
* Update copyrights for 2014.Dean Camera2014-01-046-10/+10
|
* Rename DS1307 driver files to a more generic RTC, as different RTC drivers ↵Dean Camera2013-07-202-1/+1
| | | | may be added in the future.
* Add volatile software RTC to the TempDataLogger application if the dummy RTC ↵Dean Camera2013-07-203-20/+101
| | | | mode is enabled.
* Minor documentation improvements.Dean Camera2013-03-182-8/+8
|
* Add dummy handler for SCSI_CMD_START_STOP_UNIT in all project SCSI handling ↵Dean Camera2013-03-091-0/+1
| | | | routines, to prevent ejection errors on *nix systems due to an unknown SCSI command.
* Update copyright year to 2013.Dean Camera2013-01-036-10/+10
|
* Minor documentation improvements.Dean Camera2012-10-054-4/+4
|
* Update FatFS library copies to the latest R0.09a version.Dean Camera2012-09-016-364/+520
|
* Spell-check latest trunk source code.Dean Camera2012-08-182-17/+17
|
* Spell check source code, fix mistakes.Dean Camera2012-06-091-1/+1
|
* AppConfigHeaders: Add missing AppConfig.h file includes.Dean Camera2012-05-272-0/+2
|
* AppConfigHeaders: Update several additional user projects to use ↵Dean Camera2012-05-101-0/+3
| | | | configuration header files, rather than makefile defines.
* Update StaticAnalysisTest to check for missing header files. Fix found ↵Dean Camera2012-02-291-2/+2
| | | | incorrect header file paths in the demos and projects.
* Fix warnings and errors found by the new cppcheck provided static code analysis.Dean Camera2012-02-281-8/+4
|
* Update file contributor copyrights for 2012.Dean Camera2012-02-044-4/+4
|
* Update file header copyrights for 2012.Dean Camera2012-02-046-6/+6
|
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-235-12/+15
| | | | trailing whitespace at the end of each line.
* Fixed incorrect Dataflash buffer use in the ↵Dean Camera2011-07-301-1/+1
| | | | DataflashManager_WriteBlocks_RAM() function of several demos/projects (thanks to Jeremy Willden).
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-051-2/+2
| | | | to Russian translation services provided by Andrey from Microsin.ru.
* Remove redundant type information for bitfield elements, other than the ↵Dean Camera2011-04-101-20/+20
| | | | | | signed/unsignedness of the element. Change type of USB_SelectedPipe and USB_SelectedEndpoint for the AVR32 UC3 architecture to uint32_t to reduce the compiled code size.
* Renamed all low level Endpoint_Read_*, Endpoint_Write_* and ↵Dean Camera2011-04-042-36/+36
| | | | | | Endpoint_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures. Renamed all low level Pipe_Read_*, Pipe_Write_* and Pipe_Discard_* functions to use the number of bits instead of a symbolic size (Byte, Word, DWord) so that the function names are applicable and correct across all architectures.
* Use the MIN() macro where possible instead of manual "(x < y) ? x : y" ↵Dean Camera2011-03-231-3/+2
| | | | constructs.
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-101-2/+2
| | | | | | to the same module as they are declared in. Tighten up the HID class bootloader code slightly, document that it currently exceeds 2KB of bootloader space for all models other than the Series 2 USB AVRs.
* Oops - fix missing constants in the TempDataLogger FatFS diskio.h header file.Dean Camera2011-02-061-0/+18
| | | | Add const to all project descriptor definitions for safety.
* Update projects using FatFS and PetiteFatFS to the latest library versions.Dean Camera2011-02-066-832/+971
|
* Added new high level TWI packet read/write commands, altered behaviour of ↵Dean Camera2011-01-132-45/+22
| | | | | | the TWI_StartTransmission() function. Spell check source code files.
* Oops - The DS1307 contains an unused "DayOfWeek" register that must be ↵Dean Camera2011-01-132-43/+52
| | | | accounted for in the new unified DS1307 Time/Day read and write routines.
* Changed TempDataLogger project's DS1307 driver to simplify the function ↵Dean Camera2011-01-133-107/+74
| | | | interface and prevent a possible race condition.
* Altered all endpoint/pipe stream transfers so that the new BytesProcessed ↵Dean Camera2011-01-101-10/+6
| | | | | | | | | | parameter now points to a location where the number of bytes in the transfer that have been completed can be stored (or NULL if entire transaction should be performed in one chunk). Added new Endpoint_Null_Stream() and Pipe_Null_stream() functions. Removed the NO_STREAM_CALLBACKS compile time option due to the new partial stream transfer feature replacing it. Fixed errors in the incomplete Test and Measurement device demo preventing proper operation (thanks to Pavel Plotnikov).
* Update copyright year on all source files.Dean Camera2011-01-016-10/+10
|
* Added basic driver example use code to the library documentation.Dean Camera2010-12-261-2/+2
| | | | Made the USARTStream global public and documented in the SerialStream module, allowing for the serial USART stream to be accessed via its handle rather than via the implicit stdout and stdin streams.
* Added ability to write protect Mass Storage disk write operations from the ↵Dean Camera2010-11-262-1/+37
| | | | host OS.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-286-6/+6
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵Dean Camera2010-10-242-2/+0
| | | | | | is included, and no longer need to be seperately included. All LowLevel demos changed to use the constants and types defined in the USB class drivers.
* Minor documentation corrections.Dean Camera2010-10-131-2/+2
|
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-1313-118/+131
| | | | tool made by Laszlo Monda
* Clarify in the project documentation files what the each of the different ↵Dean Camera2010-08-311-3/+3
| | | | USB AVR device "series" comprises of.
* Fixed MassStorage based demos and projects resetting the SCSI sense values ↵Dean Camera2010-08-182-32/+68
| | | | | | before the command is executed, leading to missed SCSI sense values when the host retrieves the sense key (thanks to Martin Degelsegger). Added missing DataflashManager_CheckDataflashOperation() function to the MassStorageKeyboard demo, removed redundant SCSI_Codes.h file as these values are part of the MassStorage Class Driver.
* Oops - fix mixed "initialize" and "initialise" - opt for American spelling ↵Dean Camera2010-07-301-1/+1
| | | | due to its wide use in technical standards.
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-302-11/+11
| | | | EN-GB spelling dictionary.
* Spell check more of the third party libraries used by LUFA.Dean Camera2010-07-303-12/+12
|
* Spell check all source files once again to find any typos.Dean Camera2010-07-297-86/+86
|
* Rename reserved members of all structs so that they are uniformly named ↵Dean Camera2010-07-261-4/+4
| | | | | | across all demos/projects/bootloaders. Added start of the Incomplete TMC demo's command parser code.
* Update all demos, projects and bootloaders to indent all function ↵Dean Camera2010-07-216-19/+48
| | | | | | parameters, one per line, for better readability. Add missing const qualifiers to the demos.