From: Robin Krens Date: Sat, 10 Feb 2024 12:43:38 +0000 (+0100) Subject: setup.py: directory setup with pytest X-Git-Tag: v0.0.1~54 X-Git-Url: https://robinkrens.nl/gitweb/?a=commitdiff_plain;h=5a926ba21f47182057a38e3a62d44cec22e9d373;hp=275d988eccd1d8b3408ecf8aa39687c17d9278a5;p=renesas-ra-flasher setup.py: directory setup with pytest --- diff --git a/flasher.py b/flasher.py deleted file mode 100644 index c388815..0000000 --- a/flasher.py +++ /dev/null @@ -1,86 +0,0 @@ -import struct - -INQ_CMD = 0x00 -ERA_CMD = 0x12 -WRI_CMD = 0x13 -REA_CMD = 0x15 -IDA_CMD = 0x30 -BAU_CMD = 0x34 -SIG_CMD = 0x3A -ARE_CMD = 0x3B - -OK_READ_RES = 0x15 -OK_WRITE_RES = 0x13 - -LOW_PULSE = 0x00 -GENERIC_CODE = 0x55 -BOOT_CODE = 0xC3 - -TESTID = [ - "0xF0", "0xF1", "0xF2", "0xF3", - "0xE4", "0xE5", "0xE6", "0xE7", - "0xD8", "0xD9", "0xDA", "0xDB", - "0xCC", "0xCD", "0xCE", "0xCF" -] - -def calc_sum(cmd, data): - data_len = len(data) - lnh = data_len + 1 & 0xFF00 - lnl = data_len + 1 & 0x00FF - res = lnh + lnl + cmd - for i in range(data_len): - if isinstance(data[i], str): - res += int(data[i], 16) - else: - res += ord(data[i]) - res = ~(res - 1) & 0xFF # two's complement - return (lnh, lnl, res) - - -# format of data packet is [SOD|LNH|LNL|COM|byte_data|SUM|ETX] -def format_command(cmd, data): - SOD = 0x01 - COM = cmd - - if isinstance(data, str): - byte_data = bytes(data.encode('utf-8')) - else: - byte_data = bytes([int(x, 16) for x in data]) - - LNH, LNL, SUM = calc_sum(int(cmd), data) - ETX = 0x03 - fmt_header = '= 1024): - raise Exception(f'Data packet too large, data length is {DATA_LEN} (>1024)') - LNH, LNL, SUM = calc_sum(int(res), data) - DAT = bytes([int(x, 16) for x in data]) - RES = res - ETX = 0x03 - fmt_header = '= 1024): + raise Exception(f'Data packet too large, data length is {DATA_LEN} (>1024)') + LNH, LNL, SUM = calc_sum(int(res), data) + DAT = bytes([int(x, 16) for x in data]) + RES = res + ETX = 0x03 + fmt_header = '