Skip to content
Snippets Groups Projects
  1. Nov 11, 2024
  2. Nov 10, 2024
  3. Nov 09, 2024
    • Deucе's avatar
      USE_CURSES_ANYWAY on Darwin as well. · 877debc8
      Deucе authored
      877debc8
    • Deucе's avatar
      Fix stupid · bf8bb824
      Deucе authored
      bf8bb824
    • Deucе's avatar
      If CBAUD is defined, retain the CBAUD bits in c_cflags · 7538ce8b
      Deucе authored
      Otherwise, zero it out.  Most termios implementations don't put the
      speed in here, but this *is* where dragons be.
      7538ce8b
    • Rob Swindell's avatar
      Don't reset the port baud rate to 0 in comOpen() · b8260ae6
      Rob Swindell authored
      As noticed while trouble-shooting issue #813, calling comOpen() would
      (on Linux, at least) set the port baud rate to 0 bps (B0) which in
      most or all Linux serial drivers triggers special logic to deassert DTR and
      RTS signals (to the modem, to attempt to "hangup" any connection).
      
      If the app (e.g. sexpots) did not explictily set the port baud rate after
      calling comOpen(), the port would be unusable. This is not how comOpen() works
      on Windows.
      
      So rather than just overwrite all the bits in termios.c_cflag, we clear the
      fields we know we want to, set the bits we want, and leave the rest (which
      usually includes the current baud rate, if CBAUD is defined) as-is.
      b8260ae6
    • Rob Swindell's avatar
      Enable signal (e.g. Ctrl-C) handling / ignoring · dd287bf2
      Rob Swindell authored
      Gracefully terminate with SIGQUIT, SIGINT, and SIGTERM
      
      Ignore SIGHUP and SIGPIPE.
      dd287bf2
  4. Nov 07, 2024
  5. Nov 06, 2024
  6. Nov 05, 2024
  7. Nov 04, 2024
Loading