From 36cca31260d526b899af7876eb0bcbf2b85360e4 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Fri, 1 Feb 2019 09:57:09 +0000 Subject: [PATCH] UI: Move ui_portapack.* to common. Otherwise blinky won't build. TODO: Tried to tease apart all the dependencies to get blinky to build without, but it's such a twisted knot... --- firmware/{hackrf_usb => common}/ui_portapack.c | 0 firmware/{hackrf_usb => common}/ui_portapack.h | 0 firmware/hackrf_usb/CMakeLists.txt | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename firmware/{hackrf_usb => common}/ui_portapack.c (100%) rename firmware/{hackrf_usb => common}/ui_portapack.h (100%) diff --git a/firmware/hackrf_usb/ui_portapack.c b/firmware/common/ui_portapack.c similarity index 100% rename from firmware/hackrf_usb/ui_portapack.c rename to firmware/common/ui_portapack.c diff --git a/firmware/hackrf_usb/ui_portapack.h b/firmware/common/ui_portapack.h similarity index 100% rename from firmware/hackrf_usb/ui_portapack.h rename to firmware/common/ui_portapack.h diff --git a/firmware/hackrf_usb/CMakeLists.txt b/firmware/hackrf_usb/CMakeLists.txt index e6c827c1..67ddb20a 100644 --- a/firmware/hackrf_usb/CMakeLists.txt +++ b/firmware/hackrf_usb/CMakeLists.txt @@ -59,7 +59,7 @@ set(SRC_M4 if(USER_INTERFACE STREQUAL "PORTAPACK") SET(SRC_M4 ${SRC_M4} - ui_portapack.c + "${PATH_HACKRF_FIRMWARE_COMMON}/ui_portapack.c" ) endif()