Content originally posted in LPCWare by smarly on Tue Jun 08 02:32:46 MST 2010
Hi,
I am also trying to acces IAP commands, without success (LPC1114).
If I try to reinvoke ISP doing the followings, it just hangs:
#define IAP_LOCATION 0x1fff1ff1
unsigned long command[5];
unsigned long result[4];
void (*iap_entry)(unsigned long *, unsigned long *) = (void *)IAP_LOCATION;
void ReinvokeISP(void)
{
command[0]=57;
iap_entry (command, result);
}
Am I doing something wrong ?
Thanks for your help.