Change UsbCommandId_WriteHardwareConfig and UsbCommandId_WriteUserConfig to 0x05 and 0x06.

This commit is contained in:
László Monda
2017-12-12 01:59:53 +01:00
parent 235e18d706
commit a212c254a9
4 changed files with 14 additions and 10 deletions

View File

@@ -1,9 +1,9 @@
#ifndef __USB_COMMAND_WRITE_CONFIG_H__
#define __USB_COMMAND_WRITE_CONFIG_H__
// Functions:
// Includes:
void UsbCommand_WriteConfig(bool isHardware);
#include "config_parser/config_globals.h"
// Typedefs:
@@ -12,4 +12,8 @@
UsbStatusCode_WriteConfig_BufferOutOfBounds = 3,
} usb_status_code_write_config_t;
// Functions:
void UsbCommand_WriteConfig(config_buffer_id_t configBufferId);
#endif