#include "PortConf.h"

void PortConf (void)
{

//inicialização das portas
PORTA=0;
LATA=0;
PORTB=0;
LATB=0;
PORTC=0;
LATC=0;


//configuração dos pinos
TRISA = 0b00000000;
TRISB = 0b00000000;
TRISC = 0b00000000;

//RPOR4 = 0b00000000;

}