diff --git a/locales/en/messages.json b/locales/en/messages.json index 30f0f5bc..1b6c84a7 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -915,6 +915,9 @@ "featureSERVO_TILT": { "message": "Servo gimbal" }, + "featureSERVO_TILTTip": { + "message": "This feature enables CAMSTAB mode, which can be used to hold up to two axis steady using the accelerometer" + }, "featureSOFTSERIAL": { "message": "Enable CPU based serial ports" }, diff --git a/src/js/Features.js b/src/js/Features.js index 16e1b7c7..4889b3e4 100644 --- a/src/js/Features.js +++ b/src/js/Features.js @@ -8,7 +8,7 @@ var Features = function (config) { {bit: 2, group: 'other', name: 'INFLIGHT_ACC_CAL'}, {bit: 3, group: 'rxMode', mode: 'select', name: 'RX_SERIAL'}, {bit: 4, group: 'esc', name: 'MOTOR_STOP'}, - {bit: 5, group: 'other', name: 'SERVO_TILT'}, + {bit: 5, group: 'other', name: 'SERVO_TILT', haveTip: true}, {bit: 6, group: 'other', name: 'SOFTSERIAL', haveTip: true}, {bit: 7, group: 'gps', name: 'GPS', haveTip: true}, {bit: 9, group: 'other', name: 'SONAR'},