#define _WINDOWS_
#include "tiusb.h"
#define PORT "COM3"
#define PA 0x00
#define CONTROL 0x03
#define PALABRA 0x00
int main()
{
if( TIopen(PORT) )
{
TIwrite(CONTROL,PALABRA);
TIwrite(PA,255);
TIwrite(PB,255);
TIwrite(PC,255);
TIclose();
}
else
{
printf("Error al abrir el puerto de la tarjeta de interfaz\n");
}
return 0;
}