Hi,
I have a command line build that uses syslink to load and kick off my DSP build from the ARM side on linux. This is basically a clone of the notify syslink example. I have also built and tested the BIOSPSP uart IOM example driver and I can load and run this on the DSP using CCS.
Now, I need to integrate the UART IOM serial port driver into the syslink command line build. I have a built this, but when I load and run it on the target, the driver initFxn is never getting called. I have copied the following lines into my syslink cfg file from the uart example driver cfg file:
var iomFxns = "Uart_IOMFXNS";
var initFxn = "user_uart_init";
var deviceParams = "uartParams";
var deviceId = 1;
GIO.addDeviceMeta("/uart1", iomFxns, initFxn, deviceId, deviceParams);
I am probably missing something in the configuration of my syslink build, but I am pretty clueless with configuro.
Thanks for any help!