Hello,
I do not know if the USB DEVICE is supported on Maxim’s targets or not, but usually the USB DEVICE is not active in default.
When you check the target.json file for MbedOS 5.15 there is no USBDEVICE in the list.
You can try to add it via mbed_app.json
file, with something like this content.
{
"target_overrides": {
"*": {
"target.device_has_add": ["USBDEVICE"]
}
}
}
In the MbedOS 6.7 it was added in default configuration, so you can also try it with latest MbedOS and without the configuration via mbed_app.json
file.
BR, Jan