Files
firmware/right/src/usb_commands/usb_command_write_config.h

20 lines
417 B
C

#ifndef __USB_COMMAND_WRITE_CONFIG_H__
#define __USB_COMMAND_WRITE_CONFIG_H__
// Includes:
#include "config_parser/config_globals.h"
// Typedefs:
typedef enum {
UsbStatusCode_WriteConfig_LengthTooLarge = 2,
UsbStatusCode_WriteConfig_BufferOutOfBounds = 3,
} usb_status_code_write_config_t;
// Functions:
void UsbCommand_WriteConfig(config_buffer_id_t configBufferId);
#endif