Import("env") import struct # Relocate firmware from 0x08000000 to 0x08008800 for define in env['CPPDEFINES']: if define[0] == "VECT_TAB_ADDR": env['CPPDEFINES'].remove(define) env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x8008800")) env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/chitu_f103.ld") def calculate_crc(contents, seed): accumulating_xor_value = seed; for i in range(0, len(contents), 4): value = struct.unpack('> ip # load a byte into IP ip = r0[loop_counter] # XOR the seed with r7 xor_seed = xor_seed ^ r7 # and then with IP xor_seed = xor_seed ^ ip #Now store the byte back r1[loop_counter] = xor_seed & 0xFF #increment the loop_counter loop_counter = loop_counter + 1 def encrypt_file(input, output_file, file_length): input_file = bytearray(input.read()) block_size = 0x800 key_length = 0x18 file_key = 0xDAB27F94 xor_crc = 0xef3d4323; # the input file is exepcted to be in chunks of 0x800 # so round the size while len(input_file) % block_size != 0: input_file.extend(b'0x0') # write the file header output_file.write(struct.pack(">I", 0x443D2D3F)) # encrypt the contents using a known file header key # write the file_key output_file.write(struct.pack(">I", 0x947FB2DA)) #TODO - how to enforce that the firmware aligns to block boundaries? block_count = int(len(input_file) / block_size) print "Block Count is ", block_count for block_number in range(0, block_count): block_offset = (block_number * block_size) block_end = block_offset + block_size block_array = bytearray(input_file[block_offset: block_end]) xor_block(block_array, block_array, block_number, block_size, file_key) for n in range (0, block_size): input_file[block_offset + n] = block_array[n] # update the expected CRC value. xor_crc = calculate_crc(block_array, xor_crc) # write CRC output_file.write(struct.pack("