diff options
author | siddhu8990 | 2015-11-28 11:01:40 +0530 |
---|---|---|
committer | siddhu8990 | 2015-11-28 11:01:40 +0530 |
commit | 88c02bb9dad7d955676fe44f6595f996bde3f07e (patch) | |
tree | e8c018a5a9535b2bd06356d4c5abf0368bbe9845 /src/c/hardware/avr/gpio/u8AVRDigitalIns.c | |
parent | dd343609eabf4afcee2aa8eeeda3a383333d30e5 (diff) | |
download | scilab2c-88c02bb9dad7d955676fe44f6595f996bde3f07e.tar.gz scilab2c-88c02bb9dad7d955676fe44f6595f996bde3f07e.tar.bz2 scilab2c-88c02bb9dad7d955676fe44f6595f996bde3f07e.zip |
Intermediate commit aith support added for AVR (GPIO,ADC). Does not support other targets.
Diffstat (limited to 'src/c/hardware/avr/gpio/u8AVRDigitalIns.c')
-rw-r--r-- | src/c/hardware/avr/gpio/u8AVRDigitalIns.c | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/c/hardware/avr/gpio/u8AVRDigitalIns.c b/src/c/hardware/avr/gpio/u8AVRDigitalIns.c new file mode 100644 index 00000000..6b61a56b --- /dev/null +++ b/src/c/hardware/avr/gpio/u8AVRDigitalIns.c @@ -0,0 +1,54 @@ +// Function to get current state (high\low) of a digital pin on AVR +// +// Calling Sequence +// u8AVRDigitalIns(port,pin) +// +// Parameters +// port : port of microcontroller to be used (1 for PORTA, 2 for PORTB,...) +// pin : pin of port (mentioned above) to be used +// Returns-> +// state : state of the pin (0 for low and 1 for high) +// +// Description +// Each AVR microcontroller has pins which can be configured as digital +// outputs. These are normally divided among some 'ports' (group of pins). +// User has to select one of these port and which pin of that port is to +// be read. Function returns current state of the pin '1' (high) or '0' (low). +// +// +// Examples +// state = u8AVRDigitalIns(1,0) +// +// Authors +// Siddhesh Wani +// + + +#include "AVRPeripheralGPIO.h" + +uint8 u8AVRDigitalIns(uint8 port,uint8 pin) +{ + uint8 state = 0; + if(port == PORT_A) + { + state = (uint8)(PINA & (1<<pin)); + return state; + } + if(port == PORT_B) + { + state = (uint8)(PINB & (1<<pin)); + return state; + } + if(port == PORT_C) + { + state = (uint8)(PINC & (1<<pin)); + return state; + } + if(port == PORT_D) + { + state = (uint8)(PIND & (1<<pin)); + return state; + } + +//return state; +} |