Add comprehensive README.md covering project purpose, CLI usage,
and troubleshooting. Document the udev rule needed to prevent
usbserial from claiming the ANT+ dongle.
Add Tested hardware section listing the ANT USBStick2 and update
setup.md dmesg output accordingly.
Note: the bridge must be run as root to access the USB dongle.
Introduce structured CLI argument parsing using Cobra with three
configurable flags:
--vendor: USB vendor ID (default: 0x0fcf)
--product: USB product ID (default: 0x1008)
--device: ANT+ device number (default: 3001)
Add timestamped logging for all log statements with format
YYYY-MM-DD HH:MM:SS. Log vendor, product, and device values at
startup in both hex and decimal.
Remove hardcoded USB identifiers from main.go and consolidate all
startup logic into cli.go with a dedicated Config struct.
Update ant.go ListenForTrainer signature to accept uint16 for
vendor and product IDs.