I have OMAP-L138 LCDK development board. I have u-boot wich starts after power-on. I have ARM and DSP projects like .out files. My ARm and DSP projects both work with SYSBIOS (I don't need Linux). And I wanna:
1) make .bin files from .out files
2) write .bin files into the microSD flash card
3) configure u-boot to load my .bin files from the flash card into the memory
4) run DSP project and ARM project
When I tried to do that steps I've got a failure: my ARM application doesn't work. I'm not sure that I made the right .bin file from the .out file - I used AISgen utility from TI to do that, but I don't know how it's compatible with u-boot.
This is a sample from my u-boot console:
U-Boot > fatload mmc 0 0xc1080000 test.bin
reading test.bin
3808 bytes read
U-Boot > go 0xc1080000
## Starting application at 0xC1080000 ...
My application must blink leds if it starts, but that doesn't happen.
Is it possible at all?