i want to send data to vex robot ( i am using easyc pro) through
rf at 4333.92 MHZ freaquncey, but my transmitter-reciver works good just on 2400 data rate, i found that the vex robot minimum data rate is 4800 , anyone knows how to set it to 2400 ?
thanks,
Are you trying to set the serial port input / output rates?
From the RobotC help:
setBaudRate(uartOne,nBaudRate);
Function will set the Baud Rate for port ‘nPort’.
Acceptable Baud Rates: 4800, 9600, 19200, 38400, 57600, 115200, 230400.
Example:
setBaudRate(uartOne, baudRate9600);