Content originally posted in LPCWare by jaybee on Wed Nov 20 00:56:12 MST 2013
Hi, i am building a bootloader for lpc1788.
I know there is u-boot, but i have built a similar bootloader which reads the firmware via SD card for the lpc1769.
I have ported the code over to be used for lpc1788, however, i will get a hard fault error whenever i declare a large array for example
void main()
{
array buf[512];
debug_printf("test1");
}
just this code alone gives me hard fault error.... it seems that my configuration files are not setup properly, any hints???
i am using crossworks for arm ver 2.3
any help will be appreciated thank you.