|
| 1 | +/** |
| 2 | + * @file lpc55S69_nrf52840dk.c |
| 3 | + * @brief board file for test project MCU-LINK + nRF52840-DK |
| 4 | + * |
| 5 | + * DAPLink Interface Firmware |
| 6 | + * Copyright (c) 2009-2019, ARM Limited, All Rights Reserved |
| 7 | + * SPDX-License-Identifier: Apache-2.0 |
| 8 | + * |
| 9 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 10 | + * not use this file except in compliance with the License. |
| 11 | + * You may obtain a copy of the License at |
| 12 | + * |
| 13 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | + * |
| 15 | + * Unless required by applicable law or agreed to in writing, software |
| 16 | + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 17 | + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | + * See the License for the specific language governing permissions and |
| 19 | + * limitations under the License. |
| 20 | + */ |
| 21 | + |
| 22 | +#include "target_family.h" |
| 23 | +#include "target_board.h" |
| 24 | + |
| 25 | +extern target_cfg_t target_device_nrf52840; |
| 26 | + |
| 27 | +const board_info_t g_board_info = { |
| 28 | + .info_version = kBoardInfoVersion, |
| 29 | + .board_id = "1102", |
| 30 | + .family_id = kNordic_Nrf52_FamilyID, |
| 31 | + .flags = kEnablePageErase, |
| 32 | + .target_cfg = &target_device_nrf52840, |
| 33 | + .board_vendor = "Nordic Semiconductor", |
| 34 | + .board_name = "nRF52840-DK", |
| 35 | +}; |
0 commit comments