From 3273f588510e7080967a4e55ccde79a85c06d681 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Sun, 6 Oct 2024 14:22:17 +1100 Subject: [PATCH] AP_HAL: remove defines for boards which don't exist we'll now get compilation failures if code is introduced depending on these... --- libraries/AP_HAL/AP_HAL_Boards.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/AP_HAL/AP_HAL_Boards.h b/libraries/AP_HAL/AP_HAL_Boards.h index c12ac0e2be90b..1c3aa1b1648e7 100644 --- a/libraries/AP_HAL/AP_HAL_Boards.h +++ b/libraries/AP_HAL/AP_HAL_Boards.h @@ -7,12 +7,12 @@ #pragma once #define HAL_BOARD_SITL 3 -#define HAL_BOARD_SMACCM 4 // unused -#define HAL_BOARD_PX4 5 // unused +// #define HAL_BOARD_SMACCM 4 // unused +// #define HAL_BOARD_PX4 5 // unused #define HAL_BOARD_LINUX 7 -#define HAL_BOARD_VRBRAIN 8 +// #define HAL_BOARD_VRBRAIN 8 #define HAL_BOARD_CHIBIOS 10 -#define HAL_BOARD_F4LIGHT 11 // reserved +// #define HAL_BOARD_F4LIGHT 11 // reserved #define HAL_BOARD_ESP32 12 #define HAL_BOARD_QURT 13 #define HAL_BOARD_EMPTY 99