PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
getOutputs.c
1 /*
2  * @file getOutputs.c
3  *
4  * @author Andy Lindsay
5  *
6  * @version 0.85
7  *
8  * @copyright Copyright (C) Parallax, Inc. 2012. See end of file for
9  * terms of use (MIT License).
10  *
11  * @brief getOutputs function source, see simpletools.h for documentation.
12  *
13  * @detail Please submit bug reports, suggestions, and improvements to
14  * this code to editor@parallax.com.
15  */
16 
17 #include "simpletools.h" // simpletools function prototypes
18 
19 unsigned int get_outputs(int endPin,
20  int startPin) // getOutputs function definition
21 {
22  unsigned int pattern = OUTA; // Copy OUTA
23  if(endPin < startPin)
24  {
25  int temp = startPin;
26  startPin = endPin;
27  endPin = temp;
28  }
29  pattern <<= (31 - endPin); // Remove values to left
30  pattern >>= (31 - endPin + startPin); // Shift right & return
31  return pattern;
32 }
33 
OUTA
#define OUTA
Use to set output pin states when corresponding DIRA bits are 1.
Definition: propeller1.h:157
simpletools.h
This library provides convenient functions for a variety of microcontroller I/O, timing,...
get_outputs
unsigned int get_outputs(int endPin, int startPin)
Get output settings for a contiguous group of I/O pins.
Definition: getOutputs.c:19