-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserial_communications.ads
More file actions
171 lines (141 loc) · 7.82 KB
/
serial_communications.ads
File metadata and controls
171 lines (141 loc) · 7.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S E R I A L _ C O M M U N I C A T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2007-2015, AdaCore --
-- Copyright (C) 2020, Hyper Quantum Pty Ltd --
-- --
-- This library was modelled on the GNAT.Serial_Communications library --
-- Specification. It is an interface to C library function calls. It was --
-- built because the GNAT library was not available on Raspberry Pi. --
-- --
-- The licence for this follows that for GNAT, outlined below. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Serial communications package, implemented on Windows and GNU/Linux
with Interfaces.C;
with dStrings;
package Serial_Communications is
package C renames Interfaces.C;
Serial_Error : exception;
-- Raised when a communication problem occurs
type Port_Name is new String;
-- A serial com port name
type port_type is (serial, usb, com);
function Name (Number : Positive; of_type: port_type:=usb) return Port_Name;
-- Returns a possible port name for the given legacy PC architecture serial
-- port number (COM<number>: on Windows, ttyS<number-1> on Linux).
-- Note that this function does not support other kinds of serial ports
-- nor operating systems other than Windows and Linux. For all other
-- cases, an explicit port name can be passed directly to Open.
type Data_Rate is
(B75, B110, B150, B300, B600, B1200, B2400, B4800, B9600,
B19200, B38400, B57600, B115200);
-- Speed of the communication
type Data_Bits is (CS8, CS7);
-- Communication bits
type Stop_Bits_Number is (One, Two);
-- One or two stop bits
type Parity_Check is (None, Even, Odd);
-- Either no parity check or an even or odd parity
type Flow_Control is (None, RTS_CTS, Xon_Xoff);
-- No flow control, hardware flow control, software flow control
-- type Serial_Port is new Ada.Streams.Root_Stream_Type with private;
type Serial_Port is private;
StdIn : constant Serial_Port;
StdOut : constant Serial_Port;
function To_Baud(rate : in natural) return Data_Rate;
function From_Baud(rate : in Data_Rate) return natural;
procedure Open(Port : in out Serial_Port; Name : in Port_Name);
-- Open the given port name. Raises Serial_Error if the port cannot be
-- opened.
procedure Set
(Port : in out Serial_Port;
Rate : Data_Rate := B9600;
Bits : Data_Bits := CS8;
Stop_Bits : Stop_Bits_Number := One;
Parity : Parity_Check := None;
Block : Boolean := True;
Local : Boolean := True;
Flow : Flow_Control := None;
Timeout : Duration := 10.0);
-- The communication port settings. If Block is set then a read call
-- will wait for at least one byte to be supplied. If Block is not set
-- then the given Timeout (in seconds) is used and reads will return
-- even if no characters have been read (length=0). If Local is set then
-- modem control lines (in particular DCD) are ignored (not supported on
-- Windows). Flow indicates the flow control type as defined above.
-- Note: the timeout precision may be limited on some implementation
-- (e.g. on GNU/Linux the maximum precision is a tenth of a second).
-- Note: calling this procedure may reinitialise the serial port hardware
-- and thus cause loss of some buffered data if used during communication.
type read_types is (off, on);
procedure Switch_Immediate_Read(to: read_types);
-- switch on and off the Immediate Read on StdIn. Off=read entire line,
-- terminated by a carriage return/line feed. On=character at a time.
procedure Read
(Port : in out Serial_Port; Buffer: in out string; Last : out natural);
-- Read a set of bytes, put result into Buffer and set Last accordingly.
-- Last is set to Buffer'First - 1 if no byte has been read, unless
-- Buffer'First = Stream_Element_Offset'First, in which case the exception
-- Constraint_Error is raised instead.
procedure Write
(Port : in out Serial_Port; Buffer : in string);
-- Write buffer into the port
procedure Close (Port : in out Serial_Port);
-- Close port
private
use C;
-- type Port_Data;
-- type Port_Data_Access is access Port_Data;
-- type Serial_Port is new Ada.Streams.Root_Stream_Type with record
-- H : Port_Data_Access;
-- end record;
type Serial_Port is record
Num : C.int := -1;
end record;
StdIn : constant Serial_Port := (Num => 0);
StdOut : constant Serial_Port := (Num => 1);
Data_Rate_Value : constant array (Data_Rate) of natural :=
(B75 => 75,
B110 => 110,
B150 => 150,
B300 => 300,
B600 => 600,
B1200 => 1_200,
B2400 => 2_400,
B4800 => 4_800,
B9600 => 9_600,
B19200 => 19_200,
B38400 => 38_400,
B57600 => 57_600,
B115200 => 115_200);
type prefix_array_type is array (port_type) of dStrings.text;
prefix_array : constant prefix_array_type :=
(serial => dStrings.Value("/dev/ttyS"),
usb => dStrings.Value("/dev/ttyUSB"),
com => dStrings.Value("COM"));
end Serial_Communications;