lpc2148 + gnu arm

OP #1203367
Rate this post
useful
not useful
I am new to lpc2148. I have installed gnuarm on my Debian machine.I have 
read the the user manual for lpc2148. and have written ledblinking.c.But 
i dont know which header file to include compiler option.
Also i need information about adc and pwm using lpc2148.
Kindly help.

void delay()
{
  unsigned int i;
  for(i=0;i<100000;i++);
}
main()
{
  IO0DIR=0x00000080;
  while(1)
  {
    IO0CLR=0x00000080;
    delay();
    IO0SET=0x00000080;
    delay();
  }
}
Guest #1203587
Rate this post
useful
not useful
>...
>i dont know which header file to include compiler option
NXP provides a sample package for LPC213x/214x. There is a 
register-defintion-file included. It's compatible with the GNU tools.

>Also i need information about adc and pwm using lpc2148
Re-read the manual, read the source code of the NXP examples.

-unsigned int i;
+volatile unsigned int i;

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now