aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Board/Dataflash.h
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Spell check library source code files.Dean Camera2011-06-011-2/+2
|
* Seperated out board drivers by architecture in the library internals for ↵Dean Camera2011-05-181-8/+6
| | | | better organisation.
* Remove redundant Doxygen guards from the internal preprocessor definitions.Dean Camera2011-03-151-3/+0
|
* More updates to remove architecture-specific comments from the ↵Dean Camera2011-02-201-1/+1
| | | | documentation, alter USBMode.h preprocessor logic to support future architectures more easily.
* More Doxygen updates for multiple architecture support.Dean Camera2011-02-201-2/+4
|
* Add new ARCH option to the makefiles to (eventually) specify the target ↵Dean Camera2011-02-191-5/+3
| | | | device architecture. Update non-usb peripheral drivers to reflect future multiple architecture support.
* Added new high level TWI packet read/write commands, altered behaviour of ↵Dean Camera2011-01-131-2/+2
| | | | | | the TWI_StartTransmission() function. Spell check source code files.
* Fix typos and outdated information.Dean Camera2011-01-101-1/+1
|
* Minor documentation improvements.Dean Camera2011-01-081-7/+7
|
* Update copyright year on all source files.Dean Camera2011-01-011-2/+2
|
* Documentation improvements - put driver example code into its own section, ↵Dean Camera2010-12-261-2/+5
| | | | fix incorrect and missing section names.
* Added basic driver example use code to the library documentation.Dean Camera2010-12-261-1/+50
| | | | 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.
* Changed over www.fourwalledcubicle.com links to the new www.lufa-lib.org ↵Dean Camera2010-10-281-1/+1
| | | | redirect domain, including the new aliased links for LUFA-related pages such as the various download/source control mirrors and support lists.
* Clean up excessive whitespace at the end of each line using the wspurify ↵Dean Camera2010-10-131-13/+14
| | | | tool made by Laszlo Monda
* Added board hardware driver support for the Olimex AVR-USB-162 development ↵Dean Camera2010-09-031-0/+4
| | | | board (thanks to Steve Fawcett).
* More spell checking of all source files -- correct missed errors, switch to ↵Dean Camera2010-07-301-1/+1
| | | | EN-GB spelling dictionary.
* Convert over internal pseudo-function macros to true inline functions for ↵Dean Camera2010-07-221-79/+52
| | | | added type-safety and compile-checking.
* Add missing const qualifiers to class drivers.Dean Camera2010-07-211-1/+2
| | | | Indent core library function parameters so that there is only one parameter per line, to increase readability.
* Renamed SERIAL_STREAM_ASSERT() macro to STDOUT_ASSERT().Dean Camera2010-06-171-2/+2
| | | | Minor tweaks to the library documentation.
* Add svn:eol-style property to source files, so that the line endings are ↵Dean Camera2010-05-081-233/+233
| | | | correctly converted to the target system's native end of line style.
* Add file-level brief documentation.Dean Camera2010-03-291-0/+1
| | | | Remove accidentally duplicated model-specific peripheral driver files.
* Revert changes made for the partial port to the AVR32 architecture.Dean Camera2010-02-241-5/+3
|
* Update Temperature board driver to be AVR32 compatible when the ADC ↵Dean Camera2010-02-231-3/+3
| | | | | | peripheral driver is eventually ported. Make architecture includes explicit for both the AVR32 and the AVR8, to make way for future architecture ports. Add SPI driver aliases for the old function names in the AVR8 driver, so that existing code will still compile against the new version.
* Add drivers for the EVK1101 - begin full port to the AVR32 UC3B line of AVRs.Dean Camera2010-02-221-0/+2
|
* Add more include protection macros to give the user warnings when they try ↵Dean Camera2010-02-111-0/+1
| | | | to manually include private driver header files, instead of the public driver headers.
* New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which ↵Dean Camera2010-02-041-2/+2
| | | | | | 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.
* Update copyright year to 2010.Dean Camera2009-12-301-2/+2
|
* Fix MIT license language to make its intent clearer.Dean Camera2009-12-281-7/+7
|
* Increase timeout of Mass Storage and Still Image host commands to 10 seconds ↵Dean Camera2009-12-091-1/+1
| | | | | | | | (up from 5) to account for slow-processing devices. Added brace guards to macros with parameters to prevent unintended changed evaluation of the macro expression. Minor code cleanups (remove redundant comments, fix spacing, etc.).
* Added support for the Atmel EVK527 board hardware.Dean Camera2009-12-041-0/+2
|
* Added support for the Dataflash mounted on the XPLAIN board. Added new ↵Dean Camera2009-12-031-0/+4
| | | | XPLAIN_REV1 board target for the first revision XPLAIN board, which used a different (smaller) Dataflash IC to later revisions.
* Spell check all source code variables, comments and strings.Dean Camera2009-11-091-1/+1
|
* Doxygen fixes to \param directives to give data direction in all projects. ↵Dean Camera2009-09-241-2/+4
| | | | Make HID item filtering routines clearer in the HID WithParser demos.
* Removed unused INCLUDE_FROM_BOARD_DRIVER internal define from the board ↵Dean Camera2009-08-311-1/+0
| | | | driver dispatch headers.
* Fixed AVRISP programmer demo -- can now connect to a target and read/write ↵Dean Camera2009-08-231-7/+3
| | | | | | | | Sig/Lock/Fuse/OSCCAL bytes successfully. Changed SPI_Init() to allow for the clock polarity and data sample modes to be set. Changed Dataflash_Init() to no longer call SPI_Init() automatically.
* Added better module summaries.Dean Camera2009-07-141-1/+2
|
* Dataflash_WaitWhileBusy() now always ensures that the dataflash is ready for ↵Dean Camera2009-06-291-1/+14
| | | | | | | | the next command immediately after returning, no need to call Dataflash_ToggleSelectedChipCS() afterwards. Added new DATAFLASH_CHIP_MASK() macro to the Dataflash driver, which returns the Dataflash select mask for the given chip index. Updated MassStorage device block write routines to use ping-pong Dataflash buffering to increase throughput by around 30%.
* Added const modifiers to device mode class drivers.Dean Camera2009-06-281-9/+9
| | | | | | Added parameter directions to function parameter documentation. Added new experimental FAST_STREAM_FUNCTIONS compile time option to speed up stream transfers at the expense of a higher FLASH consumption (needs testing to verify improved throughput).
* Documentation enhancements to improve documentation cross-references.Dean Camera2009-04-221-1/+1
|
* Fixed incorrect HID interface class and subclass values in the Mouse and ↵Dean Camera2009-04-191-1/+1
| | | | | | | | KeyboardMouse demos (thanks to Brian Dickman). Capitolised the "Descriptor_Search" and "Descriptor_Search_Comp" prefixes of the values in the DSearch_Return_ErrorCodes_t and DSearch_Comp_Return_ErrorCodes_t enums. Minor documentation improvements.
* More documentation changes for better module-level documentation rather than ↵Dean Camera2009-04-171-0/+8
| | | | file-level documentation.
* Partial commit: change references to Drivers/AT90USBXXX to Drivers/Peripheral.Dean Camera2009-04-161-1/+1
|
* Fixed GenericHIDHost demo report write routine incorrect for control type ↵Dean Camera2009-04-161-13/+35
| | | | | | | | | | | | | | | | | | requests (thanks to Andrei Krainev). Removed Endpoint_ClearCurrentBank() and Pipe_ClearCurrentBank() in favour of new Endpoint_ClearIN(), Endpoint_ClearOUT(), Endpoint_ClearControlIN(), Endpoint_ClearControlOUT(), Pipe_ClearIN(), Pipe_ClearOUT(), Pipe_ClearControlIN() and Pipe_ClearControlOUT() macros (done to allow for the detection of packets of zero length). Renamed *_ReadWriteAllowed() macros to *_IsReadWriteAllowed() to remain consistent with the rest of the LUFA API. Endpoint_IsSetupReceived() macro has been renamed to Endpoint_IsSETUPReceived(), Endpoint_ClearSetupReceived() macro has been renamed to Endpoint_ClearControlSETUP(), the Pipe_IsSetupSent() macro has been renamed to Pipe_IsSETUPSent() and the Pipe_ClearSetupSent() macro is no longer applicable and should be removed - changes made to compliment the new endpoint and pipe bank management API. Updated all demos, bootloaders and projects to use the new endpoint and pipe management APIs (thanks to Roman Thiel). Updated library doxygen documentation, added groups, changed documentation macro functions to real functions for clarity. Removed old endpoint and pipe aliased read/write/discard routines which did not have an explicit endian specifier for clarity. Removed the ButtLoadTag.h header file, as no one used for its intended purpose anyway.
* Board Dataflash driver now allows for dataflash ICs which use different ↵Dean Camera2009-03-171-64/+38
| | | | shifts for setting the current page/byte address (thanks to Kenneth Clubb).
* Updated makefiles to reflect new dfu-ee programming target invocations ↵Dean Camera2009-03-041-3/+3
| | | | | | | | | | (supplied by Opendous, Inc.). Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts.
* Moved all source to the trunk directory.Dean Camera2009-02-231-0/+210