19 lines
394 B
C
19 lines
394 B
C
#ifndef __USB_COMMAND_GET_MODULE_PROPERTY_H__
|
|
#define __USB_COMMAND_GET_MODULE_PROPERTY_H__
|
|
|
|
// Functions:
|
|
|
|
void UsbCommand_GetModuleProperty();
|
|
|
|
// Typedefs:
|
|
|
|
typedef enum {
|
|
ModulePropertyId_VersionNumbers = 0,
|
|
} module_property_id_t;
|
|
|
|
typedef enum {
|
|
UsbStatusCode_GetModuleProperty_InvalidModuleSlotId = 2,
|
|
} usb_status_code_get_module_property_t;
|
|
|
|
#endif
|