We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2df10dd commit 2f8b20cCopy full SHA for 2f8b20c
software/scripts/axiom_gateware_builddate.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+# check if axiom_start.sh has been started already, otherwise accessing gateware registers will crash the system
4
+FILE=/tmp/axiom.started
5
+if [[ -f "$FILE" ]]; then
6
+ python3 axiom_convert_timestamp.py $(axiom_fil_regi 1)
7
+else
8
+ echo "axiom_start.sh seems to not have been executed yet so accessing gateware registers would crash the system. -> exiting"
9
+ exit 1
10
+fi
11
0 commit comments