Other Parts Discussed in Thread: AWR1843, UNIFLASH
Hello everyone,
So I am trying to send a number of bytes from another microcontroller to the radar through the bootloader and I am using the following command :
which is the "write to flash command" used to send data via the radar Bootloader
Ps : I soldered the J6 pin 5 and 7 in the AWR1843 board to be able to use the bootloader as I followed in this document of the bootloader flow: https://www.ti.com/lit/an/swra627/swra627.pdf?ts=1660657680989&ref_url=https%253A%252F%252Fwww.google.com%252F and the AWR1843 datasheet.
after I used that command and I sent bytes ( I sent 7 bytes in the data chunk with the following buffer : {0xAA, 0x00, 0x0A, 0xA2, 0x24, 0x15, 0x17, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA}) I successfully got the ACK response back from the radar ( I used a logic analyzer to visualize the ACK response), but when I tried to send more bytes in my buffer ( for example 8 bytes like this : {0xAA, 0x00, 0x0B, 0x4C, 0x24, 0x15, 0x17, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA}) I no longer get the ACK response from the radar. I even tried more bytes and I got the same result.
Is there any explanation or reason for this? thanks a lot.