Renamed Serial_Stream driver to SerialStream to remain consistent with the rest of the library's naming scheme for files.
This commit is contained in:
parent
5712b8dff6
commit
11bb2f2172
29 changed files with 33 additions and 33 deletions
|
@ -47,7 +47,7 @@
|
|||
* - 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
|
||||
* - Renamed the main Drivers/AT90USBXXX directory to Drivers/Peripheral
|
||||
* - Renamed the main Drivers/AT90USBXXX directory to Drivers/Peripheral, renamed the Serial_Stream driver to SerialStream
|
||||
*
|
||||
*
|
||||
* \section Sec_ChangeLog090401 Version 090401
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
#define JTAG_DEBUG_ASSERT(x) MACROS{ if (!(x)) { JTAG_DEBUG_BREAK(); } }MACROE
|
||||
|
||||
/** Macro for testing condition "x" and writing debug data to the serial stream if false. As a
|
||||
* prerequisite for this macro, the serial stream should be configured via the Serial_Stream driver.
|
||||
* prerequisite for this macro, the serial stream should be configured via the Peripheral/SerialStream driver.
|
||||
*
|
||||
* The serial output takes the form "{FILENAME}: Function {FUNCTION NAME}, Line {LINE NUMBER}: Assertion
|
||||
* {x} failed."
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
this software.
|
||||
*/
|
||||
|
||||
#include "Serial_Stream.h"
|
||||
#include "SerialStream.h"
|
||||
|
||||
FILE USARTStream = FDEV_SETUP_STREAM(SerialStream_TxByte, SerialStream_RxByte, _FDEV_SETUP_RW);
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
**/
|
||||
|
||||
/** \ingroup Group_SubsystemDrivers
|
||||
* @defgroup Group_SerialStream Serial Stream Driver - LUFA/Drivers/Peripheral/Serial_Stream.h
|
||||
* @defgroup Group_SerialStream Serial Stream Driver - LUFA/Drivers/Peripheral/SerialStream.h
|
||||
*
|
||||
* Functions, macros, variables, enums and types related to the setup of a serial stream, so that standard printf and other
|
||||
* C stream functions can be used on the serial port.
|
|
@ -16,6 +16,7 @@
|
|||
* - The ButtLoadTag.h header has been removed, as it was never used for its intended purpose. Projects should either remove all
|
||||
* BUTTLOADTAG elements, or download and extract ButtLoadTag.h header from the ButtLoad project.
|
||||
* - The Drivers/AT90USBXXX directory has been renamed to Drivers/Peripheral.
|
||||
* - The Serial_Stream driver has been renamed to SerialStream to remain consistent with the rest of the library naming scheme.
|
||||
*
|
||||
* <b>Library Demos</b>
|
||||
* - Most demos, bootloaders and applications have had significant changes from previous versions. Applications built off of any
|
||||
|
|
|
@ -24,7 +24,7 @@ LUFA_SRC_FILES = ./Drivers/USB/LowLevel/LowLevel.c \
|
|||
./MemoryAllocator/DynAlloc.c \
|
||||
./Drivers/Board/Temperature.c \
|
||||
./Drivers/Peripheral/Serial.c \
|
||||
./Drivers/Peripheral/Serial_Stream.c \
|
||||
./Drivers/Peripheral/SerialStream.c \
|
||||
|
||||
all:
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue