Tuesday, July 19, 2022
Saturday, December 11, 2021
Logic Analyzer VID 0925 PID 3881 Windows 10 driver installation
- Open this page: https://support.saleae.com/logic-software/legacy-software/older-software-releases
- Download "Windows 64 bit (no installer)" package.
- Extract "Drivers" directory to any location on your hard drive.
- Connect Logic Analyzer device with USB cable.
- Press "Win+X" and select "Device Manager" item.
- Under "Other devices" folder find "Unknown device".
- Right-click, select "Properties" and verify that "Device instance path" is "USB\VID_0925&PID_3881\..."
- Close "Properties" dialog.
- Right-click and select "Update driver".
- Select "Browse my computer for drivers".
- Click "Browse" button and choose the "Drivers" directory you created at step 3.
- Click "OK" button.
- Click "Install" buton in confirmation dialog taht will pop up.
- Close confirmation window.
Labels:
tools
Monday, November 15, 2021
UltraEdit regular expressions
Swap 2 words separated by whitespaces
Find what: | (\w+)(\s+)(\w+) | |
Replace with: | $3$2$1 |
Before:
0x01 HID_USAGE_GENERIC_POINTER 0x02 HID_USAGE_GENERIC_MOUSE 0x04 HID_USAGE_GENERIC_JOYSTICK 0x05 HID_USAGE_GENERIC_GAMEPAD 0x06 HID_USAGE_GENERIC_KEYBOARD 0x07 HID_USAGE_GENERIC_KEYPAD 0x08 HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER
After:
HID_USAGE_GENERIC_POINTER 0x01 HID_USAGE_GENERIC_MOUSE 0x02 HID_USAGE_GENERIC_JOYSTICK 0x04 HID_USAGE_GENERIC_GAMEPAD 0x05 HID_USAGE_GENERIC_KEYBOARD 0x06 HID_USAGE_GENERIC_KEYPAD 0x07 HID_USAGE_GENERIC_MULTI_AXIS_CONTROLLER 0x08
Labels:
ultraedit
Monday, April 26, 2021
Wednesday, April 14, 2021
Print Raspberry Pi CPU and GPU temperature
cpu1=$(</sys/class/thermal/thermal_zone0/temp)
cpu2=$(echo "scale=1;$cpu1/1000" | bc)
gpu1=$(/opt/vc/bin/vcgencmd measure_temp)
gpu2=$(echo $gpu1 | tr -dc '.,0-9')
echo "$(date +'%d.%m.%Y %H:%M:%S') @ $(hostname)"
echo "CPU: $cpu2"
echo "GPU: $gpu2"
Labels:
bash,
raspberry pi
Subscribe to:
Posts (Atom)