From: Michael D. Lowis
Date: Tue, 16 Jun 2020 20:42:58 +0000 (-0400)
Subject: daily commit
X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=15870d25bb5cc45e07f277b83441b1c7f6f7ee45;p=projs%2Fawiki.git
daily commit
---
diff --git a/awiki.rb b/awiki.rb
index b58ef9c..829f19f 100755
--- 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 "
"
f.puts ""
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
diff --git a/pages/20200609230839.md b/pages/20200609230839.md
index 6e01a8c..a582a67 100644
--- a/pages/20200609230839.md
+++ b/pages/20200609230839.md
@@ -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
index 0000000..7c785a0
--- /dev/null
+++ b/pages/20200616122821.md
@@ -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
index 0000000..79ddb51
--- /dev/null
+++ b/pages/20200616142057.md
@@ -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
index 0000000..784b69b
--- /dev/null
+++ b/pages/20200616162131.md
@@ -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
+````