Epson UB-E02 Especificações Página 68

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 84
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 67
4-12 Programming Samples Rev. A
buf[11] = 0x00;
buf[12] = 0x00; // Parameter length
buf[13] = 0x00;
/* send a packet */
i = sendto(sock, buf, 14, 0, (struct sockaddr*)&addr, sizeof(addr));
/* receive packet */
fromlen = sizeof(addr);
len = recvfrom(sock, buf, MAXBUF, 0, (struct sockaddr*)&addr, &fromlen);
/* print receive packet */
if (len) {
if ((buf[10] == 0x00) && (buf[11] == 0x00))
for (i = 0; i < len; i++)
printf("%3d:%02Xh\n", i, buf[i] & 0xff);
}
/* close socket */
closesocket(sock);
return 0;
}
Vista de página 67
1 2 ... 63 64 65 66 67 68 69 70 71 72 73 ... 83 84

Comentários a estes Manuais

Sem comentários