]> git.mdlowis.com Git - projs/awiki.git/commitdiff
daily commit
authorMichael D. Lowis <mike.lowis@gentex.com>
Tue, 16 Jun 2020 20:42:58 +0000 (16:42 -0400)
committerMichael D. Lowis <mike.lowis@gentex.com>
Tue, 16 Jun 2020 20:42:58 +0000 (16:42 -0400)
awiki.rb
pages/20200609230839.md
pages/20200616122821.md [new file with mode: 0644]
pages/20200616142057.md [new file with mode: 0644]
pages/20200616162131.md [new file with mode: 0644]

index b58ef9c3de8e5eaddef052be69330ffb525b3861..829f19f2e78b6a4bbb478f3505208977f221e16a 100755 (executable)
--- a/awiki.rb
+++ b/awiki.rb
@@ -82,6 +82,7 @@ SEARCH_SCRIPT = <<-eos
           filterTags.value = "";
           filterPages(false);
         }
+        ev.stopPropagation();
       }
 
       filterTags.oninput = oninput;
@@ -183,7 +184,7 @@ def gensitemap()
     f.puts "<div id=\"activeTags\"></div></p>"
     f.puts "<ul id=\"pages\">"
     tags = {}
-    $db[:pages].values.filter{|h| h[:title] }.sort_by{|h| h[:title] }.each do |p|
+    $db[:pages].values.select{|h| h[:title] }.sort_by{|h| h[:title] }.each do |p|
       (p[:tags] || []).each do |t|
         tags[t] ||= 0
         tags[t] += 1
index 6e01a8c668cbcd6dd25e9ee6b6ab8acde3873901..a582a67296d8319e457a8c5527494d23910fa6bf 100644 (file)
@@ -3,18 +3,17 @@
 
 ## Now
 ### Release Plugin
-* Fix up variant handling approach
+* Do release plugin review
 * Add support for reports generated by the assembly build
 
 ### Miscellaneous
-* Get audio cable from garage
+* Compare AR0233 cam configs
 * Build for Ryan (AR0233)
 * review feedback
 * broken builds
 
 ## Soon
 * review write-up
-* Get a dongle and DiVa setup
 * Look over ASPICE docs
 
 ## Later
diff --git a/pages/20200616122821.md b/pages/20200616122821.md
new file mode 100644 (file)
index 0000000..7c785a0
--- /dev/null
@@ -0,0 +1,8 @@
+@tags fdm debugging gentex
+# FDM Display Debugging Questions
+* Is the backlight on?
+* Is the screen blank, or is it in failsafe?
+* What does DisplayErrorBits say?
+* What does InternalErrorCounters say?
+* What does ISP_DEBUG_SHADOW register say?
+* What does CvpReadState say?
diff --git a/pages/20200616142057.md b/pages/20200616142057.md
new file mode 100644 (file)
index 0000000..79ddb51
--- /dev/null
@@ -0,0 +1,7 @@
+@tags sclpl language language-design
+# SCLPL Roadmap
+* Compile "Hello, World"
+    * basically just print() and println() support.
+* Compile factorial example
+    * Get number from argument vector
+    * Print Nth fibonacci number
diff --git a/pages/20200616162131.md b/pages/20200616162131.md
new file mode 100644 (file)
index 0000000..784b69b
--- /dev/null
@@ -0,0 +1,10 @@
+@tags serdes ti954 fdm
+# TI954 SerDes Read Incoming Video Resolution
+Read the following registers to get the resolution  of video being received:
+
+````
+0x73: 7:0 LINE_COUNT_HI
+0x74: 7:0 LINE_COUNT_LO
+0x75: 7:0 LINE_LEN_HI
+0x76: 7:0 LINE_LEN_LO
+````