Part Number: PROCESSOR-SDK-AM335X
Other Parts Discussed in Thread: SYSBIOS
Tool/software: TI-RTOS
Hi,
I'm tryign to write a data to EMIF0 SDRAM memory by PRU and it dosen't work. I tried it on L3 OCMC0 and everything work fine. This is how I tried to do it:
On the ARM processor I use this code to generate a pointer pointing into EMIF0 SDRAM :
x = (uint32_t *)0x800230d0;
On the PRU side I tried to write 199 into that memory section:
int *addx = (int *)0x800230d0;
*addx = 199;
After all on ARM I read the adress by:
UART_printf("%x\n", *x);
And I get only 0 and terminal. Does PRU proc have connection to EMIF0 SDRAM? Cos whe i tried L3 OCMC0 memory everything work fine, can I use this memory instead of EMIF0 SDRAM?