Tool/software: Code Composer Studio
Right now I have an MSP432 talking UART to a CC2650MODA. The MSP432 sends information in the pattern: one letter, three numbers, four ones (B9791111), but when I read the information received by the 2650 sometimes it will mess with the pattern ie 11B97911 or 1B979111. Every time I unplug the 432 and plug it back in the pattern will change, it could send the correct pattern until I unplug it, or do one of the previous examples of a messed up pattern. The two devices have the same UART params which are listed here:
uart_params.baudRate=115200;
uart_params.dataLength=UART_LEN_8;
uart_params.parityType=UART_PAR_NONE;
uart_params.stopBits=UART_STOP_ONE;
uart_params.readCallback=NULL;
uart_params.readEcho = UART_ECHO_OFF;
uart_params.readReturnMode = UART_RETURN_NEWLINE;
uart_params.readDataMode = UART_DATA_TEXT;
uart_params.readMode = UART_MODE_BLOCKING;
uart_params.readTimeout = UART_WAIT_FOREVER;
uart_params.writeCallback = NULL;
uart_params.writeDataMode = UART_DATA_BINARY;
uart_params.writeMode = UART_MODE_BLOCKING;
uart_params.writeTimeout = UART_WAIT_FOREVER;
How can I get the 2650 to read the correct pattern?