From 57a6c94145f5a23981b7caf841db0acd7212ced7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 15 Jun 2017 17:53:35 +0200 Subject: [PATCH] Move config_buffer.[ch] to the config_parser directory. --- right/src/{ => config_parser}/config_buffer.c | 0 right/src/{ => config_parser}/config_buffer.h | 0 right/src/usb_protocol_handler.c | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename right/src/{ => config_parser}/config_buffer.c (100%) rename right/src/{ => config_parser}/config_buffer.h (100%) diff --git a/right/src/config_buffer.c b/right/src/config_parser/config_buffer.c similarity index 100% rename from right/src/config_buffer.c rename to right/src/config_parser/config_buffer.c diff --git a/right/src/config_buffer.h b/right/src/config_parser/config_buffer.h similarity index 100% rename from right/src/config_buffer.h rename to right/src/config_parser/config_buffer.h diff --git a/right/src/usb_protocol_handler.c b/right/src/usb_protocol_handler.c index aa3d120..d28326e 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_parser/deserialize.h" -#include "config_buffer.h" +#include "config_parser/config_buffer.h" #include "led_pwm.h" #include "slave_scheduler.h" #include "slave_drivers/slave_driver_uhk_module.h"