How to write a value to a memory address in python using a T32_WriteMemory function
问题 I am trying to automate the Trace32 functions using python. And I am trying to write a value to a memory address using T32_WriteMemory() function. Can someone help me how to go ahead with this function? Below is the reference from the T32 Api pdf (api_remote.pdf): int T32_WriteMemory( uint32_t byteAddress int access, uint8_t *buffer, int byteSize ); byteAddress : target memory address to start write access : memory access specifier buffer : output byteSize : number of bytes to read 回答1: To