-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #551 from danielinux/mcxw71
Added support for NXP MCX W71
- Loading branch information
Showing
11 changed files
with
579 additions
and
71 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
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,42 @@ | ||
ARCH?=ARM | ||
TARGET?=mcxw | ||
SIGN?=ECC256 | ||
HASH?=SHA256 | ||
MCUXSDK?=1 | ||
MCUXPRESSO?=$(PWD)/../NXP/mcux-sdk | ||
MCUXPRESSO_CMSIS?=$(PWD)/../NXP/CMSIS_5/CMSIS | ||
MCUXPRESSO_CPU?=MCXW716CMFTA | ||
MCUXPRESSO_DRIVERS?=$(MCUXPRESSO)/devices/MCXW716C | ||
DEBUG?=0 | ||
VTOR?=1 | ||
CORTEX_M0?=0 | ||
NO_ASM?=0 | ||
NO_MPU=1 | ||
EXT_FLASH?=0 | ||
SPI_FLASH?=0 | ||
ALLOW_DOWNGRADE?=0 | ||
NVM_FLASH_WRITEONCE?=1 | ||
NO_ARM_ASM=1 | ||
WOLFBOOT_VERSION?=0 | ||
V?=0 | ||
SPMATH?=1 | ||
RAM_CODE?=1 | ||
DUALBANK_SWAP?=0 | ||
PKA?=1 | ||
|
||
# 8KB sectors | ||
WOLFBOOT_SECTOR_SIZE?=0x2000 | ||
|
||
# Default configuration | ||
# 32KB boot, 44KB partitions, 8KB swap | ||
WOLFBOOT_PARTITION_SIZE?=0xB000 | ||
WOLFBOOT_PARTITION_BOOT_ADDRESS?=0x8000 | ||
WOLFBOOT_PARTITION_UPDATE_ADDRESS?=0x13000 | ||
WOLFBOOT_PARTITION_SWAP_ADDRESS?=0x1E000 | ||
|
||
# Alternate larger configuration for debugging or ARMASM | ||
# 40KB boot, 40KB partitions, 8KB swap | ||
#WOLFBOOT_PARTITION_SIZE?=0xA000 | ||
#WOLFBOOT_PARTITION_BOOT_ADDRESS?=0xA000 | ||
#WOLFBOOT_PARTITION_UPDATE_ADDRESS?=0x14000 | ||
#WOLFBOOT_PARTITION_SWAP_ADDRESS?=0x1E000 |
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
Oops, something went wrong.