I am implementing embedded programming code for our target. I can get the CC3200 into boot mode, read the version, and storage list but do not get an ack when I issue command 0x33 to switch the internal uart mux.
My command to do this is : 0x00, 0x07, 0xab, 0x33, 0x01, 0x96, 0xe6, 0xab
I suspect my crc. I calculate the CRC by adding from the opcode (0x33) to the end of the data (0xab) into uint32, extracting the LSByte of the sume an inserting it into the crc field (after length field).
What am I doing wrong? Is 0xAB the correct checksum for this command?
Thanks