We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Dear all, I am using Realview (evaluation) and have the following program for LPC2148:
#include <LPC214x.h> #define LED 0x01000000 main() { IO1DIR |= LED; //use P1.24 for(;;){ IO1CLR |= LED ; IO1SET |= LED; } }
the crystal is 12M and multiple factor is 5, no VPB setup (i also tried VPBDIV=1). It means the system should run with CPU clock=60Mhz The problem is the LED blinks only with 1 MHz. I tried simulation but the time shown there still indicate that the LED blinks with frequency around 30Mhz. This happen not only with the LED but with any code i put. It seems that my system runs with 2Mhz CPU clock. Does any one have the same problem, please help me. Thanks a lot.
Thank you. But I think the pin and peripheral are not the problem. The LED is just one example. Actually I tried to put more code such as:
while(1) { IO1CLR=LED; CodeTakes5msWith60MHZClock(): IO1SET=LED; CodeTakes5msWith60MHZClock(): }
I expect to have LED blink with the cycle of 10ms but in fact it blinks with much slower cycle, around 200ms-300ms (20 times slower). I also use UART0 and timer 0 and they work with correct timing. I dont use IAP for Flash.
You haven't mentioned if you have enabled the MAM.
I had NOT enabled MAM before. I enabled it and the system works correctly now. Thank you for your useful advices.