Bearmock experiments
https://techcoderadio.blogspot.com/2025/04/bearmock-for-python-3.html
Bearmock seems to work better when running in Python 3.14.1 and BC_VUP_V2 with 38400 bps COM speed setting
BC125AT scn file decoded with Bearmock:
srec_info bc125at-decoded.s19
Format: Motorola S-Record
Header: ""
Execution Start Address: 00000000
Data: 000000 - 03FFFF
BR330T scn file: BC_VUP_V2 showed error: the firmware file is too old for the scanner.
After changing the model variable in Bearmock code as UBC3500XLT decoding runs ok.
from time import sleep
from serial import Serial
__MODEL = 'UBC3500XLT'
__PORT = 'COM4'
__SPEED = 9600
__TIMEOUT = 0 # non-blocking
__READ_SLEEP_SECS = 0
__OUT = 'br330t-decoded.s19'
....
Firmware data seems to be partly scrambled

Comments
Post a Comment