Hello Readers:
I have started this blog to show you Embedded C programming for 8051 family microcontroller using KEIL compiler. The KISS philosophy is used to write this tutorial. What is KISS? Keep It Simple, Stupid!
2. Manipulating Port Pins
This section teaches you how to manipulate port pins bytewise and bitwise.
2.2 Bitwise [single bit]
Now we see how to control port pins bitwise.
This program blinks single LED when KEY is pressed and thus shows how to manipulate single bit of microcontroller chip. Here LED bit is configured as output pin and KEY bit as input pin. Note that this is code optimized version of previous program PGM_223.C.
Code explanation:
Line 08 & 07: Declaring 0th & 1st bit of Port 2 as LED & KEY bits respectively.
Line 17: This statement makes KEY pin as input pin.
Line 18: This statement creates infinite loop.
Line 21: The if control structure checks whether KEY pin is LOW, and if yes makes LED pin HIGH. Note that when you press KEY the pin voltage becomes low.
Line 26: This else code block executes if KEY pin is not LOW, or it is HIGH. Note that when key is not pressed, +Vcc flows to KEY pin and thus acts as logic HIGH.
After typing the code, press F7 or click Project->Build Target for building the source code. If there are no typical errors file will build successively and shows zero errors and zero warnings. You can burn the hex file generated by this program for hardware simulation and for software simulation we need below program.
To enter into debug mode press Ctrl+F5 or click Debug->Start/Stop Debug Session menu. Our program is having one input pin [P2^1] and one output pin [P2^0] in port2. So we want to watch the Port 2 pins while running this program for changing values. To get Port 2 tab click Peripherals->I/O Ports->Port 2 menu. Here we need ToolBox for inputting key press signals, and you get it by clicking View->Toll Box Window menu. Now your debug windows looks like above screen shot.
Run the program by pressing F5 or clicking Debug->Run. You can see initially Port 2 KEY bit is high and still LED is OFF. Now press KEY LOW button on ToolBox. Port 2 KEY bit changes to low and LED becomes HIGH or ON. To turn off the LED press KEY HIGH button from ToolBox. Thus we verified that our program will work fine with hardware interface. To stop running the program press red ‘x’ mark icon or click Debug->Stop.
...till next post bye-bye & take care.
No comments:
Post a Comment