app
LAN7800 EEPROM Programmer
Public Made by Adomby adom
MPLAB-Connect-parity EEPROM tool for the Microchip LAN7800 USB-3.1 to Gigabit-Ethernet controller (VID 0x0424 / PID 0x7800). Read an adapter's EEPROM to a .bin, edit MAC / VID / PID / bcdDevice / strings / serial and LED/GPIO with a byte-exact preview, and program hardware with verify-after-write. Reads are free; physical writes are gated behind --force-physical-write. Ships an AI-oriented CLI (single source of truth) plus a Hydrogen webapp that shells out to it.
#!/bin/sh
# lan7800-programmer uninstall — remove the wrappers and the user skill.
set -e
for BIN in /usr/local/bin "$HOME/.local/bin"; do
for f in lan7800prog lan7800-programmer; do
if [ -f "$BIN/$f" ]; then
rm -f "$BIN/$f" && echo "removed $BIN/$f"
fi
done
done
rm -rf "$HOME/.claude/skills/lan7800-programmer"
echo "uninstalled lan7800-programmer"