TQ Hirsch
TQ Hirsch
With a lot of these SAS cards, you absolutely *need* to reflash the firmware for them to work outside of the server they came from, and for that, you need...
Here's a SSCCE: ```java package com.thequux.weblaftest; import com.alee.laf.WebLookAndFeel; import com.alee.laf.colorchooser.WebColorChooser; import javax.swing.*; public class WebLAFTest { public static void main(String[] args) { WebLookAndFeel.install(); JFrame frame = new JFrame(); WebColorChooser chooser...
Oh, I forgot to mention that my maven dependency is as follows: ```xml com.weblookandfeel weblaf-ui 1.2.13 ```
Many thanks! And no worries about the delay; I've certainly got issues that I've been sitting on far longer :-D
While you can use a clock signal like you suggested, you'll very quickly run into sequencing issues (does the address/data arrive before the clock goes high? How can you ensure...
Within ~6 hours, you'll have a pull request. I'm building the time-sliced version with explicit wires and variable drive strengths; trust me, you'll want it when you get to memories....
I need to step away from my computer for a bit, but you can see my WIP changes here: thequux/pylectronics@7d806afb59e5172ae710a13eb370ac64afa77a6d . I'll port some of the tests later tonight so...
In your previous design, you still had Vcc and ground rails; they were just called `True` and `False`, respectively. This works fine until you start having tristate drivers, which can...