
#include "bioscnfg.h"
#include "sn.h"

#include <msp430x14x.h>

#include "sn_msp.h"

void SN_WaitMicroSeconds(unsigned int nMicroSeconds)
{
	TAR = 0;
	while (TAR < nMicroSeconds)
		;
}
/* The bit-number (0-7) of the connected port */


void SN_OneWireBusInit(void)
{
	SN_SEL &= ~(SN_PIN);   // set as input
	SN_DIR |=  (SN_PIN);	
	SN_OUT &= ~(SN_PIN);		
}
