aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TempDataLogger
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Fixed invalid PID value used in the TempDataLogger project host application ↵Dean Camera2012-02-051-1/+1
| | | | (thanks to Anupam Pathak).
* Update file contributor copyrights for 2012.Dean Camera2012-02-047-7/+7
|
* Update file header copyrights for 2012.Dean Camera2012-02-0410-10/+10
|
* Minor documentation corrections.Dean Camera2012-02-041-3/+2
|
* USB_CONFIG_ATTR_BUSPOWERED constant renamed to USB_CONFIG_ATTR_RESERVED, as ↵Dean Camera2012-01-021-1/+1
| | | | this was misnamed (thanks to NXP Semiconductors).
* Run wspurify script on /trunk/ and /branches/ C source files, to remove any ↵Dean Camera2011-12-237-15/+18
| | | | trailing whitespace at the end of each line.
* Add missing SVN eol-style property to ensure that source code line endings ↵Dean Camera2011-11-098-466/+466
| | | | and converted to the native values on checkout.
* Update host C# applications for VS2010. Make LEDNotifier project host ↵Dean Camera2011-11-096-1/+254
| | | | applications only display valid COM port names for the PC it is run on, rather than all possible port names. Add missing property files to the TempDataLogger project host application.
* Add project name to the Doxygen makefile target output.Dean Camera2011-09-211-1/+1
|
* Update the TempDataLogger project and driver documentation to use the new ↵Dean Camera2011-09-021-1/+1
| | | | TWI_BITLENGTH_FROM_FREQ() macro.
* Fix TempDataLogger project logging interval always being 500ms more than the ↵Dean Camera2011-08-162-5/+2
| | | | requested interval.
* 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).
* Removed the ENDPOINT_DESCRIPTOR_DIR_* macros in favour of the shorter ↵Dean Camera2011-07-191-3/+3
| | | | ENDPOINT_DIR_* macros, which can now be used with both Endpoint_ConfigureEndpoint() and in the device descriptors.
* Seperate out the device demos and project's configuration descriptor ↵Dean Camera2011-07-011-0/+4
| | | | structure definitions to clearly indicate what descriptors belong to which interface.
* Add new "checksource" target to the library makefiles, for automated source ↵Dean Camera2011-06-201-2/+10
| | | | file existance checking.
* Massive corrections to the project documentation and code comments, thanks ↵Dean Camera2011-06-052-3/+3
| | | | 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.
* F_CLOCK changed to F_USB to be more descriptive, and applicable on future ↵Dean Camera2011-03-211-7/+7
| | | | architecture ports.
* Added TWI baud rate prescaler and bit length parameters to the TWI_Init() ↵Dean Camera2011-02-261-5/+1
| | | | function (thanks to Thomas Herlinghaus).
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-1/+5
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Add more const-ness to the stream endpoint/pipe functions where possible.Dean Camera2011-02-131-1/+2
|
* Add static keyword to all project globals whose scope should be restricted ↵Dean Camera2011-02-102-8/+8
| | | | | | 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-062-6/+24
| | | | 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
|
* Oops - forgot to add in LOGICAL MINIMUM and LOGICAL MAXIMUM report items ↵Dean Camera2011-01-301-1/+1
| | | | into the standard library Joystick HID report descriptor macro. Add in support for joystick resolution reporting via PHYSICAL_MINIMUM and PHYSICAL_MAXIMUM items.
* Add new HID_DESCRIPTOR_VENDOR() macro, change over all projects and Device ↵Dean Camera2011-01-301-16/+8
| | | | | | | | | | | | ClassDriver demos to use it. Fix reversed byte ordering of multi-byte HID data. Added support to the HID parser for extended USAGE items that contain the usage page as well as the usage index. Removed the HID_IOF_NON_VOLATILE and HID_IOF_VOLATILE flags from HID INPUT items where the flag is invalid. Changed over HID OUTPUT items to use HID_IOF_NON_VOLATILE. Change over MagStripe project to use HID_DESCRIPTOR_KEYBOARD() for its HID report. Change over MouseHostDevice demo to use HID_DESCRIPTOR_MOUSE() for its HID report.
* Abuse the the C preprocessor so that the HID macros can automatically encode ↵Dean Camera2011-01-171-16/+15
| | | | data into the array from the HID macros automagically, by specifying the bit-width of the data, and the data itself as a single integer value of that width.
* New HID report item macros (with HID_RI_ prefix) to allow for easy creation ↵Dean Camera2011-01-161-16/+17
| | | | | | | | and editing of HID report descriptors. Changed over all project and demo HID report descriptors to use the new HID report item macros. Moved the HIDParser.c source file to the LUFA/Drivers/USB/Class/Common/ directory from the LUFA/Drivers/USB/Class/Host/.
* 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-135-130/+87
| | | | interface and prevent a possible race condition.
* Fix typos and outdated information.Dean Camera2011-01-102-2/+1
|
* 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-0110-17/+17
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-5/+5
| | | | fix incorrect and missing section names.
* 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.
* Add DEVICE_STATE_AS_GPIOR=0 compile time option to the library projects, to ↵Dean Camera2010-12-241-0/+1
| | | | reduce compiled binary size.
* Fix a few more incorrectly ordered endpoint initialisations in the device demos.Dean Camera2010-12-171-1/+1
|
* Added ability to write protect Mass Storage disk write operations from the ↵Dean Camera2010-11-263-1/+40
| | | | host OS.
* Lower bulk endpoint polling rate in the descriptors to the lowest possible ↵Dean Camera2010-11-221-2/+2
| | | | value to give maximum throughput.
* Fixed incorrect PollingIntervalMS values in the demo/project/bootloader ↵Dean Camera2010-11-101-3/+3
| | | | endpoint descriptors (thanks to MCS Electronics).
* Added board hardware driver support for the Adafruit U4 breakout board.Dean Camera2010-11-081-1/+1
| | | | | | Fixed calculation of timer register reload values derived from F_CPU; must subtract one from the division result for the compare value to be correct. Change AVRISP-MKII rescue clock speed to 4MHz to ensure that a 125KHz ISP speed works regardless of the target's fuses (i.e. DIV8 set).
* Renamed the EVENT_USB_Device_UnhandledControlRequest() event to ↵Dean Camera2010-11-052-3/+3
| | | | EVENT_USB_Device_ControlRequest() as it is now fired before the library request handlers, not afterwards.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-2810-10/+10
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Add descriptor class, subclass and protocol constants to the class drivers, ↵Dean Camera2010-10-251-9/+9
| | | | | | | | modify all demos to use them where possible. Move out private/internal host class driver constants to the common class driver headers, so that they can be used in the Low Level host mode demos. Ensure all demos, projects and bootloaders use the class driver constants where possible to minimise code repetition.
* All USB class drivers are now automatically included when LUFA/Drivers/USB.h ↵Dean Camera2010-10-244-6/+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.