Mobil_surveillance_system 1
Ports.c
Go to the documentation of this file.
00001 #include "Ports.h"
00002 
00004 
00010 
00011 void Ports_setPort2Pin(unsigned char ucPin)
00013 {
00014     // set pin to output 
00015     SET_BIT(P2DIR, ucPin);
00016     // set output to high
00017     SET_BIT(P2OUT, ucPin);
00018 }
 All Data Structures Files Functions Variables Typedefs Enumerations Defines