trying to set baud rate to 2400

hello everyone,

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,

igal

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);

I’d look for something similar in the EasyC help

Hi Foster,

i am trying to set the rx ( i am sending data to the robot)

thanks ,

igal