Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit 99c0ec0

Browse files
committed
Add Gneiss name and version string
ref #183
1 parent 163cac5 commit 99c0ec0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/core/nRF52832/main.adb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
with Gneiss;
12
with Serial;
23
with Componolit.Runtime.Drivers.GPIO;
34

@@ -17,7 +18,7 @@ begin
1718
GPIO.Configure (18, GPIO.Port_Out);
1819
GPIO.Write (18, GPIO.Low);
1920
Serial.Initialize;
20-
Serial.Print ("Gneiss 0.3.0" & ASCII.CR & ASCII.LF);
21+
Serial.Print (Gneiss.Name & " " & Gneiss.Version & ASCII.CR & ASCII.LF);
2122
Serial.Print ("Testing memcpy..." & ASCII.CR & ASCII.LF);
2223
S1 := (others => 'X');
2324
Serial.Print (S1 & ASCII.CR & ASCII.LF);

src/gneiss.ads

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ package Gneiss with
1515
SPARK_Mode
1616
is
1717

18+
Name : constant String := "Gneiss";
19+
Version : constant String := "0.3.0";
20+
1821
-- Session status type
1922
--
2023
-- @value Uninitialized The session is not initialized and no initialization is in progress.

0 commit comments

Comments
 (0)