/* --------------------------------------------------------------------------
Name:       template.c
Function:  (Add a couple of lines about what this code does)
Versions:
   1.0   1/21/2007   L Simone.  Created as a template for an embedded 
            main.c file.
----------------------------------------------------------------------------- */
#include "msp430x20x3.h"                // Configuration and addresses for 2013 

/* #defines for common constants and numbers */
#define HIGH    0x01    
#define LOW     0x00

/* Function Redeclarations here */
void fred(unsigned char foo);

/* Global Variables here */
unsigned char barney = 54;

int main(void)
{
   fred(barney);
  
}
/* --------------------------------------------------------------------------
Name:       fred
Function:   Sample function for template.
Notes:      List anything special, including hardware dependencies.
----------------------------------------------------------------------------- */
void fred (unsigned char foo)
{
  ;
}


