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.
Hay I am new to LPC2114 microcontroller
In 8051 pins are bit addressable using sbit (Keil-C51) so I can declare input switch & out put LED as
Ex: sbit SWITCH P1^1 Ex: sbit LED P1^4
How to declare the input switch & out put LED in LPC2114 using Keil-ARM
Regards naresh
Set and reset a specific bit. Note that the register names are just from the previous post. You have to check the exact register names for the specific port in your user manual/datasheet.
IOSET = 1 << 4; IOCLR = 1 << 4;