Hello,
I'm using AM335xBeagleBone+AM335X_StarterWare_02_00_01_01+CCSv6.
In AM335X_StarterWare sample,
AM335X_StarterWare_02_00_01_01\examples\beaglebone\gpio\gpioLEDBlink.c
I've added 4 lines in main function like follows.
int main()
{
unsigned char dat;
unsigned char arr1[2]={0,1};
unsigned char arr2[2]={2,3};
dat = 100;
/* Enabling functional clocks for GPIO1 instance. */
GPIO1ModuleClkConfig();
/* Selecting GPIO1[23] pin for use. */
GPIO1Pin23PinMuxSetup();
.................
This modification caused a DATA ABORT.
Compile Options, Link Options and any other configurations are same to original
AM335X_StarterWare_02_00_01_01\examples\beaglebone\gpio.
Why does the ABORT happen ?
Regards,
Takeshi Matsuzaki