#include #include "/home/jeblack3/libusblinux300/ownet.h" int main() { char portname[9] = "DS2490-1"; unsigned char buf[64]; int i, portnum; for (i = 0; i < 64; i++) { buf[i] = 0x00; } portnum = owAcquireEx (portname); if (portnum < 0) { printf ("Adapter not found\n"); return 0; } while (1) { owBlock (portnum, FALSE, buf, 64); } }