Comm-Port und Windows

Informationen zur Win32-API

Links

Win32-Funktionen:

Win32-Datenstrukturen:

Overlappend vs. Non-Overlapped:

Bugs, Fallstricke, weitere Informationen

Alternativen zur Win32-API

Kommerziell:

Zum Vergleich: Behandlung der seriellen Schnittstelle unter Linux

Links:

Informationen:

struct termios {
      tcflag_t    c_iflag;    /* input modes */
      tcflag_t    c_oflag;    /* output modes */
      tcflag_t    c_cflag;    /* control modes */
      tcflag_t    c_lflag;    /* line discipline modes */
      speed_t     c_ospeed;   /* output speed */
      speed_t     c_ispeed;   /* input speed - not supported */
      cc_t        c_cc[NCCS]; /* control chars */
  };