filterTags.value = "";
filterPages(false);
}
+ ev.stopPropagation();
}
filterTags.oninput = oninput;
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
## 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
--- /dev/null
+@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?
--- /dev/null
+@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
--- /dev/null
+@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
+````