Post Go back to editing

the method of algorithm integration on ADSP-21489 EZ-Kit

Category: Software
Product Number: ADSP-21489 EZ-Kit
Software Version: CCES 2.10.1/sigmaStudio 4.6

dear,

I want to set a demo on ADSP-21489 board, which is used to demo for other ADSP users.

I created a Plug-In(algorithm module) in a SigmaStudio and I want to flash it to EZ-board. But the parameter size of the algo module is a little bit big(80k).

So I want to pack the parameters to a bin file and flash it to a specific address in ADSP-21489 board. Then algo module use the address to read the bin file and load parameters.

My question is that is it possible to do it? If so, how to get the address to flash bin file and how to use the address to read the bin file.

If this method is not correct, is there a good way to setup this demo?

Parents
  • Hi,

    You can use cldp.exe to flash the binary data into flash by choosing the flash address offset and the same offset can be used to read data from flash.

    "C:\Analog Devices\CrossCore Embedded Studio 2.10.1\cldp.exe" -proc ADSP-21489 -emu ICE-1000 -driver "C:\Analog Devices\ADSP-21489_EZKIT-Rel1.0.0\21489_EZ-Board\Examples\Device_Programmer\serial\21489_m25p16_dpia.dxe" -cmd prog -offset 75000 -erase none -format bin -file Test.bin

    Please refer the Device_Programmer example available in ADSP-21489 Board Support Package (Rev. 1.0.0).

    EVAL-21489-EZLITE Evaluation Board | Analog Devices

    Thanks.

Reply
  • Hi,

    You can use cldp.exe to flash the binary data into flash by choosing the flash address offset and the same offset can be used to read data from flash.

    "C:\Analog Devices\CrossCore Embedded Studio 2.10.1\cldp.exe" -proc ADSP-21489 -emu ICE-1000 -driver "C:\Analog Devices\ADSP-21489_EZKIT-Rel1.0.0\21489_EZ-Board\Examples\Device_Programmer\serial\21489_m25p16_dpia.dxe" -cmd prog -offset 75000 -erase none -format bin -file Test.bin

    Please refer the Device_Programmer example available in ADSP-21489 Board Support Package (Rev. 1.0.0).

    EVAL-21489-EZLITE Evaluation Board | Analog Devices

    Thanks.

Children