The way to set the ADDITIONAL_DEVICES for custom BSP(for Modus Toolbox2.4)

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
TakMune
Level 4
Level 4
Distributor - Macnica (Japan)
First like given 100 sign-ins First solution authored

I try to make project for custom BSP following below.
https://community.infineon.com/t5/Knowledge-Base-Articles/ModusToolbox%E3%81%A7%E3%81%AE%E3%82%AB%E3...

Target bsp includes below.
*host:CY8C6247BZI-D54
*RF Device:CYW43439KUBG

Terefore I executed below command.
bsp TARGET_GEN=test DEVICE_GEN=CY8C6247BZI-D54 ADDITIONAL_DEVICES_GEN=CYW43439KUBG
(*Original BSP is PSOC6-GENERIC)

In this case, the host(DEVICE) can be generated as expected, but ADDITIONAL_DEVICES is not generated.
How I can add the inteded ADDITIONAL_DEVICES?

Thanks

0 Likes
1 Solution
tayo
Level 5
Level 5
Distributor - Macnica (Japan)
100 replies posted 25 solutions authored 250 sign-ins

Hi,

Could you please follow below procesre?
1.Open the file "<target_name>.mk" exists under the TARGET_<target name> folder.
2.Edit the "<target_name>.mk" as below.
ADDITIONAL_DEVICES:=CYW43439KUBG
COMPONENTS+=CM0P_SLEEP BSP_DESIGN_MODUS PSOC6HAL UDB_SDIO_P2 43439 AZW-IFW56810 HCI-UART

*Here AZW-IFW56810 is used as a part of nvram file's path name(for wifi) and hcd file's path name(for BT).
So it is better that you prepare the correct nvram file and hcd file.

Thanks

View solution in original post

0 Likes
1 Reply
tayo
Level 5
Level 5
Distributor - Macnica (Japan)
100 replies posted 25 solutions authored 250 sign-ins

Hi,

Could you please follow below procesre?
1.Open the file "<target_name>.mk" exists under the TARGET_<target name> folder.
2.Edit the "<target_name>.mk" as below.
ADDITIONAL_DEVICES:=CYW43439KUBG
COMPONENTS+=CM0P_SLEEP BSP_DESIGN_MODUS PSOC6HAL UDB_SDIO_P2 43439 AZW-IFW56810 HCI-UART

*Here AZW-IFW56810 is used as a part of nvram file's path name(for wifi) and hcd file's path name(for BT).
So it is better that you prepare the correct nvram file and hcd file.

Thanks

0 Likes