2015-05-05 Yvan Roux <yvan.roux@linaro.org>
[official-gcc.git] / gcc / ada / g-sercom.ads
blob18ee984bb4e02d6bcf0158fc66c46f4c3e9d506f
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- G N A T . S E R I A L _ C O M M U N I C A T I O N S --
6 -- --
7 -- S p e c --
8 -- --
9 -- Copyright (C) 2007-2014, AdaCore --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 -- Serial communications package, implemented on Windows and GNU/Linux
34 with Ada.Streams;
35 with Interfaces.C;
37 package GNAT.Serial_Communications is
39 Serial_Error : exception;
40 -- Raised when a communication problem occurs
42 type Port_Name is new String;
43 -- A serial com port name
45 function Name (Number : Positive) return Port_Name;
46 -- Returns a possible port name for the given legacy PC architecture serial
47 -- port number (COM<number>: on Windows, ttyS<number-1> on Linux).
48 -- Note that this function does not support other kinds of serial ports
49 -- nor operating systems other than Windows and Linux. For all other
50 -- cases, an explicit port name can be passed directly to Open.
52 type Data_Rate is
53 (B1200, B2400, B4800, B9600, B19200, B38400, B57600, B115200);
54 -- Speed of the communication
56 type Data_Bits is (CS8, CS7);
57 -- Communication bits
59 type Stop_Bits_Number is (One, Two);
60 -- One or two stop bits
62 type Parity_Check is (None, Even, Odd);
63 -- Either no parity check or an even or odd parity
65 type Flow_Control is (None, RTS_CTS, Xon_Xoff);
66 -- No flow control, hardware flow control, software flow control
68 type Serial_Port is new Ada.Streams.Root_Stream_Type with private;
70 procedure Open
71 (Port : out Serial_Port;
72 Name : Port_Name);
73 -- Open the given port name. Raises Serial_Error if the port cannot be
74 -- opened.
76 procedure Set
77 (Port : Serial_Port;
78 Rate : Data_Rate := B9600;
79 Bits : Data_Bits := CS8;
80 Stop_Bits : Stop_Bits_Number := One;
81 Parity : Parity_Check := None;
82 Block : Boolean := True;
83 Local : Boolean := True;
84 Flow : Flow_Control := None;
85 Timeout : Duration := 10.0);
86 -- The communication port settings. If Block is set then a read call
87 -- will wait for the whole buffer to be filed. If Block is not set then
88 -- the given Timeout (in seconds) is used. If Local is set then modem
89 -- control lines (in particular DCD) are ignored (not supported on
90 -- Windows). Flow indicates the flow control type as defined above.
92 -- Note: the timeout precision may be limited on some implementation
93 -- (e.g. on GNU/Linux the maximum precision is a tenth of seconds).
95 -- Note: calling this procedure may reinitialize the serial port hardware
96 -- and thus cause loss of some buffered data if used during communication.
98 overriding procedure Read
99 (Port : in out Serial_Port;
100 Buffer : out Ada.Streams.Stream_Element_Array;
101 Last : out Ada.Streams.Stream_Element_Offset);
102 -- Read a set of bytes, put result into Buffer and set Last accordingly.
103 -- Last is set to Buffer'First - 1 if no byte has been read, unless
104 -- Buffer'First = Stream_Element_Offset'First, in which case the exception
105 -- Constraint_Error is raised instead.
107 overriding procedure Write
108 (Port : in out Serial_Port;
109 Buffer : Ada.Streams.Stream_Element_Array);
110 -- Write buffer into the port
112 procedure Close (Port : in out Serial_Port);
113 -- Close port
115 private
117 type Port_Data;
118 type Port_Data_Access is access Port_Data;
120 type Serial_Port is new Ada.Streams.Root_Stream_Type with record
121 H : Port_Data_Access;
122 end record;
124 Data_Rate_Value : constant array (Data_Rate) of Interfaces.C.unsigned :=
125 (B1200 => 1_200,
126 B2400 => 2_400,
127 B4800 => 4_800,
128 B9600 => 9_600,
129 B19200 => 19_200,
130 B38400 => 38_400,
131 B57600 => 57_600,
132 B115200 => 115_200);
134 end GNAT.Serial_Communications;