From 717ecd04501ce4311ce5abf32c9ebc3e9adc91fb Mon Sep 17 00:00:00 2001 From: Mathias Brossard Date: Thu, 21 Oct 2021 00:05:49 -0500 Subject: [PATCH] deprecation: remove lpc11u35_ro359b_if project --- projects.yaml | 4 ---- records/board/ro359b.yaml | 6 ------ source/board/ro359b.c | 31 ------------------------------- test/info.py | 3 --- 4 files changed, 44 deletions(-) delete mode 100644 records/board/ro359b.yaml delete mode 100644 source/board/ro359b.c diff --git a/projects.yaml b/projects.yaml index 013a7a3b7f..7a877a54fc 100644 --- a/projects.yaml +++ b/projects.yaml @@ -413,10 +413,6 @@ projects: - *module_if - *module_hic_lpc11u35 - records/board/nz32_sc151.yaml - lpc11u35_ro359b_if: - - *module_if - - *module_hic_lpc11u35 - - records/board/ro359b.yaml lpc11u35_rtl8195am_if: - *module_if - *module_hic_lpc11u35 diff --git a/records/board/ro359b.yaml b/records/board/ro359b.yaml deleted file mode 100644 index 41bb9c6866..0000000000 --- a/records/board/ro359b.yaml +++ /dev/null @@ -1,6 +0,0 @@ -common: - sources: - board: - - source/board/ro359b.c - family: - - source/family/freescale/k64f/target.c diff --git a/source/board/ro359b.c b/source/board/ro359b.c deleted file mode 100644 index 95b19c595b..0000000000 --- a/source/board/ro359b.c +++ /dev/null @@ -1,31 +0,0 @@ -/** - * @file ro359b.c - * @brief board ID for the RO359B board - * - * DAPLink Interface Firmware - * Copyright (c) 2009-2019, ARM Limited, All Rights Reserved - * SPDX-License-Identifier: Apache-2.0 - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may - * not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "target_board.h" -#include "target_family.h" - -const board_info_t g_board_info = { - .info_version = kBoardInfoVersion, - .board_id = "1022", - .family_id = kStub_HWReset_FamilyID, - .daplink_drive_name = "MBED ", - .target_cfg = &target_device, -}; diff --git a/test/info.py b/test/info.py index ed7d23b1c1..3c9909cd57 100644 --- a/test/info.py +++ b/test/info.py @@ -66,7 +66,6 @@ ("lpc11u35_hrm1017_if", False, 0x0000, "bin" ), ("lpc11u35_sscity_if", False, 0x0000, "bin" ), ("lpc11u35_ssci824_if", False, 0x0000, "bin" ), - ("lpc11u35_ro359b_if", False, 0x0000, "bin" ), ("lpc11u35_archlink_if", False, 0x0000, "bin" ), ("lpc11u35_tiny_if", False, 0x0000, "bin" ), ("lpc11u35_c027_if", False, 0x0000, "bin" ), @@ -171,7 +170,6 @@ def VENDOR_TO_FAMILY(x, y) : return (VENDOR_ID[x] <<8) | y ( 0x1018, VENDOR_TO_FAMILY('Stub', 1), 'lpc11u35_ssci824_if', None, 'Switch-Science-mbed-LPC824' ), ( 0x1019, VENDOR_TO_FAMILY('Nordic', 1), 'lpc11u35_sscity_if', None, 'Switch-Science-mbed-TY51822r3' ), ( 0x1021, VENDOR_TO_FAMILY('Nordic', 1), 'lpc11u35_ssci_chibi_if', None, None ), # TODO - set target to 'SSCI-MBIT' when mbed-os supports this - ( 0x1022, VENDOR_TO_FAMILY('Stub', 1), 'lpc11u35_ro359b_if', None, None ), ( 0x1050, VENDOR_TO_FAMILY('Stub', 1), 'lpc11u35_lpc812xpresso_if', None, 'NXP-LPC800-MAX' ), ( 0x1054, VENDOR_TO_FAMILY('Stub', 1), 'lpc4322_lpc54114xpresso_if', 'lpc4322_bl', 'LPCXpresso54114' ), ( 0x1056, VENDOR_TO_FAMILY('Stub', 1), 'lpc4322_lpc54608xpresso_if', 'lpc4322_bl', 'LPCXpresso54608' ), @@ -263,7 +261,6 @@ def VENDOR_TO_FAMILY(x, y) : return (VENDOR_ID[x] <<8) | y 0x0261, # FRDM-KL27Z 0x0262, # FRDM-KL43Z 0x0218, # FRDM-KL82Z - 0x1022, # RO359B (K24F) 0x0201, # KW41Z ])