From f80bbd93ea57f867fa84b069813ce189abe52403 Mon Sep 17 00:00:00 2001 From: Michal Horn Date: Wed, 15 Apr 2015 15:46:18 +0200 Subject: [PATCH] Move platform dependent files to the platform specific directory --- rpp-test-sw/commands/{ => _rm48_hdk}/cmd.c | 10 +++++----- rpp-test-sw/commands/{ => _rm48_hdk}/cmd_adc.c | 2 +- rpp-test-sw/commands/{ => _rm48_hdk}/cmd_pin.c | 2 +- rpp-test-sw/commands/{ => _rm48_hdk}/cmd_port.c | 2 +- rpp-test-sw/commands/{ => _rm48_hdk}/main.c | 0 5 files changed, 8 insertions(+), 8 deletions(-) rename rpp-test-sw/commands/{ => _rm48_hdk}/cmd.c (95%) rename rpp-test-sw/commands/{ => _rm48_hdk}/cmd_adc.c (99%) rename rpp-test-sw/commands/{ => _rm48_hdk}/cmd_pin.c (99%) rename rpp-test-sw/commands/{ => _rm48_hdk}/cmd_port.c (99%) rename rpp-test-sw/commands/{ => _rm48_hdk}/main.c (100%) diff --git a/rpp-test-sw/commands/cmd.c b/rpp-test-sw/commands/_rm48_hdk/cmd.c similarity index 95% rename from rpp-test-sw/commands/cmd.c rename to rpp-test-sw/commands/_rm48_hdk/cmd.c index 69f90fa..2ef304d 100644 --- a/rpp-test-sw/commands/cmd.c +++ b/rpp-test-sw/commands/_rm48_hdk/cmd.c @@ -20,11 +20,11 @@ /* Include files */ #include "cmdproc.h" -#include "cmd.h" -#include "cmd_adc.h" -#include "cmd_can.h" -#include "cmd_pin.h" -#include "cmd_port.h" +#include "../cmd.h" +#include "../cmd_adc.h" +#include "../cmd_can.h" +#include "../cmd_pin.h" +#include "../cmd_port.h" #ifndef DOCGEN diff --git a/rpp-test-sw/commands/cmd_adc.c b/rpp-test-sw/commands/_rm48_hdk/cmd_adc.c similarity index 99% rename from rpp-test-sw/commands/cmd_adc.c rename to rpp-test-sw/commands/_rm48_hdk/cmd_adc.c index e6a621d..6287606 100644 --- a/rpp-test-sw/commands/cmd_adc.c +++ b/rpp-test-sw/commands/_rm48_hdk/cmd_adc.c @@ -18,7 +18,7 @@ * */ -#include "cmd_adc.h" +#include "../cmd_adc.h" #ifndef DOCGEN diff --git a/rpp-test-sw/commands/cmd_pin.c b/rpp-test-sw/commands/_rm48_hdk/cmd_pin.c similarity index 99% rename from rpp-test-sw/commands/cmd_pin.c rename to rpp-test-sw/commands/_rm48_hdk/cmd_pin.c index 65fd0a2..cb73203 100644 --- a/rpp-test-sw/commands/cmd_pin.c +++ b/rpp-test-sw/commands/_rm48_hdk/cmd_pin.c @@ -20,7 +20,7 @@ * - Setting and getting pins direction */ -#include "cmd_pin.h" +#include "../cmd_pin.h" #include "stdio.h" #include "string.h" diff --git a/rpp-test-sw/commands/cmd_port.c b/rpp-test-sw/commands/_rm48_hdk/cmd_port.c similarity index 99% rename from rpp-test-sw/commands/cmd_port.c rename to rpp-test-sw/commands/_rm48_hdk/cmd_port.c index bbad320..06f6ab0 100644 --- a/rpp-test-sw/commands/cmd_port.c +++ b/rpp-test-sw/commands/_rm48_hdk/cmd_port.c @@ -19,7 +19,7 @@ * - Setting/getting port value* */ -#include "cmd_port.h" +#include "../cmd_port.h" #include "stdio.h" #ifndef DOCGEN diff --git a/rpp-test-sw/commands/main.c b/rpp-test-sw/commands/_rm48_hdk/main.c similarity index 100% rename from rpp-test-sw/commands/main.c rename to rpp-test-sw/commands/_rm48_hdk/main.c -- 2.39.2