Files
L'électron rare bbf7c5dc75 feat: import hydra-sc + portable ~base
Context: while inspecting the MBP we found ~/hydra-sc/, an earlier
prototype the user had built before AV-Live existed. It contained
working pieces we needed (Hantek firmware loader, OSC scope bridges,
SC↔Hydra ws relay, hydra patch). We also discovered that 00_load.scd
hard-coded ~base to the GrosMac dev path, which silently broke the
whole sclang engine on the MBP — every (~base ++ '...').load was
hitting a non-existent path and quietly failing. The user's existing
control/midi.scd is comprehensive but split into 5 IDE-friendly
top-level blocks, so it isn't .load-compatible and never auto-runs at
boot.

Approach: derive ~base from thisProcess.nowExecutingPath at load time
so the same project tree works from any absolute location. Migrate the
hydra-sc artifacts into AV-Live/{tools,sound_algo/control,
sound_algo/web/public/hydra} so everything lives in one repo. Add a
single-block live/midi_init.scd that does MIDIClient.init +
MIDIIn.connectAll + the default mapping in one .load-friendly chunk,
deferred 0.5s through AppClock so MIDI device discovery doesn't block
the main load chain. Old ~/hydra-sc/ on the MBP deleted, the orphan
hydra-sc-bridge node process (PID 41421 from a previous session)
killed.

Changes:
- sound_algo/00_load.scd : both ~base assignments now use
  thisProcess.nowExecutingPath.dirname with fallback to the legacy
  hard-coded path
- tools/hantek/{fx2_fwload,hantek_to_osc,hantek_osc_bridge}.py :
  imported as-is, plus a new README explaining the firmware-load /
  C++-or-sigrok choice and the macOS prerequisites (PulseView,
  sigrok-cli, python-osc)
- sound_algo/control/hantek_receiver.scd : OSCdef \hantek that
  exposes ~hPk1/~hRms1/~hPk2/~hRms2 from the Python bridge — kept as
  alternate path to oscope-of's C++ driver
- sound_algo/control/hydra_send.scd : SC→Hydra OSC sender (was
  sc_to_hydra.scd in hydra-sc) — analyzes SoundIn.ar(0) into rms /
  centroid / flatness and sends to 127.0.0.1:8000
- sound_algo/web/public/hydra/external_patch.js : Hydra patch the
  user pastes into hydra.ojack.xyz when running the external bridge
- sound_algo/live/midi_init.scd : single-block MIDI auto-init with
  the same CC/note bindings as control/midi.scd plus new note
  ranges for albums (notes 36-59 → ~playAlbum A-X), kicks
  (notes 60-71 → ~kkAt index 0..11), melodies (72-83 → ~mmAt),
  fx (84-95 → ~ffAt), CC 7 → master volume. Idempotent (frees
  previous MIDIFunc on re-load), graceful when no MIDI device is
  detected (skips mapping, prints note)

Impact: sclang now actually boots its engine on the MBP (~base path
was the silent killer). MIDI controllers connected at startup get
the default mapping automatically. The hydra-sc legacy is fully
absorbed into AV-Live so there's one place to find everything.

Note: live/midi_init.scd is NOT yet wired into live/_load.scd's
auto-load chain — that's a follow-up so we can verify the file
loads cleanly first.
2026-05-07 17:10:17 +02:00

87 lines
2.9 KiB
Python
Executable File

#!/usr/bin/env python3
"""
Cypress FX2LP firmware loader using libusb1 via ctypes (no pyusb required).
Loads fx2lafw-hantek-6022bl.fw onto the Hantek 6022BL via vendor request 0xA0.
After upload, the device renumerates with VID:PID 1d50:608e.
Usage: ./fx2_fwload.py [firmware.fw] (default: bundled in PulseView.app)
"""
import ctypes, ctypes.util, sys, time, os
LIBUSB_PATH = "/Applications/PulseView.app/Contents/Frameworks/libusb-1.0.0.dylib"
DEFAULT_FW = "/Applications/PulseView.app/Contents/share/sigrok-firmware/fx2lafw-hantek-6022bl.fw"
VID_BOOT, PID_BOOT = 0x04b4, 0x6022 # Hantek 6022BL after re-initial unconfigured
VID_LV, PID_LV = 0x0925, 0x3881 # Lakeview default (unprogrammed FX2 with EEPROM)
usb = ctypes.CDLL(LIBUSB_PATH)
usb.libusb_init.argtypes = [ctypes.c_void_p]
usb.libusb_open_device_with_vid_pid.restype = ctypes.c_void_p
usb.libusb_control_transfer.argtypes = [
ctypes.c_void_p, ctypes.c_uint8, ctypes.c_uint8,
ctypes.c_uint16, ctypes.c_uint16,
ctypes.c_char_p, ctypes.c_uint16, ctypes.c_uint
]
usb.libusb_control_transfer.restype = ctypes.c_int
CPUCS = 0xE600
A0 = 0xA0
HOST_TO_DEV = 0x40 # vendor, host→dev
def vendor_write(handle, addr, data):
return usb.libusb_control_transfer(
handle, HOST_TO_DEV, A0, addr, 0,
ctypes.c_char_p(data), len(data), 1000
)
def main():
fw_path = sys.argv[1] if len(sys.argv) > 1 else DEFAULT_FW
if not os.path.isfile(fw_path):
sys.exit(f"firmware not found: {fw_path}")
fw = open(fw_path, "rb").read()
print(f"[fx2load] firmware {fw_path} ({len(fw)} B)")
if usb.libusb_init(None) != 0:
sys.exit("libusb_init failed")
handle = None
for vid, pid in [(VID_LV, PID_LV), (VID_BOOT, PID_BOOT)]:
h = usb.libusb_open_device_with_vid_pid(None, vid, pid)
if h:
handle = h
print(f"[fx2load] opened {vid:04x}:{pid:04x}")
break
if not handle:
sys.exit("device not found (VID:PID 0925:3881 ou 04b4:6022)")
usb.libusb_detach_kernel_driver(handle, 0)
if usb.libusb_claim_interface(handle, 0) != 0:
print("[fx2load] warning: could not claim interface 0 (continuing)")
# 1. Reset 8051
print("[fx2load] reset CPU…")
vendor_write(handle, CPUCS, b"\x01")
time.sleep(0.05)
# 2. Upload firmware in 4096-byte chunks
chunk = 4096
for i in range(0, len(fw), chunk):
block = fw[i:i+chunk]
n = vendor_write(handle, i, block)
if n != len(block):
sys.exit(f"upload failed at offset {i}: got {n}")
print(f"[fx2load] uploaded {len(fw)} bytes")
# 3. Release reset
print("[fx2load] release CPU…")
vendor_write(handle, CPUCS, b"\x00")
time.sleep(0.5)
usb.libusb_release_interface(handle, 0)
usb.libusb_close(handle)
usb.libusb_exit(None)
print("[fx2load] OK — device should renumerate as 1d50:608e (sigrok) ou 04b5:6022 (hantek)")
if __name__ == "__main__":
main()