diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-21 16:19:32 +0000 | 
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-07-21 16:19:32 +0000 | 
| commit | 6bda628718f67c04ed43e8328f55bdce5319c504 (patch) | |
| tree | efd08eefa90cef94440f880a70902f5803fb12a7 /Demos/Device/ClassDriver/GenericHID | |
| parent | 83e293a6ec98c7faad1b76dd312b31b86cbeecc1 (diff) | |
| download | lufa-6bda628718f67c04ed43e8328f55bdce5319c504.tar.gz lufa-6bda628718f67c04ed43e8328f55bdce5319c504.tar.bz2 lufa-6bda628718f67c04ed43e8328f55bdce5319c504.zip | |
Update all demos, projects and bootloaders to indent all function parameters, one per line, for better readability.
Add missing const qualifiers to the demos.
Diffstat (limited to 'Demos/Device/ClassDriver/GenericHID')
| -rw-r--r-- | Demos/Device/ClassDriver/GenericHID/Descriptors.c | 4 | ||||
| -rw-r--r-- | Demos/Device/ClassDriver/GenericHID/Descriptors.h | 7 | ||||
| -rw-r--r-- | Demos/Device/ClassDriver/GenericHID/GenericHID.c | 14 | ||||
| -rw-r--r-- | Demos/Device/ClassDriver/GenericHID/GenericHID.h | 14 | 
4 files changed, 27 insertions, 12 deletions
| diff --git a/Demos/Device/ClassDriver/GenericHID/Descriptors.c b/Demos/Device/ClassDriver/GenericHID/Descriptors.c index 35b655949..b0413a657 100644 --- a/Demos/Device/ClassDriver/GenericHID/Descriptors.c +++ b/Demos/Device/ClassDriver/GenericHID/Descriptors.c @@ -189,7 +189,9 @@ USB_Descriptor_String_t PROGMEM ProductString =   *  is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the   *  USB host.   */ -uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, const uint8_t wIndex, void** const DescriptorAddress) +uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, +                                    const uint8_t wIndex, +                                    void** const DescriptorAddress)  {  	const uint8_t  DescriptorType   = (wValue >> 8);  	const uint8_t  DescriptorNumber = (wValue & 0xFF); diff --git a/Demos/Device/ClassDriver/GenericHID/Descriptors.h b/Demos/Device/ClassDriver/GenericHID/Descriptors.h index 410e1954f..2192da697 100644 --- a/Demos/Device/ClassDriver/GenericHID/Descriptors.h +++ b/Demos/Device/ClassDriver/GenericHID/Descriptors.h @@ -66,7 +66,8 @@  		#define GENERIC_REPORT_SIZE       8  	/* Function Prototypes: */ -		uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, const uint8_t wIndex, void** const DescriptorAddress) -											ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3); - +		uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, +		                                    const uint8_t wIndex, +		                                    void** const DescriptorAddress) ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3); +											  #endif diff --git a/Demos/Device/ClassDriver/GenericHID/GenericHID.c b/Demos/Device/ClassDriver/GenericHID/GenericHID.c index de01ef580..8b51b7657 100644 --- a/Demos/Device/ClassDriver/GenericHID/GenericHID.c +++ b/Demos/Device/ClassDriver/GenericHID/GenericHID.c @@ -143,8 +143,11 @@ void EVENT_USB_Device_StartOfFrame(void)   *   *  \return Boolean true to force the sending of the report, false to let the library determine if it needs to be sent   */ -bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID, -                                         const uint8_t ReportType, void* ReportData, uint16_t* const ReportSize) +bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, +                                         uint8_t* const ReportID, +                                         const uint8_t ReportType, +                                         void* ReportData, +                                         uint16_t* const ReportSize)  {  	if (HIDReportEcho.ReportID)  	  *ReportID = HIDReportEcho.ReportID; @@ -163,8 +166,11 @@ bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDIn   *  \param[in] ReportData  Pointer to a buffer where the created report has been stored   *  \param[in] ReportSize  Size in bytes of the received HID report   */ -void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, const uint8_t ReportID, -                                          const uint8_t ReportType, const void* ReportData, const uint16_t ReportSize) +void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, +                                          const uint8_t ReportID, +                                          const uint8_t ReportType, +                                          const void* ReportData, +                                          const uint16_t ReportSize)  {  	HIDReportEcho.ReportID   = ReportID;  	HIDReportEcho.ReportSize = ReportSize; diff --git a/Demos/Device/ClassDriver/GenericHID/GenericHID.h b/Demos/Device/ClassDriver/GenericHID/GenericHID.h index 632795862..8fa0b9354 100644 --- a/Demos/Device/ClassDriver/GenericHID/GenericHID.h +++ b/Demos/Device/ClassDriver/GenericHID/GenericHID.h @@ -72,9 +72,15 @@  		void EVENT_USB_Device_UnhandledControlRequest(void);  		void EVENT_USB_Device_StartOfFrame(void); -		bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID, -                                                 const uint8_t ReportType, void* ReportData, uint16_t* const ReportSize); -		void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, const uint8_t ReportID,  -		                                          const uint8_t ReportType, const void* ReportData, const uint16_t ReportSize); +		bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, +		                                         uint8_t* const ReportID, +                                                 const uint8_t ReportType, +		                                         void* ReportData, +		                                         uint16_t* const ReportSize); +		void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, +		                                          const uint8_t ReportID,  +		                                          const uint8_t ReportType, +		                                          const void* ReportData, +		                                          const uint16_t ReportSize);  #endif | 
