Files
OPAVES/software/test-ble/ble.ads
2017-05-12 10:00:11 +02:00

13 lines
243 B
Ada

with Ada.Real_Time; use Ada.Real_Time;
package BLE is
procedure Init;
type Speed_Msg_Type is record
Speed : Natural; -- 0 .. 16#cccc#
Timestamp : Time;
end record;
function Get_Speed return Speed_Msg_Type;
end BLE;