From e0ca16525ded49848f350cf32d008c09af3c74cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 11 Apr 2017 22:48:54 +0200 Subject: [PATCH] Move crc16.[ch] one directory level upwards. --- right/src/buspal/command.c | 2 +- right/src/buspal/{crc => }/crc16.c | 2 +- right/src/buspal/{crc => }/crc16.h | 0 right/src/buspal/packet/serial_packet.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename right/src/buspal/{crc => }/crc16.c (99%) rename right/src/buspal/{crc => }/crc16.h (100%) diff --git a/right/src/buspal/command.c b/right/src/buspal/command.c index 1ea59f4..3d44a02 100644 --- a/right/src/buspal/command.c +++ b/right/src/buspal/command.c @@ -5,7 +5,7 @@ #include #include "command.h" #include "packet/serial_packet.h" -#include "crc/crc16.h" +#include "crc16.h" //#include "utilities/fsl_rtos_abstraction.h" #include "fsl_flash.h" diff --git a/right/src/buspal/crc/crc16.c b/right/src/buspal/crc16.c similarity index 99% rename from right/src/buspal/crc/crc16.c rename to right/src/buspal/crc16.c index 738d912..d845674 100644 --- a/right/src/buspal/crc/crc16.c +++ b/right/src/buspal/crc16.c @@ -1,5 +1,5 @@ #include "bootloader_common.h" -#include "crc/crc16.h" +#include "crc16.h" //#include "utilities/fsl_assert.h" //#include "utilities/fsl_rtos_abstraction.h" diff --git a/right/src/buspal/crc/crc16.h b/right/src/buspal/crc16.h similarity index 100% rename from right/src/buspal/crc/crc16.h rename to right/src/buspal/crc16.h diff --git a/right/src/buspal/packet/serial_packet.c b/right/src/buspal/packet/serial_packet.c index aa59d6c..76d608f 100644 --- a/right/src/buspal/packet/serial_packet.c +++ b/right/src/buspal/packet/serial_packet.c @@ -6,7 +6,7 @@ #include "packet/serial_packet.h" #include "fsl_common.h" #include "bl_peripheral.h" -#include "crc/crc16.h" +#include "crc16.h" //#include "utilities/fsl_assert.h" #ifndef BOOTLOADER_HOST