Hello Jason,
Try to replace
"NUCLEO_L432KC": {
"target.flashiap-block-device": {
"base-address": "0x08000000",
"size": "0x4000"
},
with
"NUCLEO_L432KC": {
"flashiap-block-device.base-address": 0x08000000,
"flashiap-block-device.size": 0x4000
},
You can find additional info on how to configure Mbed library parameters here.
- In this case the name of the associated library is
flashiap-block-device
as indicated in the
mbed-os/storage/blockdevice/COMPONENT_FLASH/mbed_lib.json
file. - The parameters to configure are
base-address
andsize
.