sigrok-cli -i my-sigrok-capture.srzip -P uart:baudrate=115200:rx=D0 -A uart=rx_data | cut -d ' ' -f 2 | xxd -r -p > my-decoded-capture.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[binaries] | |
c = ['clang', '-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'] | |
cpp = ['clang++', '-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'] | |
objc = ['clang', '-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'] | |
objcpp = ['clang', '-arch', 'arm64', '-isysroot', '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk'] | |
ar = 'ar' | |
strip = 'strip' | |
[host_machine] | |
system = 'darwin' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fixing an Askoll M550 motor module, commonly found on some Whirlpool models (F22 error). | |
CHECK ALL SMD RESISTORS. INCLUDING THOSE HIDDEN UNDER THE SILICON PUTTY. MINE WAS BROKEN DUE TO AN OPEN-CIRCUIT ON A 33R RESISTOR NEXT TO A BIG CAPACITOR. | |
Some people (https://sites.google.com/site/entomeco/motor-m500-askoll) have reported issues with 150R resistors. |
This short tutorial explains how to run DiskWarrior 5 from the macOS recovery without using a USB key (ideal for helping someone over the phone).
- Boot the Macintosh into recovery mode (Cmd+R at boot)
- Ensure the Macintosh is connected to the internet
- Open a terminal
- Create a RAM disk (I chose a 1GB size)
diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nobrowse -nomount ram://2097152`
- Unzip
DiskWarrior.dmg
from theDiskWarrior5.zip
Alsoft sent you, and upload it to some place that can be accessed via unsecured HTTP (I used transfer.sh)
This method doesn't work with ghdl-mcode.
- Build your simulation with debug infos (ie. add
-g
flag to the ghdl build) - Open the generated executable in a debugger
- Add a breakpoint on the
__ghdl_fatal
function (in gdbb __ghdl_fatal
) - Run the program with
--assert-level=warning
as its argument (in gdbrun --assert-level=warning
) - Use the debugger backtrace functionality (in gdb
bt
) to resolve the origin of the issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/nmigen/back/rtlil.py b/nmigen/back/rtlil.py | |
index 100df5a..7581163 100644 | |
--- a/nmigen/back/rtlil.py | |
+++ b/nmigen/back/rtlil.py | |
@@ -749,6 +749,9 @@ class _StatementCompiler(xfrm.StatementVisitor): | |
on_Assume = on_property | |
on_Cover = on_property | |
+ def on_Display(self, stmt): | |
+ pass |
In addition to nmigen.compat.
Replace:
s = Signal(max=1234)