(no commit message)
authorlkcl <lkcl@web>
Thu, 9 Dec 2021 19:49:43 +0000 (19:49 +0000)
committerIkiWiki <ikiwiki.info>
Thu, 9 Dec 2021 19:49:43 +0000 (19:49 +0000)
docs/gtkwave_tutorial.mdwn

index 6a1132d11e92e6f0d232389d6e57e868ee005032..c3c05e9115fe8083f1b6c93e0ccf544d442af8e7 100644 (file)
@@ -171,3 +171,14 @@ Some applications are:
    single horizontal line. Useful to draw attention to a time interval.
 2. Display the stages of a unit test
 3. Display arbitrary debug statements along the timeline.
+
+from the documentation for Signal:
+
+```
+    decoder : function or Enum
+        A function converting integer signal values to human-readable
+        strings (e.g. FSM state names). If an ``Enum`` subclass is
+        passed, it is concisely decoded using format string
+        ``"{0.name:}/{0.value:}"``, or a number if the signal value
+        is not a member of the enumeration.
+```