dynamic settings removed from fp, moved to conf/settings/, specified in

conf.xml
This commit is contained in:
Pascal Brisset
2006-07-31 05:18:43 +00:00
parent 1f4eccba1a
commit 120a456ba7
34 changed files with 270 additions and 475 deletions
+2 -4
View File
@@ -14,13 +14,11 @@ type t = {
}
let labels_name = [|
[| "AP" ; "alt" ; "->" |]; [| "RC"; "climb"; "/" |]; [| "GPS"; "speed"; "" |];
[| "settings" ; "throttle"; "" |]
[| "AP" ; "alt" ; "->" |]; [| "RC"; "climb"; "/" |]; [| "GPS"; "speed"; "throttle" |]
|]
let labels_print = [|
[| "AP" ; "alt" ; "->" |]; [| "RC"; "climb"; "->" |]; [| "GPS"; "speed"; "" |];
[| "CAL" ; "throttle"; "" |]
[| "AP" ; "alt" ; "->" |]; [| "RC"; "climb"; "->" |]; [| "GPS"; "speed"; "throttle" |]
|]
let gen_int = let i = ref (-1) in fun () -> incr i; !i