From cdcaad30795574ca68b90f8b34757ca5051a0fa4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 21 May 2014 12:42:53 +1000 Subject: [PATCH] Copter: update baud rate parameter descriptions --- ArduCopter/Parameters.pde | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/ArduCopter/Parameters.pde b/ArduCopter/Parameters.pde index 5892d63ce7..3a06e1ad46 100644 --- a/ArduCopter/Parameters.pde +++ b/ArduCopter/Parameters.pde @@ -52,20 +52,27 @@ const AP_Param::Info var_info[] PROGMEM = { // @User: Advanced GSCALAR(sysid_my_gcs, "SYSID_MYGCS", 255), + // @Param: SERIAL0_BAUD + // @DisplayName: USB Console Baud Rate + // @Description: The baud rate used on the USB console. The APM2 can support all baudrates up to 115, and also can support 500. The PX4 can support rates of up to 1500. If you setup a rate you cannot support on APM2 and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults. + // @Values: 1:1200,2:2400,4:4800,9:9600,19:19200,38:38400,57:57600,111:111100,115:115200,500:500000,921:921600,1500:1500000 + // @User: Standard + GSCALAR(serial0_baud, "SERIAL0_BAUD", SERIAL0_BAUD/1000), + // @Param: SERIAL1_BAUD // @DisplayName: Telemetry Baud Rate - // @Description: The baud rate used on the first telemetry port - // @Values: 1:1200,2:2400,4:4800,9:9600,19:19200,38:38400,57:57600,111:111100,115:115200 + // @Description: The baud rate used on the first telemetry port. The APM2 can support all baudrates up to 115, and also can support 500. The PX4 can support rates of up to 1500. If you setup a rate you cannot support on APM2 and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults. + // @Values: 1:1200,2:2400,4:4800,9:9600,19:19200,38:38400,57:57600,111:111100,115:115200,500:500000,921:921600,1500:1500000 // @User: Standard - GSCALAR(serial1_baud, "SERIAL1_BAUD", SERIAL1_BAUD/1000), + GSCALAR(serial1_baud, "SERIAL1_BAUD", SERIAL1_BAUD/1000), #if MAVLINK_COMM_NUM_BUFFERS > 2 // @Param: SERIAL2_BAUD // @DisplayName: Telemetry Baud Rate - // @Description: The baud rate used on the seconds telemetry port - // @Values: 1:1200,2:2400,4:4800,9:9600,19:19200,38:38400,57:57600,111:111100,115:115200 + // @Description: The baud rate used on the second telemetry port. The APM2 can support all baudrates up to 115, and also can support 500. The PX4 can support rates of up to 1500. If you setup a rate you cannot support on APM2 and then can't connect to your board you should load a firmware from a different vehicle type. That will reset all your parameters to defaults. + // @Values: 1:1200,2:2400,4:4800,9:9600,19:19200,38:38400,57:57600,111:111100,115:115200,500:500000,921:921600,1500:1500000 // @User: Standard - GSCALAR(serial2_baud, "SERIAL2_BAUD", SERIAL2_BAUD/1000), + GSCALAR(serial2_baud, "SERIAL2_BAUD", SERIAL2_BAUD/1000), #endif // @Param: TELEM_DELAY