Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ option(BREAKPAD "Enable BREAKPAD" OFF)
option(BUILD_CTRLM_FACTORY "Build Control Factory Test" OFF)
option(BUILD_CTRLM_SERVER "Build Control Server Daemon" OFF)
option(FDC_ENABLED "Enable FDC" OFF)
option(IP_ENABLED "Enable IP" OFF)
option(RF4CE_ENABLED "Enable RF4CE" ON)
option(TELEMETRY_SUPPORT "Enable TELEMETRY_SUPPORT" OFF)
option(THUNDER "Enable THUNDER" ON)
Expand Down Expand Up @@ -196,10 +195,6 @@ if(FDC_ENABLED)
add_compile_definitions(FDC_ENABLED)
endif()

if(IP_ENABLED)
add_compile_definitions(CTRLM_NETWORK_IP CTRLM_IP_HAL_LOG_ENABLED)
endif()

# RF4CE options
if(RF4CE_ENABLED)
# All RF4CE platforms have HAL NVM
Expand Down
1 change: 0 additions & 1 deletion ci/cov_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ cmake -G Ninja -S "$GITHUB_WORKSPACE" -B build/control \
-DTHUNDER_SECURITY=OFF \
-DBLE_ENABLED=OFF \
-DRF4CE_ENABLED=OFF \
-DIP_ENABLED=OFF \
-DTELEMETRY_SUPPORT=OFF \
-DAUTH_ENABLED=OFF \
-DXRSR_HTTP=OFF \
Expand Down
271 changes: 0 additions & 271 deletions include/ctrlm_hal_ip.h

This file was deleted.

1 change: 0 additions & 1 deletion src/ble/ctrlm_ble_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "ctrlm_ble_controller.h"
#include "ctrlm_ble_utils.h"
#include "ctrlm_controller.h"
#include "ctrlm_hal_ip.h"
#include "blercu/bleservices/blercuupgradeservice.h"
#include "ctrlm_telemetry_event.h"

Expand Down
2 changes: 0 additions & 2 deletions src/ctrlm.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#include "ctrlm_hal.h"
#include "ctrlm_hal_rf4ce.h"
#include "ctrlm_hal_ble.h"
#include "ctrlm_hal_ip.h"
#include "ctrlm_ipc.h"
#include "ctrlm_ipc_rcu.h"
#include "ctrlm_ipc_voice.h"
Expand Down Expand Up @@ -197,7 +196,6 @@ typedef struct {
typedef struct {
union {
ctrlm_hal_rf4ce_cfm_init_params_t rf4ce;
ctrlm_hal_ip_cfm_init_params_t ip;
ctrlm_hal_ble_cfm_init_params_t ble;
} params;
sem_t *semaphore;
Expand Down
1 change: 0 additions & 1 deletion src/ctrlm_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
#include "ctrlm_version_build.h"
#include "ctrlm_hal_rf4ce.h"
#include "ctrlm_hal_ble.h"
#include "ctrlm_hal_ip.h"
#include "ctrlm.h"
#include "ctrlm_log.h"
#include "ctrlm_utils.h"
Expand Down
Loading