Hi,
I have been trying to init the LCD registers using the starterware packages on the beagle bone. Accrding to the AM3359 Technical Reference Manual the first step is to write the value 0x00000007 to register (LCDBASE+0x6c). I use the following line of C Code:
*(unsigned int *)(0x4830E000+0x6c) = 0x00000007;
The processor immediately aborts after or during this instruction. Have tried the same syntax but using he GPIO registers and the processor is happy.
At first I thought it may be due to the CCS debugger etc, so loaded the code via the SD card. Same result, processor aborts.
Have also tried uing volatile keyword and the HW_REG(....) macro. Same result. Any ideas?
Thanks
Graeme