package serialport

  1. Overview
  2. Docs

Source file serialport.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(** Base module with platform-independent and native functions for low-level
    serial port communication. *)

(** {1 Control options} *)

(** The module describes the configuration options for a serial port. *)
module Port_options = struct
  include Port_options
end

(** {2 Modem} *)

module Modem = Modem

(** {1 Low level}

    The native implementation for target system. *)

module Native = Native