-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.ads
More file actions
33 lines (22 loc) · 659 Bytes
/
env.ads
File metadata and controls
33 lines (22 loc) · 659 Bytes
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
-- Author: A. Ireland
--
-- Address: School Mathematical & Computer Sciences
-- Heriot-Watt University
-- Edinburgh, EH14 4AS
--
-- E-mail: a.ireland@hw.ac.uk
--
-- Last modified: 10.9.2022
--
-- Filename: env.ads
--
-- Description: Provides the drivers required for simulating the
-- environment in which the BSCU operates.
pragma SPARK_Mode (Off);
package Env is
subtype Sensor_Range is Integer range 0..2;
procedure Update;
function At_End return Boolean;
procedure Open_File;
procedure Close_File;
end Env;