Skip to content

Commit

Permalink
Taranis version 1.8.0
Browse files Browse the repository at this point in the history
- new hud layout, speed on left, alt on right VSI on bottom
- added support for up to 6 frsky sensors on dedicated second screen
- added script reset support (no need to power cycle the radio between packs)
- added haptic feedback support
- added total flown distance (calculated from speed)
- added PX4 flight modes support when using the mavlinkToPassthru firmware
- added support for mavlinkToPassthru firmware
- added vocal playback of selected mavlink messages
- added support fot serial and independent battery configurations with individual cell count override
- added support for battery voltage > 51.1V
- added new message alert silencing options
- fix for quick flight mode switch
- fix for rover modes vocal playback
  • Loading branch information
yaapu committed May 18, 2019
1 parent cd3351b commit 9a1d4f8
Show file tree
Hide file tree
Showing 195 changed files with 15,296 additions and 7,558 deletions.
Binary file modified TARANIS/IMAGES/x7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x7_alt_displayinfo.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x7displayinfo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x7dual.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x7dualminmax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x7m2f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x7menupag1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x7minmax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x7sensors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x9_alt_displayinfo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9ddual.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9ddualminmax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9displayinfo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x9dm2f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9dmenupag1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified TARANIS/IMAGES/x9dminmax.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added TARANIS/IMAGES/x9dsensors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
105 changes: 105 additions & 0 deletions TARANIS/SD/MODELS/yaapu/cels_example_sensors.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
----------------------------------------
-- custom sensors configuration file
----------------------------------------
local sensors = {
-- Sensor 1
[1]= {
"Celm", -- label
"Celm", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vmin", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 2
[2]= {
"Celd", -- label
"Celd", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vdelta", -- label for unit of measure
1, -- multiplier if < 1 than divides
"+", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
0.2, -- warning level (nil is do not use feature)
0.4, -- critical level (nil is do not use feature)
},

-- Sensor 3
[3]= {
"Cel1", -- label
"Cel1", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V1", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 4
[4]= {
"Cel2", -- label
"Cel2", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V2", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 5
[5]= {
"Cel3", -- label
"Cel3", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V3", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 6
[6]= {
"Cel4", -- label
"Cel4", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V4", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},
}
------------------------------------------------------
-- the script can optionally look up values here
-- for each sensor and display the corresponding text instead
-- as an example to associate a lookup table to sensor 3 declare it like
--
--local lookups = {
-- [3] = {
-- [-10] = "ERR",
-- [0] = "OK",
-- [10] = "CRIT",
-- }
-- }
-- this would display the sensor value except when the value corresponds to one
-- of entered above
--
local lookups = {
}

collectgarbage()

return {
sensors=sensors,lookups=lookups
}
131 changes: 131 additions & 0 deletions TARANIS/SD/MODELS/yaapu/kerojet_example_sensors.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
----------------------------------------
-- custom sensors configuration file
----------------------------------------
--[[
S1:Pump,A4,2,V,1,+,1,
S2:Fuel,Fuel,0,ml,1,+,1,
S3:ENG,RPM,0,krpm,100,+,1,
S4:EGT,Tmp1,0,C,1,+,1,
S5:THRO,Thro,0,%,1,+,1,
S6:Status,Tmp2,0,C,1,-,1
--]]
local sensors = {
-- Sensor 1
[1]= {
"Celm", -- label
"Celm", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vmin", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 2
[2]= {
"Celd", -- label
"Celd", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vdelta", -- label for unit of measure
1, -- multiplier if < 1 than divides
"+", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
0.2, -- warning level (nil is do not use feature)
0.4, -- critical level (nil is do not use feature)
},

-- Sensor 3
[3]= {
"Cel1", -- label
"Cel1", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V1", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
2, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 4
[4]= {
"Cel2", -- label
"Cel2", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V2", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
2, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 5
[5]= {
"Cel3", -- label
"Cel3", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V3", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
2, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 6
[6]= {
"Cel4", -- label
"Cel4", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V4", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
2, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},
}
------------------------------------------------------
-- the script can optionally look up values here
-- for each sensor and display the corresponding text instead
-- as an example to associate a lookup table to sensor 3 declare it like
--
-- [3] = {
-- [-10] = "ERR",
-- [0] = "OK",
-- [10] = "CRIT",
-- }
-- this would display the sensor value except when the value corresponds to one
-- of entered above
--
local lookups = {
-- lookup 2
--[[
[6] = {
[-30] = "ERROR",
[-20] = "OFF",
[-10] = "COOL",
[-1] = "LOCK",
[0] = "STOP",
[10] = "RUN",
[20] = "REL",
[25] = "GLOW",
[30] = "SPIN",
[40] = "FIRE",
[45] = "IGNT",
[50] = "HEAT",
[60] = "ACCE",
[65] = "CAL",
[70] = "IDLE",
},
--]]
}

collectgarbage()

return {
sensors=sensors,lookups=lookups
}
105 changes: 105 additions & 0 deletions TARANIS/SD/MODELS/yaapu/yaapuprod_sensors.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
----------------------------------------
-- custom sensors configuration file
----------------------------------------
local sensors = {
-- Sensor 1
[1]= {
"Celm", -- label
"Celm", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vmin", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 2
[2]= {
"Celd", -- label
"Celd", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"Vdelta", -- label for unit of measure
1, -- multiplier if < 1 than divides
"+", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
0.2, -- warning level (nil is do not use feature)
0.4, -- critical level (nil is do not use feature)
},

-- Sensor 3
[3]= {
"Cel1", -- label
"Cel1", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V1", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 4
[4]= {
"Cel2", -- label
"Cel2", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V2", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 5
[5]= {
"Cel3", -- label
"Cel3", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V3", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},

-- Sensor 6
[6]= {
"Cel4", -- label
"Cel4", -- OpenTX sensor name
2, -- precision: number of decimals 0,1,2
"V4", -- label for unit of measure
1, -- multiplier if < 1 than divides
"-", -- "+" track max values, "-" track min values with
1, -- font size 1=small, 2=big
3.65, -- warning level (nil is do not use feature)
3.30, -- critical level (nil is do not use feature)
},
}
------------------------------------------------------
-- the script can optionally look up values here
-- for each sensor and display the corresponding text instead
-- as an example to associate a lookup table to sensor 3 declare it like
--
--local lookups = {
-- [3] = {
-- [-10] = "ERR",
-- [0] = "OK",
-- [10] = "CRIT",
-- }
-- }
-- this would display the sensor value except when the value corresponds to one
-- of entered above
--
local lookups = {
}

collectgarbage()

return {
sensors=sensors,lookups=lookups
}
1 change: 1 addition & 0 deletions TARANIS/SD/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
copy the content of this folder to your radio SD card
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/alt7_view.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/alt9_view.luac
Binary file not shown.
Binary file removed TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/copter.lua
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/copter.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/copter_px4.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/draw7.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/draw9.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/hud7.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/hud9.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/left7.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/left7_m2f.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/left9.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/left9_m2f.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/menu7.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/menu9.luac
Binary file not shown.
Binary file removed TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/plane.lua
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/plane.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/plane_px4.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/reset.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/right7.luac
Binary file not shown.
Binary file added TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/right9.luac
Binary file not shown.
Binary file removed TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/rover.lua
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu/rover.luac
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu7.lua
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu7.luac
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu9.lua
Binary file not shown.
Binary file modified TARANIS/SD/SCRIPTS/TELEMETRY/yaapu9.luac
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1008001424.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/116655276.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1204090832.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1249672288.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1309405592.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1396289024.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1535290648.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1809087708.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1834616480.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/1997782032.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/2310179660.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/2386213680.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/264977348.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/2664106240.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/2890289840.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3025044912.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3311875476.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3417557720.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3602501704.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3708582640.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3721120084.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3879875148.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/3956583920.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/4019153925.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/4091124880.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/4137200300.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/554623408.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/656739232.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/956150328.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/986165592.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/alt.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/altctl.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/dist.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/loiter_r.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/mission.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/offboard.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/posctl.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/precland.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/qautotune.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/rattitude.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/ready.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/rtgs.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/simple.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/simple_r.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/takeoff.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/en/zigzag.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1008001424.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/116655276.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1204090832.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1249672288.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1309405592.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1396289024.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1535290648.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1809087708.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1834616480.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/1997782032.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/2310179660.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/2386213680.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/264977348.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/2664106240.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/2890289840.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3025044912.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3311875476.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3417557720.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3602501704.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3708582640.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3721120084.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3879875148.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/3956583920.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/4019153925.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/4091124880.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/4137200300.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/554623408.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/656739232.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/956150328.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/986165592.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/alt.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/altctl.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/dist.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/loiter_r.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/mission.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/offboard.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/posctl.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/precland.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/qautotune.wav
Binary file not shown.
Binary file modified TARANIS/SD/SOUNDS/yaapu0/it/qhover.wav
Binary file not shown.
Binary file modified TARANIS/SD/SOUNDS/yaapu0/it/qland.wav
Binary file not shown.
Binary file modified TARANIS/SD/SOUNDS/yaapu0/it/qloiter.wav
Binary file not shown.
Binary file modified TARANIS/SD/SOUNDS/yaapu0/it/qrtl.wav
Binary file not shown.
Binary file modified TARANIS/SD/SOUNDS/yaapu0/it/qstabilize.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/rattitude.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/ready.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/rtgs.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/simple.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/simple_r.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/takeoff.wav
Binary file not shown.
Binary file added TARANIS/SD/SOUNDS/yaapu0/it/zigzag.wav
Binary file not shown.
Loading

0 comments on commit 9a1d4f8

Please sign in to comment.