forked from ARMmbed/DAPLink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add lpc4367xpresso interface project
- Loading branch information
1 parent
0f1a603
commit 543ac90
Showing
5 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
common: | ||
sources: | ||
board: | ||
- source/board/lpc4367xpresso.c | ||
family: | ||
- source/family/nxp/lpc43xx/target_lpc4367.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* @file lpc4367xpresso.c | ||
* @brief board ID for the NXP LPC4367Xpresso board | ||
* | ||
* DAPLink Interface Firmware | ||
* Copyright (c) 2022, 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_family.h" | ||
#include "target_board.h" | ||
|
||
const board_info_t g_board_info = { | ||
.info_version = kBoardInfoVersion, | ||
.board_id = "4367", | ||
.family_id = kStub_HWReset_FamilyID, | ||
.daplink_url_name = "PRODINFOHTM", | ||
.daplink_drive_name = "LPC4367", | ||
.daplink_target_url = "https://os.mbed.com/platforms/LPCXpresso4337", | ||
.target_cfg = &target_device, | ||
.board_vendor = "NXP", | ||
.board_name = "LPC4367Xpresso", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* @file target.c | ||
* @brief Target information for the lpc4367 | ||
* | ||
* DAPLink Interface Firmware | ||
* Copyright (c) 2022, 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_config.h" | ||
#include "daplink_debug.h" | ||
// The file flash_blob.c must only be included in target.c | ||
#include "flash_blob.c" | ||
|
||
// target information | ||
target_cfg_t target_device = { | ||
.version = kTargetConfigVersion, | ||
.sectors_info = sectors_info, | ||
.sector_info_length = (sizeof(sectors_info))/(sizeof(sector_info_t)), | ||
.flash_regions[0].start = 0x1a000000, | ||
.flash_regions[0].end = 0x1a000000 + KB(512), | ||
.flash_regions[0].flags = kRegionIsDefault, | ||
.flash_regions[0].flash_algo = (program_target_t *) &flash, | ||
.flash_regions[1].start = 0x1b000000, | ||
.flash_regions[1].end = 0x1b000000 + KB(512), | ||
.flash_regions[1].flags = 0, | ||
.flash_regions[1].flash_algo = (program_target_t *) &flash, | ||
.ram_regions[0].start = 0x10000000, | ||
.ram_regions[0].end = 0x10000000 + KB(32), | ||
.target_vendor = "NXP", | ||
.target_part_number = "LPC4367JET100", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters