|
| 1 | +/** |
| 2 | + * @file mimxrt1060_evk.c |
| 3 | + * @brief board ID for the NXP MIMXRT1060-EVK board. |
| 4 | + * |
| 5 | + * DAPLink Interface Firmware |
| 6 | + * Copyright (c) 2020 - 2021 NXP, 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_board.h" |
| 23 | +#include "target_family.h" |
| 24 | + |
| 25 | +const board_info_t g_board_info = { |
| 26 | + .info_version = kBoardInfoVersion, |
| 27 | + .board_id = "0229", |
| 28 | + .family_id = kNXP_Mimxrt_FamilyID, |
| 29 | + .flags = kEnablePageErase, |
| 30 | + .daplink_url_name = "PRODINFOHTM", |
| 31 | + .daplink_drive_name = "RT1060-EVK", |
| 32 | + .daplink_target_url = "http://www.nxp.com/imxrt1060evk", |
| 33 | + .target_cfg = &target_device, |
| 34 | + .board_vendor = "NXP", |
| 35 | + .board_name = "MIMXRT1060-EVK", |
| 36 | +}; |
0 commit comments