From 6bac2e629764371da0556802ba891786849b28c3 Mon Sep 17 00:00:00 2001 From: aanper Date: Mon, 17 Aug 2020 21:06:56 +0300 Subject: [PATCH 1/2] furi playground --- applications/furi_test/furi_test.c | 0 applications/furi_test/furi_test.h | 0 {app => core}/app.cpp | 0 {app => core}/flipper.h | 0 core/furi.c | 0 core/furi.h | 0 {app => core}/write.c | 0 7 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 applications/furi_test/furi_test.c create mode 100644 applications/furi_test/furi_test.h rename {app => core}/app.cpp (100%) rename {app => core}/flipper.h (100%) create mode 100644 core/furi.c create mode 100644 core/furi.h rename {app => core}/write.c (100%) diff --git a/applications/furi_test/furi_test.c b/applications/furi_test/furi_test.c new file mode 100644 index 00000000..e69de29b diff --git a/applications/furi_test/furi_test.h b/applications/furi_test/furi_test.h new file mode 100644 index 00000000..e69de29b diff --git a/app/app.cpp b/core/app.cpp similarity index 100% rename from app/app.cpp rename to core/app.cpp diff --git a/app/flipper.h b/core/flipper.h similarity index 100% rename from app/flipper.h rename to core/flipper.h diff --git a/core/furi.c b/core/furi.c new file mode 100644 index 00000000..e69de29b diff --git a/core/furi.h b/core/furi.h new file mode 100644 index 00000000..e69de29b diff --git a/app/write.c b/core/write.c similarity index 100% rename from app/write.c rename to core/write.c From 5fbb0a8957d8fec677704beb7913409717cda3fe Mon Sep 17 00:00:00 2001 From: aanper Date: Wed, 19 Aug 2020 08:24:47 +0300 Subject: [PATCH 2/2] fix makefile --- target_lo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target_lo/Makefile b/target_lo/Makefile index 93bdd886..93b7fc3e 100644 --- a/target_lo/Makefile +++ b/target_lo/Makefile @@ -23,9 +23,9 @@ BUILD_DIR = build C_SOURCES = \ Src/main.c -CPP_SOURCES = ../app/app.cpp +CPP_SOURCES = ../core/app.cpp -C_SOURCES += ../app/write.c +C_SOURCES += ../core/write.c C_SOURCES += Src/flipper_hal.c C_SOURCES += Src/lo_os.c C_SOURCES += Src/lo_hal.c