projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
0f45b9c
)
Oops - fix mixed "initialize" and "initialise" - opt for American spelling due to...
author
Dean Camera
<dean@fourwalledcubicle.com>
Fri, 30 Jul 2010 10:58:16 +0000
(10:58 +0000)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Fri, 30 Jul 2010 10:58:16 +0000
(10:58 +0000)
Bootloaders/DFU/BootloaderDFU.c
patch
|
blob
|
blame
|
history
Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h
patch
|
blob
|
blame
|
history
Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.c
patch
|
blob
|
blame
|
history
LUFA/Common/Common.h
patch
|
blob
|
blame
|
history
LUFA/Drivers/Peripheral/Serial.h
patch
|
blob
|
blame
|
history
LUFA/Drivers/USB/Class/Common/RNDIS.h
patch
|
blob
|
blame
|
history
LUFA/ManPages/ChangeLog.txt
patch
|
blob
|
blame
|
history
LUFA/ManPages/MigrationInformation.txt
patch
|
blob
|
blame
|
history
Projects/TempDataLogger/Lib/FATFs/ff.c
patch
|
blob
|
blame
|
history
Projects/Webserver/Lib/FATFs/ff.c
patch
|
blob
|
blame
|
history
Projects/Webserver/Lib/uip/uip.h
patch
|
blob
|
blame
|
history
diff --git
a/Bootloaders/DFU/BootloaderDFU.c
b/Bootloaders/DFU/BootloaderDFU.c
index
c14bd26
..
752c320
100644
(file)
--- a/
Bootloaders/DFU/BootloaderDFU.c
+++ b/
Bootloaders/DFU/BootloaderDFU.c
@@
-635,7
+635,7
@@
static void ProcessWriteCommand(void)
WaitForExit = true;
/* Check if empty request data array - an empty request after a filled request retains the
WaitForExit = true;
/* Check if empty request data array - an empty request after a filled request retains the
- previous valid request data, but initiali
s
es the reset */
+ previous valid request data, but initiali
z
es the reset */
if (!(SentCommand.DataSize))
{
if (SentCommand.Data[1] == 0x00) // Start via watchdog
if (!(SentCommand.DataSize))
{
if (SentCommand.Data[1] == 0x00) // Start via watchdog
diff --git
a/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h
b/Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h
index
285883b
..
17a34ac
100644
(file)
--- a/
Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h
+++ b/
Demos/Device/LowLevel/RNDISEthernet/Lib/RNDIS.h
@@
-61,7
+61,7
@@
/** Enum for the possible NDIS adapter states. */
enum RNDIS_States_t
{
/** Enum for the possible NDIS adapter states. */
enum RNDIS_States_t
{
- RNDIS_Uninitialized = 0, /**< Adapter currently uninitiali
s
ed */
+ RNDIS_Uninitialized = 0, /**< Adapter currently uninitiali
z
ed */
RNDIS_Initialized = 1, /**< Adapter currently initialized but not ready for data transfers */
RNDIS_Data_Initialized = 2, /**< Adapter currently initialized and ready for data transfers */
};
RNDIS_Initialized = 1, /**< Adapter currently initialized but not ready for data transfers */
RNDIS_Data_Initialized = 2, /**< Adapter currently initialized and ready for data transfers */
};
diff --git
a/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.c
b/Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.c
index
8e51279
..
543e1b8
100644
(file)
--- a/
Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.c
+++ b/
Demos/Host/Incomplete/BluetoothHost/BluetoothEvents.c
@@
-56,7
+56,7
@@
void Bluetooth_StackInitialized(void)
Bluetooth_State.LocalBDADDR[5], Bluetooth_State.LocalBDADDR[4], Bluetooth_State.LocalBDADDR[3],
\r
Bluetooth_State.LocalBDADDR[2], Bluetooth_State.LocalBDADDR[1], Bluetooth_State.LocalBDADDR[0]);
\r
\r
Bluetooth_State.LocalBDADDR[5], Bluetooth_State.LocalBDADDR[4], Bluetooth_State.LocalBDADDR[3],
\r
Bluetooth_State.LocalBDADDR[2], Bluetooth_State.LocalBDADDR[1], Bluetooth_State.LocalBDADDR[0]);
\r
\r
- /* Reinitiali
s
e the services placed on top of the Bluetooth stack ready for new connections */
\r
+ /* Reinitiali
z
e the services placed on top of the Bluetooth stack ready for new connections */
\r
RFCOMM_Initialize();
\r
}
\r
\r
RFCOMM_Initialize();
\r
}
\r
\r
diff --git
a/LUFA/Common/Common.h
b/LUFA/Common/Common.h
index
4f28543
..
e939b66
100644
(file)
--- a/
LUFA/Common/Common.h
+++ b/
LUFA/Common/Common.h
@@
-127,7
+127,7
@@
/** Swaps the byte ordering of a 16-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime, use \ref SwapEndian_16() instead. The result of this macro can be used
/** Swaps the byte ordering of a 16-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime, use \ref SwapEndian_16() instead. The result of this macro can be used
- * inside struct or other variable initiali
s
ers outside of a function, something that is not possible with the
+ * inside struct or other variable initiali
z
ers outside of a function, something that is not possible with the
* inline function variant.
*
* \param[in] x 16-bit value whose byte ordering is to be swapped.
* inline function variant.
*
* \param[in] x 16-bit value whose byte ordering is to be swapped.
@@
-138,7
+138,7
@@
/** Swaps the byte ordering of a 32-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime- use \ref SwapEndian_32() instead. The result of this macro can be used
/** Swaps the byte ordering of a 32-bit value at compile time. Do not use this macro for swapping byte orderings
* of dynamic values computed at runtime- use \ref SwapEndian_32() instead. The result of this macro can be used
- * inside struct or other variable initiali
s
ers outside of a function, something that is not possible with the
+ * inside struct or other variable initiali
z
ers outside of a function, something that is not possible with the
* inline function variant.
*
* \param[in] x 32-bit value whose byte ordering is to be swapped.
* inline function variant.
*
* \param[in] x 32-bit value whose byte ordering is to be swapped.
diff --git
a/LUFA/Drivers/Peripheral/Serial.h
b/LUFA/Drivers/Peripheral/Serial.h
index
23bbd6a
..
4eb74b9
100644
(file)
--- a/
LUFA/Drivers/Peripheral/Serial.h
+++ b/
LUFA/Drivers/Peripheral/Serial.h
@@
-90,7
+90,7
@@
void Serial_TxString(const char* StringPtr) ATTR_NON_NULL_PTR_ARG(1);
/* Inline Functions: */
void Serial_TxString(const char* StringPtr) ATTR_NON_NULL_PTR_ARG(1);
/* Inline Functions: */
- /** Initiali
ses the USART, ready for serial data transmission and reception. This initialis
es the interface to
+ /** Initiali
zes the USART, ready for serial data transmission and reception. This initializ
es the interface to
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
*
* \param[in] BaudRate Serial baud rate, in bits per second.
* standard 8-bit, no parity, 1 stop bit settings suitable for most applications.
*
* \param[in] BaudRate Serial baud rate, in bits per second.
diff --git
a/LUFA/Drivers/USB/Class/Common/RNDIS.h
b/LUFA/Drivers/USB/Class/Common/RNDIS.h
index
ab0126e
..
a6549c5
100644
(file)
--- a/
LUFA/Drivers/USB/Class/Common/RNDIS.h
+++ b/
LUFA/Drivers/USB/Class/Common/RNDIS.h
@@
-96,7
+96,7
@@
/** Enum for the possible NDIS adapter states. */
enum RNDIS_States_t
{
/** Enum for the possible NDIS adapter states. */
enum RNDIS_States_t
{
- RNDIS_Uninitialized = 0, /**< Adapter currently uninitiali
s
ed. */
+ RNDIS_Uninitialized = 0, /**< Adapter currently uninitiali
z
ed. */
RNDIS_Initialized = 1, /**< Adapter currently initialized but not ready for data transfers. */
RNDIS_Data_Initialized = 2, /**< Adapter currently initialized and ready for data transfers. */
};
RNDIS_Initialized = 1, /**< Adapter currently initialized but not ready for data transfers. */
RNDIS_Data_Initialized = 2, /**< Adapter currently initialized and ready for data transfers. */
};
diff --git
a/LUFA/ManPages/ChangeLog.txt
b/LUFA/ManPages/ChangeLog.txt
index
d97dc37
..
202cd2c
100644
(file)
--- a/
LUFA/ManPages/ChangeLog.txt
+++ b/
LUFA/ManPages/ChangeLog.txt
@@
-254,7
+254,7
@@
* devices from timing out the data pipes
* - Fixed the definition of the Endpoint_BytesInEndpoint() macro for the U4 series AVR parts
* - Fixed MIDI host Class driver MIDI_Host_SendEventPacket() routine not properly checking for Pipe ready before writing
* devices from timing out the data pipes
* - Fixed the definition of the Endpoint_BytesInEndpoint() macro for the U4 series AVR parts
* - Fixed MIDI host Class driver MIDI_Host_SendEventPacket() routine not properly checking for Pipe ready before writing
- * - Fixed use of deprecated struct initiali
s
ers, removed library unused parameter warnings when compiled with -Wextra enabled
+ * - Fixed use of deprecated struct initiali
z
ers, removed library unused parameter warnings when compiled with -Wextra enabled
* - Fixed Still Image Host Class driver truncating the PIMA response code (thanks to Daniel Seibert)
* - Fixed USB_CurrentMode not being reset to USB_MODE_NONE when the USB interface is shut down and both Host and Device modes can be
* used (thanks to Daniel Levy)
* - Fixed Still Image Host Class driver truncating the PIMA response code (thanks to Daniel Seibert)
* - Fixed USB_CurrentMode not being reset to USB_MODE_NONE when the USB interface is shut down and both Host and Device modes can be
* used (thanks to Daniel Levy)
@@
-540,7
+540,7
@@
* USB_INITERROR_NoUSBModeSpecified
* - Renamed USB_PowerOnFail event to USB_InitFailure
* - Renamed OTG.h header functions to be more consistent with the rest of the library API
* USB_INITERROR_NoUSBModeSpecified
* - Renamed USB_PowerOnFail event to USB_InitFailure
* - Renamed OTG.h header functions to be more consistent with the rest of the library API
- * - Changed over all deprecated GCC structure tag initiali
s
ers to the standardized C99 format (thanks to Mike Alexander)
+ * - Changed over all deprecated GCC structure tag initiali
z
ers to the standardized C99 format (thanks to Mike Alexander)
* - USB_HostRequest renamed to USB_ControlRequest, entire control request header is now read into USB_ControlRequest in Device mode
* rather than having the library pass only partially read header data to the application
* - The USB_UnhandledControlPacket event has had its parameters removed, in favor of accessing the new USB_ControlRequest structure
* - USB_HostRequest renamed to USB_ControlRequest, entire control request header is now read into USB_ControlRequest in Device mode
* rather than having the library pass only partially read header data to the application
* - The USB_UnhandledControlPacket event has had its parameters removed, in favor of accessing the new USB_ControlRequest structure
diff --git
a/LUFA/ManPages/MigrationInformation.txt
b/LUFA/ManPages/MigrationInformation.txt
index
bc3cfe5
..
3a23df0
100644
(file)
--- a/
LUFA/ManPages/MigrationInformation.txt
+++ b/
LUFA/ManPages/MigrationInformation.txt
@@
-122,7
+122,7
@@
* - The ADC_Off() function has been renamed to \ref ADC_ShutDown() to be consistent with the rest of the library.
* - The \ref SPI_Init() routine's parameters have changed, so that the clock polarity and data sampling modes can be set. See
* the \ref SPI_Init() function documentation for more details
* - The ADC_Off() function has been renamed to \ref ADC_ShutDown() to be consistent with the rest of the library.
* - The \ref SPI_Init() routine's parameters have changed, so that the clock polarity and data sampling modes can be set. See
* the \ref SPI_Init() function documentation for more details
- * - The \ref Dataflash_Init() routine no longer initiali
s
es the SPI bus - the SPI bus should be initialized manually via a
+ * - The \ref Dataflash_Init() routine no longer initiali
z
es the SPI bus - the SPI bus should be initialized manually via a
* call to SPI_Init() before using the Dataflash driver
*
* <b>Host Mode</b>
* call to SPI_Init() before using the Dataflash driver
*
* <b>Host Mode</b>
diff --git
a/Projects/TempDataLogger/Lib/FATFs/ff.c
b/Projects/TempDataLogger/Lib/FATFs/ff.c
index
0aedb6b
..
3da658e
100644
(file)
--- a/
Projects/TempDataLogger/Lib/FATFs/ff.c
+++ b/
Projects/TempDataLogger/Lib/FATFs/ff.c
@@
-1723,7
+1723,7
@@
FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
- /* Following code initiali
s
es the file system object */
+ /* Following code initiali
z
es the file system object */
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;
diff --git
a/Projects/Webserver/Lib/FATFs/ff.c
b/Projects/Webserver/Lib/FATFs/ff.c
index
e4d5234
..
31340df
100644
(file)
--- a/
Projects/Webserver/Lib/FATFs/ff.c
+++ b/
Projects/Webserver/Lib/FATFs/ff.c
@@
-1723,7
+1723,7
@@
FRESULT chk_mounted ( /* FR_OK(0): successful, !=0: any error occurred */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
if (fmt == 3) return FR_DISK_ERR;
if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */
- /* Following code initiali
s
es the file system object */
+ /* Following code initiali
z
es the file system object */
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;
if (LD_WORD(fs->win+BPB_BytsPerSec) != SS(fs)) /* (BPB_BytsPerSec must be equal to the physical sector size) */
return FR_NO_FILESYSTEM;
diff --git
a/Projects/Webserver/Lib/uip/uip.h
b/Projects/Webserver/Lib/uip/uip.h
index
abc7220
..
83a08a8
100644
(file)
--- a/
Projects/Webserver/Lib/uip/uip.h
+++ b/
Projects/Webserver/Lib/uip/uip.h
@@
-232,7
+232,7
@@
typedef struct uip_eth_addr uip_lladdr_t;
/**
* uIP initialization function.
*
/**
* uIP initialization function.
*
- * This function should be called at boot up to initiali
s
e the uIP
+ * This function should be called at boot up to initiali
z
e the uIP
* TCP/IP stack.
*/
void uip_init(void);
* TCP/IP stack.
*/
void uip_init(void);