From 1958b1dee473d5b44c1e9b843e75a666047a1003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 15 Jun 2017 18:04:03 +0200 Subject: [PATCH] Rename config_buffer.[ch] to config_state.[ch] --- right/src/config/{config_buffer.c => config_state.c} | 2 +- right/src/config/{config_buffer.h => config_state.h} | 0 right/src/usb_protocol_handler.c | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename right/src/config/{config_buffer.c => config_state.c} (57%) rename right/src/config/{config_buffer.h => config_state.h} (100%) diff --git a/right/src/config/config_buffer.c b/right/src/config/config_state.c similarity index 57% rename from right/src/config/config_buffer.c rename to right/src/config/config_state.c index 9923984..8d44809 100644 --- a/right/src/config/config_buffer.c +++ b/right/src/config/config_state.c @@ -1,3 +1,3 @@ -#include "config_buffer.h" +#include "config_state.h" uint8_t ConfigBuffer[EEPROM_SIZE]; diff --git a/right/src/config/config_buffer.h b/right/src/config/config_state.h similarity index 100% rename from right/src/config/config_buffer.h rename to right/src/config/config_state.h diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index cb75c3a..07f181b 100644 --- a/right/src/usb_protocol_handler.c +++ b/right/src/usb_protocol_handler.c @@ -5,7 +5,7 @@ #include "led_driver.h" #include "peripherals/merge_sensor.h" #include "config/parse_keymap.h" -#include "config/config_buffer.h" +#include "config/config_state.h" #include "led_pwm.h" #include "slave_scheduler.h" #include "slave_drivers/slave_driver_uhk_module.h"