Skip to content

Instantly share code, notes, and snippets.

View edsonrequena's full-sized avatar

Edson Requena edsonrequena

View GitHub Profile
@uilianries
uilianries / serial_port.c
Created January 22, 2018 00:33
Read Serial port on Windows
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
int main() {
const char reboot = 'R';
const char ack = 6;
HANDLE hSerial = NULL;
DCB dcbSerialParams = {0};
COMMTIMEOUTS timeouts = {0};