diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-12-23 01:51:39 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-12-23 01:51:39 +0000 |
commit | f201f6697b7f99b63389509b42112026b8f6f76f (patch) | |
tree | 9f38b5271f3a5ff10083f4f3e27598ced92efe11 /Demos/Host/LowLevel/AndroidAccessoryHost/Lib | |
parent | 77f354609f0411fb6541da31a889186ad402838e (diff) | |
download | lufa-f201f6697b7f99b63389509b42112026b8f6f76f.tar.gz lufa-f201f6697b7f99b63389509b42112026b8f6f76f.tar.bz2 lufa-f201f6697b7f99b63389509b42112026b8f6f76f.zip |
Run wspurify script on /trunk/ and /branches/ C source files, to remove any trailing whitespace at the end of each line.
Diffstat (limited to 'Demos/Host/LowLevel/AndroidAccessoryHost/Lib')
-rw-r--r-- | Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c | 7 | ||||
-rw-r--r-- | Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c b/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c index 42c3a62fa..7e1e7c806 100644 --- a/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c +++ b/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.c @@ -33,8 +33,8 @@ * Android Accessory Mode utility functions, for the configuration of an attached * Android device into Android Accessory Mode ready for general communication. */ - -#include "AndroidAccessoryCommands.h" + +#include "AndroidAccessoryCommands.h" uint8_t Android_GetAccessoryProtocol(uint16_t* const Protocol) { @@ -79,5 +79,6 @@ uint8_t Android_StartAccessoryMode(void) }; Pipe_SelectPipe(PIPE_CONTROLPIPE); - return USB_Host_SendControlRequest(NULL); + return USB_Host_SendControlRequest(NULL); } + diff --git a/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h b/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h index 0fab7635f..00326aba2 100644 --- a/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h +++ b/Demos/Host/LowLevel/AndroidAccessoryHost/Lib/AndroidAccessoryCommands.h @@ -41,11 +41,12 @@ #include <stdbool.h> #include <LUFA/Drivers/USB/USB.h> - + /* Function Prototypes: */ uint8_t Android_GetAccessoryProtocol(uint16_t* const Protocol); uint8_t Android_SendString(const uint8_t StringIndex, const char* const String); - uint8_t Android_StartAccessoryMode(void); - + uint8_t Android_StartAccessoryMode(void); + #endif + |