I have a working JavaScript that is able to open a debug session, load a program, set breakpoints, etc. I have a directory that contains a bunch of images that I am trying to load in to the DSP and in turn, the running program will use the images to test. Currently I am able to get file into the DSP using the following commands:
var file_name = "C:/2501200000.bmp"
session.memory.loadRaw(0, bitmap0, file_name, 32, false);
This works as expected. Is there any support in the DSS to interact with a file system so that it can automatically scan the working directory and load all the files in that directory?
Thanks.