summaryrefslogtreecommitdiff
path: root/src/c/hardware/avr/gpio/u8AVRDigitalSetups.c
blob: e28c468c4f48d90882ef0acc24a306f21d88f863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Function to decide direction of a digital pin on AVR
//
// Calling Sequence
//     AVRDigitalSetup(port,pin,direction)
//
// Parameters
//     port : port of microcontroller to be used (1 for PORTA, 2 for PORTB,...)
//     pin : pin of port (mentioned above) to be used
//     direction : direction to be set for pin (0 for input, 1 for output)
//
// Description
//     Each AVR microcontroller has pins which can be configured as digital
//     outputs/inputs. These are normally divided among some 'ports' (group of pins).
//     User has to select one of these port and which pin of that port to be 
//     used as digital output/input. Also, desired direction must be specified as 
//     'INPUT' or 'OUTPUT'.     
//
// Examples
//     AVRDigitalSetup(1,0,1)
//
// Authors
//     Siddhesh Wani
//

#include "AVRPeripheralGPIO.h"


void u8AVRDigitalSetups(uint8 port,uint8 pin,uint8 direction)
{
    
    if (direction == INPUT)
    {/*Set pin as input*/      
	if(port == PORT_A)
   	{
	    DDRA = DDRA & ~(1<<pin);
   	}
	if(port == PORT_B)
   	{
	    DDRB = DDRB & ~(1<<pin);
   	}
	if(port == PORT_C)
   	{
	    DDRC = DDRC & ~(1<<pin);
   	}
	if(port == PORT_D)
   	{
	    DDRD = DDRD & ~(1<<pin);
   	}
    }
    else
    {/*Set pin as output*/
	if(port == PORT_A)
   	{
	    DDRA = DDRA | (1<<pin);
   	}
	if(port == PORT_B)
   	{
	    DDRB = DDRB | (1<<pin);
   	}
	if(port == PORT_C)
   	{
	    DDRC = DDRC | (1<<pin);
   	}
	if(port == PORT_D)
   	{
	    DDRD = DDRD | (1<<pin);
   	}
    }
}