diff --git a/cflib_groundstation/LogfileHandler.py b/cflib_groundstation/LogfileHandler.py index 71220df0261e587f320a82f085bb7d92e7f15f55..2a232b5f46aa0ce63924885319486a83def7f23e 100644 --- a/cflib_groundstation/LogfileHandler.py +++ b/cflib_groundstation/LogfileHandler.py @@ -46,7 +46,7 @@ class LogfileHandler: self.logging_configs = [] self.data_log = None self.data_log_name = "" - self.header_id = 0 + self.header_id = -1 self.create_log_data_file() @@ -75,12 +75,12 @@ class LogfileHandler: 'double' : 0x07} file = open(filename, "w") - file.write(f"{logType} ID Type Group Identifier Name\n") + file.write(f"{logType} ID\tType\tGroup\tIdentifier Name\t\n") file.close() file = open(filename, "a") for group in list(toc.keys()): for name in list(toc[group].keys()): - file.write(f"{toc[group][name].ident} {types.get(toc[group][name].ctype)} {group} {name}\n") + file.write(f"{toc[group][name].ident}\t{types.get(toc[group][name].ctype)}\t{group}\t{name}\t\n") #print(f" Identity: {toc[group][name].ident} Packet Type:{toc[group][name].pytype} CType:{toc[group][name].ctype} Group:{group} Name:{name}\n") @@ -133,6 +133,7 @@ class LogfileHandler: self.data_log.close() def add_config_headers(self, config_list: List[LogConfig]): + self.header_id += 1 self.data_log = open(self.data_log_name, 'a') header = "#" + str(self.header_id) + "\ttime" for config in config_list: @@ -141,7 +142,6 @@ class LogfileHandler: print("Var: " + variable.name) header += "\t" + variable.name self.data_log.write(header + "\r") - self.header_id += 1 self.data_log.close() @@ -158,7 +158,7 @@ class LogfileHandler: line = str(timestamp) + " " for group in data: for data in group.values(): - line += str(data) + "\t" + line += str('%.4f'%(data)) + "\t" line += "\r" self.data_log.write(line) self.data_log.close() diff --git a/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc b/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc index 38c58eb95bad0da7d7cb58dabaca510ba2832a5c..6bda28b38d2d0435270997f7570c56b9099b7d22 100644 Binary files a/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc and b/cflib_groundstation/__pycache__/LogfileHandler.cpython-38.pyc differ diff --git a/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc b/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc index c8b8d69dfd7a79b2ef07b4e7cc8c8446aa446fb0..49730517bc064744f6d0b22739a6f09b59bd6013 100644 Binary files a/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc and b/cflib_groundstation/__pycache__/crazyflie_connection.cpython-38.pyc differ diff --git a/cflib_groundstation/crazyflie_connection.py b/cflib_groundstation/crazyflie_connection.py index 6030a4464f8bba5f706a08218908f7fb81c6cb8f..d9565409ce70cf4918cfe1f1abfd363e8cd81dfa 100644 --- a/cflib_groundstation/crazyflie_connection.py +++ b/cflib_groundstation/crazyflie_connection.py @@ -54,6 +54,7 @@ class CrazyflieConnection: self.stop_thread = False self.setpoint_handler = SetpointHandler() self.logfile_handler = LogfileHandler() + self.logging_configs = self.logfile_handler.read_all_active_blocks() self.timestamp = 0 # self.timer = QTimer() @@ -139,8 +140,8 @@ class CrazyflieConnection: else : raise Exception - self.setpoint_handler.setSetpoint(yaw, pitch, roll, thrust) - self.setpoint_handler.sendSetpoint() + #self.setpoint_handler.setSetpoint(yaw, pitch, roll, thrust) + #self.setpoint_handler.sendSetpoint() def GetNodeIds(): raise Exception @@ -256,7 +257,7 @@ class CrazyflieConnection: if id == 0: # logdata? filename = self.logfile_handler.data_log_name data = bytearray() - data += bytes(filename, 'utf-8') + data += bytes("_" + filename, 'utf-8') responsedata = { "msg_type": (MessageTypeID.RESPLOGFILE_ID), "msg_id": command['msg_id'], @@ -268,7 +269,7 @@ class CrazyflieConnection: params = self.get_param_toc() filename = self.logfile_handler.CopyTocToFile(params, True) data = bytearray() - data += bytes(filename, 'utf-8') + data += bytes("_" + filename, 'utf-8') responsedata = { "msg_type": (MessageTypeID.RESPLOGFILE_ID), "msg_id": command['msg_id'], @@ -280,7 +281,22 @@ class CrazyflieConnection: logs = self.get_logging_toc() filename = self.logfile_handler.CopyTocToFile(logs, False) data = bytearray() - data += bytes(filename, 'utf-8') + data += bytes("_" + filename, 'utf-8') + responsedata = { + "msg_type": (MessageTypeID.RESPLOGFILE_ID), + "msg_id": command['msg_id'], + "data_len": len(data), + "data": data + } + outputQueue.put(responsedata) + elif id == 3: + header = "_" + str(self.logfile_handler.header_id) + ":,time," + for config in self.logging_configs: + for variable in config.variables: + header += variable.name + "," + print(header) + data = bytearray() + data += bytes(header, 'utf-8') responsedata = { "msg_type": (MessageTypeID.RESPLOGFILE_ID), "msg_id": command['msg_id'], @@ -288,10 +304,16 @@ class CrazyflieConnection: "data": data } outputQueue.put(responsedata) - elif id == 3: # active header of the data log - raise Exception # Not implemented elif id == 4: # state of test stand connection - raise Exception # Not implemented + data = bytearray() + data += bytes("_false", 'utf-8') + responsedata = { + "msg_type": (MessageTypeID.RESPLOGFILE_ID), + "msg_id": command['msg_id'], + "data_len": len(data), + "data": data + } + outputQueue.put(responsedata) else : raise Exception @@ -310,24 +332,17 @@ class CrazyflieConnection: block_id = command['data'][1] self.logging_configs.remove(self.logging_configs[block_id]) elif id == 4: - self.enable_logging() + print(4) + #self.enable_logging() elif id == 5: - self.disable_logging() + print(5) + #self.disable_logging() elif id == 8: self.start_logging() elif id == 9: self.stop_logging() - def simple_log(self, scf, logconf): - print("Logging...") - with SyncLogger(scf, logconf) as logger: - for log_entry in logger: - self.timestamp = log_entry[0] - data = log_entry[1] - logconf_name = log_entry[2] - - #print('[%d][%s]: %s' % (self.timestamp, logconf_name, data)) - return data + def enable_logging(self): """ Begins logging all configured logging blocks. This is used from @@ -343,9 +358,10 @@ class CrazyflieConnection: self.logging_configs[i].stop() def delete_log_blocks(self): - for block in self.logging_configs: + self.logging_configs = [] + """for block in self.logging_configs: block.delete() - self.logging_configs.remove(block) + self.logging_configs.remove(block)""" def start_logging(self): self.stop_thread = False @@ -358,11 +374,19 @@ class CrazyflieConnection: def continous_log(self): while not self.stop_thread: data = [] + print(self.logging_configs) for config in self.logging_configs: - data.append(self.simple_log(self.scf, config)) + with SyncLogger(self.scf, config) as logger: + for log_entry in logger: + + self.timestamp = log_entry[0] + point = log_entry[1] + logconf_name = log_entry[2] + data.append(point) + break print(data) self.logfile_handler.write_data_points(data, self.timestamp / 1000) - sleep(0.3) + sleep(0.1) diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:18:22.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:18:22.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2deb3d7f9194aecf66b8ffeb60d11618d2e5c67 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:18:22.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:18:46.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:18:46.txt new file mode 100644 index 0000000000000000000000000000000000000000..d78e39c6b543c8439be51635ecd30d1d64700a1c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:18:46.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 84.473 -0.1325208693742752 0.2211969941854477 45.60481262207031 0.03167599067091942 0.036145906895399094 -0.19791899621486664 0.0 0.0 0.0 0.0 0.0 45.6103630065918 85.512 -0.12650619447231293 0.20479778945446014 45.604732513427734 -0.20262309908866882 -0.04054718837141991 0.10886562615633011 0.0 0.0 0.0 0.0 0.0 45.602203369140625 86.564 -0.13443784415721893 0.19603952765464783 45.60565948486328 -0.06711671501398087 0.25476938486099243 0.04915372282266617 0.0 0.0 0.0 0.0 0.0 45.607276916503906 87.602 -0.13041631877422333 0.19279257953166962 45.6108283996582 0.040623195469379425 -0.015579652041196823 -0.21755093336105347 0.0 0.0 0.0 0.0 0.0 45.61414337158203 88.662 -0.14794139564037323 0.1833554059267044 45.61956024169922 -0.02856205590069294 -0.19934125244617462 0.17758966982364655 0.0 0.0 0.0 0.0 0.0 45.61873245239258 89.729 -0.14257866144180298 0.19409725069999695 45.62278366088867 0.09397917985916138 0.18471676111221313 0.04588574171066284 0.0 0.0 0.0 0.0 0.0 45.62199020385742 90.821 -0.14321865141391754 0.20918552577495575 45.62916946411133 0.15656207501888275 -0.3666967749595642 0.10741718113422394 0.0 0.0 0.0 0.0 0.0 45.637359619140625 91.874 -0.16004642844200134 0.18604686856269836 45.64030456542969 0.14302648603916168 0.042934250086545944 0.025517510250210762 0.0 0.0 0.0 0.0 0.0 45.63774108886719 92.915 -0.15489603579044342 0.1723555326461792 45.63850402832031 0.0842192992568016 0.1492651104927063 -0.15440456569194794 0.0 0.0 0.0 0.0 0.0 45.63874053955078 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:36:01.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:36:01.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2deb3d7f9194aecf66b8ffeb60d11618d2e5c67 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:36:01.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:36:11.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:36:11.txt new file mode 100644 index 0000000000000000000000000000000000000000..f2deb3d7f9194aecf66b8ffeb60d11618d2e5c67 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:36:11.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:38:31.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:38:31.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:38:31.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:39:35.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:39:35.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:39:35.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:43:41.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:43:41.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:43:41.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:51:15.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:51:15.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:51:15.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:51:59.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:51:59.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:51:59.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:52:47.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:52:47.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:52:47.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:53:52.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:53:52.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:53:52.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:54:12.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:54:12.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:54:12.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:55:14.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:55:14.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:55:14.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_22:58:51.txt b/cflib_groundstation/logs/cflie1_2023_11_15_22:58:51.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_22:58:51.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:05:48.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:05:48.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:05:48.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:07:11.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:07:11.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:07:11.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:17:40.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:17:40.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:17:40.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:18:24.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:18:24.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:18:24.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:20:44.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:20:44.txt new file mode 100644 index 0000000000000000000000000000000000000000..60b5255e17b8fb41266ae667916148d3caf124c8 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:20:44.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 34.341 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 37.904 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 40.46 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 42.812 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 45.146 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 50.564 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 53.934 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 56.284 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 58.662 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 62.148 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 64.551 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 67.06 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 69.657 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:24:34.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:24:34.txt new file mode 100644 index 0000000000000000000000000000000000000000..13fbcbad32367dbe1707a8052b3d6a8e77ba41ad --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:24:34.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 253.056 -0.5156771540641785 1.0469162464141846 -0.5404790043830872 0.5406670570373535 0.1339206099510193 0.19309401512145996 0.0 0.0 0.0 0.0 0.0 -0.5502099394798279 254.378 -0.5234505534172058 1.0743250846862793 -0.5560517311096191 0.12268132716417313 0.1795906126499176 -0.13434387743473053 0.0 0.0 0.0 0.0 0.0 -0.5622028112411499 255.667 -0.5162898898124695 1.0420469045639038 -0.5629574656486511 0.6063267588615417 0.9789742827415466 0.17831428349018097 0.0 0.0 0.0 0.0 0.0 -0.5721094012260437 256.913 -0.5206753015518188 1.048685908317566 -0.5689601898193359 0.11861071735620499 0.5089600086212158 0.07423652708530426 0.0 0.0 0.0 0.0 0.0 -0.5794562101364136 259.159 -0.5102633237838745 1.0816031694412231 -0.5856975317001343 0.3446694612503052 0.23097679018974304 -0.2676559388637543 0.0 0.0 0.0 0.0 0.0 -0.602313756942749 260.343 -0.5047219395637512 1.0757004022598267 -0.6021365523338318 0.05504521727561951 -0.9295227527618408 0.01139345858246088 0.0 0.0 0.0 0.0 0.0 -0.5931282043457031 261.63 -0.5107527375221252 1.0570229291915894 -0.5986627340316772 -0.17635303735733032 0.16830481588840485 -0.01527751237154007 0.0 0.0 0.0 0.0 0.0 -0.5929497480392456 262.937 -0.5082541704177856 1.0526273250579834 -0.6056976914405823 0.22982220351696014 -0.6125459671020508 -0.10564981400966644 0.0 0.0 0.0 0.0 0.0 -0.6075512170791626 264.116 -0.5017575025558472 1.060356855392456 -0.6035467982292175 0.41017386317253113 -0.08841345459222794 -0.013709344901144505 0.0 0.0 0.0 0.0 0.0 -0.6080201864242554 265.385 -0.505704939365387 1.0708484649658203 -0.6159152388572693 -0.13123999536037445 -0.4012625813484192 0.0279623344540596 0.0 0.0 0.0 0.0 0.0 -0.6196600794792175 266.574 -0.49504542350769043 1.0425524711608887 -0.6186884641647339 -0.3631797432899475 -0.35130852460861206 -0.042397815734148026 0.0 0.0 0.0 0.0 0.0 -0.6098756194114685 268.808 -0.49944359064102173 1.0233838558197021 -0.6127282381057739 -0.06604399532079697 -0.007963747717440128 0.09043118357658386 0.0 0.0 0.0 0.0 0.0 -0.6230171918869019 270.781 -0.5051910877227783 1.0727791786193848 -0.6358436942100525 0.1625797301530838 -0.03738098964095116 -0.22316907346248627 0.0 0.0 0.0 0.0 0.0 -0.6453018188476562 272.274 -0.5299912691116333 1.0615028142929077 -0.6354518532752991 -0.028472336009144783 -0.49191009998321533 0.11025410145521164 0.0 0.0 0.0 0.0 0.0 -0.648766040802002 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:25:38.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:25:38.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f03016d450cfe65f957c0fb16d78dc4fff13713 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:25:38.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 309.149 -0.5133978724479675 1.050020456314087 -0.7711715698242188 0.01681853085756302 -0.02397775836288929 0.14004121720790863 0.0 0.0 0.0 0.0 0.0 -0.7715036869049072 310.094 -0.5168041586875916 1.0437489748001099 -0.7743726968765259 -0.16609008610248566 -0.091325543820858 0.013259674422442913 0.0 0.0 0.0 0.0 0.0 -0.7811493873596191 311.074 -0.5153062343597412 1.0364996194839478 -0.7735905647277832 0.11367447674274445 0.07487649470567703 -0.14755232632160187 0.0 0.0 0.0 0.0 0.0 -0.7734702825546265 311.997 -0.5208587646484375 1.057360291481018 -0.7719510793685913 -0.08370952308177948 0.26533371210098267 -0.13611777126789093 0.0 0.0 0.0 0.0 0.0 -0.7774959802627563 312.975 -0.5175402760505676 1.0766783952713013 -0.776710569858551 -0.002088649431243539 -0.18235836923122406 0.1498846709728241 0.0 0.0 0.0 0.0 0.0 -0.7915061116218567 313.934 -0.5221741795539856 1.0744271278381348 -0.7782412767410278 0.16273732483386993 0.5751422643661499 0.07688167691230774 0.0 0.0 0.0 0.0 0.0 -0.7714395523071289 315.962 -0.5293059945106506 1.0663448572158813 -0.7707248330116272 0.2133503407239914 0.8743613362312317 -0.201850026845932 0.0 0.0 0.0 0.0 0.0 -0.7617067694664001 316.909 -0.5115317702293396 1.0588375329971313 -0.7633527517318726 0.22287222743034363 -0.37747055292129517 0.2500170171260834 0.0 0.0 0.0 0.0 0.0 -0.7668222188949585 318.053 -0.501853883266449 1.0628635883331299 -0.7697106003761292 0.38138213753700256 0.17698891460895538 -0.16326966881752014 0.0 0.0 0.0 0.0 0.0 -0.7837569713592529 320.283 -0.5224689841270447 1.05722177028656 -0.7808440327644348 0.06364376842975616 0.49901580810546875 0.00870029628276825 0.0 0.0 0.0 0.0 0.0 -0.7755065560340881 322.447 -0.521744430065155 1.0294265747070312 -0.7707874178886414 -0.030795074999332428 0.004017746075987816 0.13515090942382812 0.0 0.0 0.0 0.0 0.0 -0.7653349041938782 323.482 -0.5060125589370728 1.068722128868103 -0.7619341611862183 -0.14369896054267883 -0.08216646313667297 0.21185019612312317 0.0 0.0 0.0 0.0 0.0 -0.7640195488929749 324.697 -0.5019063353538513 1.078163981437683 -0.7726191878318787 0.30011165142059326 0.11454896628856659 0.0340246744453907 0.0 0.0 0.0 0.0 0.0 -0.7701267004013062 325.732 -0.5153164863586426 1.0582153797149658 -0.7765832543373108 0.08655036240816116 0.2916867434978485 -0.08483034372329712 0.0 0.0 0.0 0.0 0.0 -0.7732055187225342 326.689 -0.5167829394340515 1.046269178390503 -0.7760952711105347 0.03424074500799179 -0.16304396092891693 -0.009219530038535595 0.0 0.0 0.0 0.0 0.0 -0.7815940976142883 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:29:00.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:29:00.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:29:00.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:29:54.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:29:54.txt new file mode 100644 index 0000000000000000000000000000000000000000..eb9d37de487e807cd4a5474e90ed653b6783bc9a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:29:54.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 51.735 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 58.684 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 60.77 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 65.794 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 67.908 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 70.988 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 73.985 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 77.13 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:33:03.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:33:03.txt new file mode 100644 index 0000000000000000000000000000000000000000..c67acc47d2c17a22d842dea751a1d94b58f56b21 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:33:03.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 250.947 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 254.644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 258.007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:34:39.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:34:39.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:34:39.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:36:15.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:36:15.txt new file mode 100644 index 0000000000000000000000000000000000000000..fce9e6dda22cf7063382bbebe1443e2de5dfe633 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:36:15.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 126.803 1.1094878911972046 1.2264457941055298 -171.34913635253906 -0.5143291354179382 -0.4636105000972748 0.09659494459629059 0.0 0.0 -0.0 0.0 0.0 -171.34642028808594 128.898 1.1050634384155273 1.2479511499404907 -171.34530639648438 -0.29977503418922424 0.01685206964612007 0.1744372844696045 0.0 0.0 -0.0 0.0 0.0 -171.35816955566406 130.962 1.1144522428512573 1.2445181608200073 -171.36483764648438 0.5291512608528137 0.10408196598291397 -0.13851331174373627 0.0 0.0 -0.0 0.0 0.0 -171.36294555664062 133.017 1.10935378074646 1.2303426265716553 -171.36703491210938 0.10379156470298767 0.5637208819389343 -0.19002512097358704 0.0 0.0 -0.0 0.0 0.0 -171.38221740722656 135.061 1.117834448814392 1.2556524276733398 -171.38731384277344 -0.3679252564907074 0.05880392715334892 -0.17126204073429108 0.0 0.0 -0.0 0.0 0.0 -171.40744018554688 138.484 1.258552074432373 1.3813058137893677 -172.31326293945312 -0.8802626132965088 -1.0403497219085693 -3.00044584274292 0.0 0.0 -0.0 0.0 0.0 102.79218292236328 143.724 -0.40464478731155396 0.4854077100753784 -18.39276695251465 -3.0170533657073975 -0.30908921360969543 -71.17980194091797 0.0 0.0 -0.0 0.0 0.0 39.509056091308594 145.492 0.6455064415931702 -0.3319503664970398 73.72091674804688 -0.07095258682966232 0.6151713132858276 -5.87788724899292 0.0 0.0 -0.0 0.0 0.0 75.97151947021484 147.44 0.5704425573348999 -0.3001174330711365 75.96778106689453 -0.07843253016471863 -0.32655179500579834 -0.21141788363456726 0.0 0.0 -0.0 0.0 0.0 75.95401000976562 149.333 0.5448986887931824 -0.2838889956474304 77.77132415771484 0.438438355922699 -0.6768652200698853 -0.18143266439437866 0.0 0.0 -0.0 0.0 0.0 39.188446044921875 151.154 0.5738691091537476 -0.2408600002527237 80.49768829345703 0.6341274380683899 -0.5458452105522156 -1.9972306489944458 0.0 0.0 -0.0 0.0 0.0 -47.756797790527344 152.713 1.5144680738449097 0.48838022351264954 158.0472869873047 9.39492130279541 -2.373288631439209 428.3133239746094 0.0 0.0 -0.0 0.0 0.0 -5.8221116065979 154.399 -0.5195973515510559 0.24396701157093048 14.256229400634766 -0.21460124850273132 -2.801598072052002 -9.150142669677734 0.0 0.0 -0.0 0.0 0.0 20.92087173461914 158.386 -0.5026580691337585 0.15608467161655426 20.905000686645508 1.2053200006484985 0.2429145872592926 -0.07787346094846725 0.0 0.0 -0.0 0.0 0.0 20.871070861816406 160.297 -0.5585291385650635 0.14719228446483612 20.93052101135254 0.3979073762893677 -0.33889928460121155 0.04481600597500801 0.0 0.0 -0.0 0.0 0.0 20.919498443603516 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:40:26.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:40:26.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:40:26.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:43:43.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:43:43.txt new file mode 100644 index 0000000000000000000000000000000000000000..5240a4b556f1f36f027f8159b337705825eff23c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:43:43.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 582.096 -0.3565 0.1678 17.8277 -0.8867 -0.1061 -0.1010 0.0000 0.0000 -0.0000 0.0000 0.0000 17.8163 588.26 -0.3469 0.1869 17.8008 -0.0852 -0.2716 0.1314 0.0000 0.0000 0.0000 0.0000 0.0000 17.7748 590.467 -0.3512 0.1707 17.7628 1.2706 0.4149 -0.0036 0.0000 0.0000 -0.0000 0.0000 0.0000 17.7620 593.451 -0.3399 0.1689 17.7601 0.3357 -0.2350 -0.1119 0.0000 0.0000 -0.0000 0.0000 0.0000 17.7373 596.512 -0.3512 0.1666 17.7335 0.4146 -0.3135 -0.2274 0.0000 0.0000 -0.0000 0.0000 0.0000 17.7154 599.481 -0.3455 0.1882 17.7087 0.8179 -1.1380 -0.0864 0.0000 0.0000 0.0000 0.0000 0.0000 17.7107 601.49 -0.3452 0.1622 17.6995 -0.2399 -2.3006 -0.1822 0.0000 0.0000 -0.0000 0.0000 0.0000 17.7033 603.745 -0.3549 0.1718 17.6952 -0.2710 -0.3156 0.0486 0.0000 0.0000 -0.0000 0.0000 0.0000 17.6798 608.723 -0.3509 0.1719 17.6824 -0.9723 -0.1914 -0.0231 0.0000 0.0000 0.0000 0.0000 0.0000 17.6693 610.908 -0.3416 0.1645 17.6591 -0.5788 -0.4636 0.2670 0.0000 0.0000 -0.0000 0.0000 0.0000 17.6649 614.72 -0.3557 0.1516 17.6510 -0.0066 -0.2227 -0.0114 0.0000 0.0000 -0.0000 0.0000 0.0000 17.6399 616.516 -0.3503 0.1472 17.6413 0.2647 -0.1928 0.0108 0.0000 0.0000 -0.0000 0.0000 0.0000 17.6308 618.576 -0.3660 0.1449 17.6325 -0.0812 -0.2567 0.0906 0.0000 0.0000 -0.0000 0.0000 0.0000 17.6247 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:50:24.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:50:24.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:50:24.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:51:43.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:51:43.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:51:43.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:54:18.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:54:18.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:54:18.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:56:44.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:56:44.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:56:44.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_15_23:57:40.txt b/cflib_groundstation/logs/cflie1_2023_11_15_23:57:40.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_15_23:57:40.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:02:30.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:02:30.txt new file mode 100644 index 0000000000000000000000000000000000000000..642ce05e7b8df15083b7c9dac21f4f8a802b6363 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:02:30.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:04:09.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:04:09.txt new file mode 100644 index 0000000000000000000000000000000000000000..9f73c1f3f7bbf9a5ce2decd43f0aac01c0b80cf4 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:04:09.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 1794.853 -0.3495 0.1065 9.5236 1.2927 0.0120 -0.3055 0.0000 0.0000 0.0000 0.0000 0.0000 9.5307 1795.744 -0.3330 0.1130 9.5341 -0.7289 0.0634 -0.0083 0.0000 0.0000 0.0000 0.0000 0.0000 9.5232 1796.677 -0.3203 0.1205 9.5198 0.0536 0.4916 0.0152 0.0000 0.0000 0.0000 0.0000 0.0000 9.5084 1797.564 -0.3286 0.1427 9.5109 -0.0008 0.3024 -0.0108 0.0000 0.0000 0.0000 0.0000 0.0000 9.5047 1798.704 -0.3274 0.1359 9.5036 -0.6346 -0.5147 0.0285 0.0000 0.0000 0.0000 0.0000 0.0000 9.5013 1799.659 -0.3267 0.1166 9.5054 -0.3684 0.0343 0.0707 0.0000 0.0000 0.0000 0.0000 0.0000 9.5142 1800.5 -0.3201 0.1017 9.5167 0.7201 -0.4875 -0.0009 0.0000 0.0000 0.0000 0.0000 0.0000 9.5167 1801.816 -0.3255 0.1114 9.5172 1.4182 0.1084 -0.0085 0.0000 0.0000 0.0000 0.0000 0.0000 9.5052 1803.069 -0.3320 0.1657 9.4979 -0.6873 -0.2757 0.2252 0.0000 0.0000 0.0000 0.0000 0.0000 9.4877 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:05:53.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:05:53.txt new file mode 100644 index 0000000000000000000000000000000000000000..3059dfb24c87729cca4aa67f18ddbfdf3865c8ea --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:05:53.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw ctrlStdnt.r_roll ctrlStdnt.r_pitch ctrlStdnt.r_yaw ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 1905.555 -0.3296 0.1325 8.8784 -0.6628 -0.6746 -0.1434 0.0000 0.0000 -0.0000 0.0000 0.0000 8.8546 1908.521 -0.3327 0.1361 8.8601 2.2408 -5.1040 -98.4203 0.0000 0.0000 -0.0000 0.0000 0.0000 -55.4603 1911.652 -0.1988 -0.0818 13.6902 0.5044 -4.0290 -46.1829 0.0000 0.0000 -0.0000 0.0000 0.0000 -55.7606 1914.736 -0.5624 0.3549 -16.0033 2.1695 -0.6190 -0.0478 0.0000 0.0000 -0.0000 0.0000 0.0000 -113.2372 1916.878 0.3365 1.8312 -113.2395 0.1169 0.9504 -0.2267 0.0000 0.0000 -0.0000 0.0000 0.0000 -113.2379 1919.714 0.2485 1.8295 -113.2416 -4.0154 -0.5274 62.6301 0.0000 0.0000 -0.0000 0.0000 0.0000 -29.8679 1923.701 0.6262 1.8688 -117.5665 -3.3579 -4.5370 57.1160 0.0000 0.0000 -0.0000 0.0000 0.0000 -172.3603 1925.745 1.4353 1.3744 -172.7026 0.8218 -1.2117 8.5388 0.0000 0.0000 0.0000 0.0000 0.0000 -163.0312 1932.791 0.9700 1.7410 -155.6183 -0.0245 -0.5795 -0.0305 0.0000 0.0000 0.0000 0.0000 0.0000 -155.6331 1936.018 0.9784 1.7584 -155.6344 0.7660 -0.5577 0.2753 0.0000 0.0000 0.0000 0.0000 0.0000 -155.6455 1938.651 0.9656 1.7589 -155.6404 -0.0473 -0.0985 0.0148 0.0000 0.0000 0.0000 0.0000 0.0000 -155.6546 1939.538 0.9668 1.7568 -155.6618 0.0716 -0.9752 0.0176 0.0000 0.0000 0.0000 0.0000 0.0000 -155.6638 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:08:13.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:08:13.txt new file mode 100644 index 0000000000000000000000000000000000000000..8523089bb0f9d8a8722226468f67ff73414b09cb --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:08:13.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw 2047.647 0.9501 1.7644 -156.1005 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:09:00.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:09:00.txt new file mode 100644 index 0000000000000000000000000000000000000000..8052b0298cf692e524571cf7674cadf8b759de14 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:09:00.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time stateEstimate.roll stateEstimate.pitch stateEstimate.yaw 2084.52 0.9617 1.7469 -156.2580 2084.793 0.9567 1.7462 -156.2605 2085.082 0.9581 1.7530 -156.2587 2085.365 0.9527 1.7443 -156.2626 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:10:41.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:10:41.txt new file mode 100644 index 0000000000000000000000000000000000000000..a91c866a705c9042d4c50fe5f2d337db957eb6ae --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:10:41.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 2185.457 0.0000 0.0000 0.0000 0.0000 0.0000 -156.6825 2185.844 0.0000 0.0000 0.0000 0.0000 0.0000 -156.6879 2186.331 0.0000 0.0000 0.0000 0.0000 0.0000 -156.6851 2187.731 0.0000 0.0000 0.0000 0.0000 0.0000 -156.6991 2188.203 0.0000 0.0000 0.0000 0.0000 0.0000 -156.6975 2188.716 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7006 2189.304 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7085 2189.839 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7120 2190.338 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7076 2190.841 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7138 2191.333 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7218 2191.827 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7325 2192.325 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7434 2192.785 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7453 2193.289 0.0000 0.0000 0.0000 0.0000 0.0000 -156.7478 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:12:44.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:12:44.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e81347bd58398069288381510ebae5cb6bf2f13 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:12:44.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 2308.641 0.0000 0.0000 0.0000 0.0000 0.0000 -157.3780 2308.99 0.0000 0.0000 0.0000 0.0000 0.0000 -157.3853 2309.414 0.0000 0.0000 0.0000 0.0000 0.0000 -157.3862 2309.918 0.0000 0.0000 0.0000 0.0000 0.0000 -157.3964 2310.402 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4049 2310.925 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4157 2311.459 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4252 2312.033 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4229 2312.549 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4152 2313.091 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4170 2313.549 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4291 2314.064 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4238 2314.628 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4385 2315.106 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4415 2315.632 0.0000 0.0000 0.0000 0.0000 0.0000 -157.4493 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_2023_11_16_00:17:03.txt b/cflib_groundstation/logs/cflie1_2023_11_16_00:17:03.txt new file mode 100644 index 0000000000000000000000000000000000000000..b249c2d9f025cf04f0109884c17d4b36a93fb6f8 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_2023_11_16_00:17:03.txt @@ -0,0 +1 @@ +#Crazyflie #Controller:Unknown #0 time ctrlStdnt.rollRate ctrlStdnt.pitchRate ctrlStdnt.yawRate ctrlStdnt.roll ctrlStdnt.pitch ctrlStdnt.yaw 2578.634 0.0000 0.0000 0.0000 0.0000 0.0000 -158.5846 2579.143 0.0000 0.0000 0.0000 0.0000 0.0000 -158.5866 2579.688 0.0000 0.0000 0.0000 0.0000 0.0000 -158.5888 2580.471 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6032 2581.134 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6145 2581.751 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6229 2583.21 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6319 2583.712 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6262 2585.295 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6284 2586.029 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6351 2586.583 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6381 2587.062 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6299 2587.609 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6321 2588.158 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6326 2588.747 0.0000 0.0000 0.0000 0.0000 0.0000 -158.6393 \ No newline at end of file diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:21:34.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:21:34.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:21:34.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:45:08.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:45:08.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:45:08.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:55:33.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:55:33.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:55:33.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:11.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:11.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:11.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:15.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:15.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_22:59:15.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:05:59.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:05:59.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:05:59.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:06:29.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:06:29.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:06:29.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:07:23.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:07:23.txt new file mode 100644 index 0000000000000000000000000000000000000000..031ca075e49b54b84ae1c7b7c8a8024b8d46690c --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:07:23.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:18:39.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:18:39.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:18:39.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:20:56.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:20:56.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:20:56.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:30:05.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:30:05.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:30:05.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:33:25.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:33:25.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:33:25.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:34:52.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:34:52.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:34:52.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:36:27.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:36:27.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:36:27.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:40:38.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:40:38.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:40:38.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:43:55.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:43:55.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_15_23:43:55.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:06:05.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:06:05.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:06:05.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:08:28.txt b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:08:28.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf0de8eff89902d1c5a585858835d68c0b8c2693 --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Log_toc_2023_11_16_00:08:28.txt @@ -0,0 +1,506 @@ +Log ID Type Group Identifier Name +0 1 gyro xRaw +1 1 gyro yRaw +2 1 gyro zRaw +3 6 gyro xVariance +4 6 gyro yVariance +5 6 gyro zVariance +108 6 gyro x +109 6 gyro y +110 6 gyro z +6 10 pwm m1_pwm +7 10 pwm m2_pwm +8 10 pwm m3_pwm +9 10 pwm m4_pwm +10 9 crtp rxRate +11 9 crtp txRate +12 6 pm vbat +13 9 pm vbatMV +14 6 pm extVbat +15 9 pm extVbatMV +16 6 pm extCurr +17 6 pm chargeCurrent +18 0 pm state +19 8 pm batteryLevel +20 8 radio rssi +21 8 radio isConnected +22 0 sys armed +38 8 sys canfly +39 8 sys isFlying +40 8 sys isTumbled +23 9 extrx ch0 +24 9 extrx ch1 +25 9 extrx ch2 +26 9 extrx ch3 +27 9 extrx thrust +28 6 extrx roll +29 6 extrx pitch +30 6 extrx yaw +31 10 memTst errCntW +32 9 range front +33 9 range back +34 9 range up +35 9 range left +36 9 range right +37 9 range zrange +41 6 ext_pos X +42 6 ext_pos Y +43 6 ext_pos Z +44 6 locSrv x +45 6 locSrv y +46 6 locSrv z +47 6 locSrv qx +48 6 locSrv qy +49 6 locSrv qz +50 6 locSrv qw +51 9 locSrvZ tick +52 6 pid_attitude roll_outP +53 6 pid_attitude roll_outI +54 6 pid_attitude roll_outD +55 6 pid_attitude pitch_outP +56 6 pid_attitude pitch_outI +57 6 pid_attitude pitch_outD +58 6 pid_attitude yaw_outP +59 6 pid_attitude yaw_outI +60 6 pid_attitude yaw_outD +61 6 pid_rate roll_outP +62 6 pid_rate roll_outI +63 6 pid_rate roll_outD +64 6 pid_rate pitch_outP +65 6 pid_rate pitch_outI +66 6 pid_rate pitch_outD +67 6 pid_rate yaw_outP +68 6 pid_rate yaw_outI +69 6 pid_rate yaw_outD +70 6 sensfusion6 qw +71 6 sensfusion6 qx +72 6 sensfusion6 qy +73 6 sensfusion6 qz +74 6 sensfusion6 gravityX +75 6 sensfusion6 gravityY +76 6 sensfusion6 gravityZ +77 6 sensfusion6 accZbase +78 8 sensfusion6 isInit +79 8 sensfusion6 isCalibrated +80 6 acc x +81 6 acc y +82 6 acc z +83 6 baro asl +84 6 baro temp +85 6 baro pressure +86 1 controller ctr_yaw +213 6 controller cmd_thrust +214 6 controller cmd_roll +215 6 controller cmd_pitch +216 6 controller cmd_yaw +217 6 controller r_roll +218 6 controller r_pitch +219 6 controller r_yaw +220 6 controller accelz +221 6 controller actuatorThrust +222 6 controller roll +223 6 controller pitch +224 6 controller yaw +225 6 controller rollRate +226 6 controller pitchRate +227 6 controller yawRate +87 6 ctrltarget x +88 6 ctrltarget y +89 6 ctrltarget z +90 6 ctrltarget vx +91 6 ctrltarget vy +92 6 ctrltarget vz +93 6 ctrltarget ax +94 6 ctrltarget ay +95 6 ctrltarget az +96 6 ctrltarget roll +97 6 ctrltarget pitch +98 6 ctrltarget yaw +99 1 ctrltargetZ x +100 1 ctrltargetZ y +101 1 ctrltargetZ z +102 1 ctrltargetZ vx +103 1 ctrltargetZ vy +104 1 ctrltargetZ vz +105 1 ctrltargetZ ax +106 1 ctrltargetZ ay +107 1 ctrltargetZ az +111 6 mag x +112 6 mag y +113 6 mag z +114 6 stabilizer roll +115 6 stabilizer pitch +116 6 stabilizer yaw +117 6 stabilizer thrust +118 6 stabilizer rtStab +119 10 stabilizer intToOut +120 6 stateEstimate x +121 6 stateEstimate y +122 6 stateEstimate z +123 6 stateEstimate vx +124 6 stateEstimate vy +125 6 stateEstimate vz +126 6 stateEstimate ax +127 6 stateEstimate ay +128 6 stateEstimate az +129 6 stateEstimate roll +130 6 stateEstimate pitch +131 6 stateEstimate yaw +132 6 stateEstimate qx +133 6 stateEstimate qy +134 6 stateEstimate qz +135 6 stateEstimate qw +136 1 stateEstimateZ x +137 1 stateEstimateZ y +138 1 stateEstimateZ z +139 1 stateEstimateZ vx +140 1 stateEstimateZ vy +141 1 stateEstimateZ vz +142 1 stateEstimateZ ax +143 1 stateEstimateZ ay +144 1 stateEstimateZ az +145 10 stateEstimateZ quat +146 1 stateEstimateZ rateRoll +147 1 stateEstimateZ ratePitch +148 1 stateEstimateZ rateYaw +149 6 posEstAlt estimatedZ +150 6 posEstAlt estVZ +151 6 posEstAlt velocityZ +152 6 posCtl targetVX +153 6 posCtl targetVY +154 6 posCtl targetVZ +155 6 posCtl targetX +156 6 posCtl targetY +157 6 posCtl targetZ +158 6 posCtl Xp +159 6 posCtl Xi +160 6 posCtl Xd +161 6 posCtl Yp +162 6 posCtl Yi +163 6 posCtl Yd +164 6 posCtl Zp +165 6 posCtl Zi +166 6 posCtl Zd +167 6 posCtl VXp +168 6 posCtl VXi +169 6 posCtl VXd +170 6 posCtl VZp +171 6 posCtl VZi +172 6 posCtl VZd +173 6 posCtrlIndi posRef_x +174 6 posCtrlIndi posRef_y +175 6 posCtrlIndi posRef_z +176 6 posCtrlIndi velS_x +177 6 posCtrlIndi velS_y +178 6 posCtrlIndi velS_z +179 6 posCtrlIndi velRef_x +180 6 posCtrlIndi velRef_y +181 6 posCtrlIndi velRef_z +182 6 posCtrlIndi angS_roll +183 6 posCtrlIndi angS_pitch +184 6 posCtrlIndi angS_yaw +185 6 posCtrlIndi angF_roll +186 6 posCtrlIndi angF_pitch +187 6 posCtrlIndi angF_yaw +188 6 posCtrlIndi accRef_x +189 6 posCtrlIndi accRef_y +190 6 posCtrlIndi accRef_z +191 6 posCtrlIndi accS_x +192 6 posCtrlIndi accS_y +193 6 posCtrlIndi accS_z +194 6 posCtrlIndi accF_x +195 6 posCtrlIndi accF_y +196 6 posCtrlIndi accF_z +197 6 posCtrlIndi accFT_x +198 6 posCtrlIndi accFT_y +199 6 posCtrlIndi accFT_z +200 6 posCtrlIndi accErr_x +201 6 posCtrlIndi accErr_y +202 6 posCtrlIndi accErr_z +203 6 posCtrlIndi phi_tilde +204 6 posCtrlIndi theta_tilde +205 6 posCtrlIndi T_tilde +206 6 posCtrlIndi T_inner +207 6 posCtrlIndi T_inner_f +208 6 posCtrlIndi T_incremented +209 6 posCtrlIndi cmd_phi +210 6 posCtrlIndi cmd_theta +211 6 estimator rtApnd +212 6 estimator rtRej +228 6 ctrlMel cmd_thrust +229 6 ctrlMel cmd_roll +230 6 ctrlMel cmd_pitch +231 6 ctrlMel cmd_yaw +232 6 ctrlMel r_roll +233 6 ctrlMel r_pitch +234 6 ctrlMel r_yaw +235 6 ctrlMel accelz +236 6 ctrlMel zdx +237 6 ctrlMel zdy +238 6 ctrlMel zdz +239 6 ctrlMel i_err_x +240 6 ctrlMel i_err_y +241 6 ctrlMel i_err_z +242 6 ctrlINDI cmd_thrust +243 6 ctrlINDI cmd_roll +244 6 ctrlINDI cmd_pitch +245 6 ctrlINDI cmd_yaw +246 6 ctrlINDI r_roll +247 6 ctrlINDI r_pitch +248 6 ctrlINDI r_yaw +249 6 ctrlINDI u_act_dyn_p +250 6 ctrlINDI u_act_dyn_q +251 6 ctrlINDI u_act_dyn_r +252 6 ctrlINDI du_p +253 6 ctrlINDI du_q +254 6 ctrlINDI du_r +255 6 ctrlINDI ang_accel_ref_p +256 6 ctrlINDI ang_accel_ref_q +257 6 ctrlINDI ang_accel_ref_r +258 6 ctrlINDI rate_d[0] +259 6 ctrlINDI rate_d[1] +260 6 ctrlINDI rate_d[2] +261 6 ctrlINDI uf_p +262 6 ctrlINDI uf_q +263 6 ctrlINDI uf_r +264 6 ctrlINDI Omega_f_p +265 6 ctrlINDI Omega_f_q +266 6 ctrlINDI Omega_f_r +267 6 ctrlINDI n_p +268 6 ctrlINDI n_q +269 6 ctrlINDI n_r +270 6 s_pid_attitude roll_outP +271 6 s_pid_attitude roll_outI +272 6 s_pid_attitude roll_outD +273 6 s_pid_attitude pitch_outP +274 6 s_pid_attitude pitch_outI +275 6 s_pid_attitude pitch_outD +276 6 s_pid_attitude yaw_outP +277 6 s_pid_attitude yaw_outI +278 6 s_pid_attitude yaw_outD +279 6 s_pid_rate roll_outP +280 6 s_pid_rate roll_outI +281 6 s_pid_rate roll_outD +282 6 s_pid_rate pitch_outP +283 6 s_pid_rate pitch_outI +284 6 s_pid_rate pitch_outD +285 6 s_pid_rate yaw_outP +286 6 s_pid_rate yaw_outI +287 6 s_pid_rate yaw_outD +288 6 ctrlStdnt cmd_thrust +289 6 ctrlStdnt cmd_roll +290 6 ctrlStdnt cmd_pitch +291 6 ctrlStdnt cmd_yaw +292 6 ctrlStdnt r_roll +293 6 ctrlStdnt r_pitch +294 6 ctrlStdnt r_yaw +295 6 ctrlStdnt accelz +296 6 ctrlStdnt thrustDesired +297 6 ctrlStdnt roll +298 6 ctrlStdnt pitch +299 6 ctrlStdnt yaw +300 6 ctrlStdnt rollRate +301 6 ctrlStdnt pitchRate +302 6 ctrlStdnt yawRate +303 10 motor m1 +304 10 motor m2 +305 10 motor m3 +306 10 motor m4 +307 10 colAv latency +308 6 health motorVarXM1 +309 6 health motorVarYM1 +310 6 health motorVarXM2 +311 6 health motorVarYM2 +312 6 health motorVarXM3 +313 6 health motorVarYM3 +314 6 health motorVarXM4 +315 6 health motorVarYM4 +316 8 health motorPass +317 6 health batterySag +318 8 health batteryPass +319 9 health motorTestCount +320 8 kalman inFlight +321 6 kalman stateX +322 6 kalman stateY +323 6 kalman stateZ +324 6 kalman statePX +325 6 kalman statePY +326 6 kalman statePZ +327 6 kalman stateD0 +328 6 kalman stateD1 +329 6 kalman stateD2 +330 6 kalman varX +331 6 kalman varY +332 6 kalman varZ +333 6 kalman varPX +334 6 kalman varPY +335 6 kalman varPZ +336 6 kalman varD0 +337 6 kalman varD1 +338 6 kalman varD2 +339 6 kalman q0 +340 6 kalman q1 +341 6 kalman q2 +342 6 kalman q3 +343 6 kalman rtUpdate +344 6 kalman rtPred +345 6 kalman rtFinal +346 2 outlierf lhWin +427 2 outlierf bucket0 +428 2 outlierf bucket1 +429 2 outlierf bucket2 +430 2 outlierf bucket3 +431 2 outlierf bucket4 +432 6 outlierf accLev +433 6 outlierf errD +347 6 kalman_pred predNX +348 6 kalman_pred predNY +349 6 kalman_pred measNX +350 6 kalman_pred measNY +351 6 ring fadeTime +352 2 gps lat +353 2 gps lon +354 6 gps hMSL +355 6 gps hAcc +356 2 gps nsat +357 2 gps fix +358 6 usd spiWrBps +359 6 usd spiReBps +360 6 usd fatWrBps +361 8 loco mode +362 6 loco spiWr +363 6 loco spiRe +364 9 ranging state +365 6 ranging distance0 +366 6 ranging distance1 +367 6 ranging distance2 +368 6 ranging distance3 +369 6 ranging distance4 +370 6 ranging distance5 +371 6 ranging distance6 +372 6 ranging distance7 +373 6 ranging pressure0 +374 6 ranging pressure1 +375 6 ranging pressure2 +376 6 ranging pressure3 +377 6 ranging pressure4 +378 6 ranging pressure5 +379 6 ranging pressure6 +380 6 ranging pressure7 +381 8 twr rangingSuccessRate0 +382 8 twr rangingPerSec0 +383 8 twr rangingSuccessRate1 +384 8 twr rangingPerSec1 +385 8 twr rangingSuccessRate2 +386 8 twr rangingPerSec2 +387 8 twr rangingSuccessRate3 +388 8 twr rangingPerSec3 +389 8 twr rangingSuccessRate4 +390 8 twr rangingPerSec4 +391 8 twr rangingSuccessRate5 +392 8 twr rangingPerSec5 +393 6 tdoa2 d7-0 +394 6 tdoa2 d0-1 +395 6 tdoa2 d1-2 +396 6 tdoa2 d2-3 +397 6 tdoa2 d3-4 +398 6 tdoa2 d4-5 +399 6 tdoa2 d5-6 +400 6 tdoa2 d6-7 +401 6 tdoa2 cc0 +402 6 tdoa2 cc1 +403 6 tdoa2 cc2 +404 6 tdoa2 cc3 +405 6 tdoa2 cc4 +406 6 tdoa2 cc5 +407 6 tdoa2 cc6 +408 6 tdoa2 cc7 +409 9 tdoa2 dist7-0 +410 9 tdoa2 dist0-1 +411 9 tdoa2 dist1-2 +412 9 tdoa2 dist2-3 +413 9 tdoa2 dist3-4 +414 9 tdoa2 dist4-5 +415 9 tdoa2 dist5-6 +416 9 tdoa2 dist6-7 +417 6 tdoaEngine stRx +418 6 tdoaEngine stEst +419 6 tdoaEngine stTime +420 6 tdoaEngine stFound +421 6 tdoaEngine stCc +422 6 tdoaEngine stHit +423 6 tdoaEngine stMiss +424 6 tdoaEngine cc +425 9 tdoaEngine tof +426 6 tdoaEngine tdoa +434 8 motion motion +435 1 motion deltaX +436 1 motion deltaY +437 9 motion shutter +438 8 motion maxRaw +439 8 motion minRaw +440 8 motion Rawsum +441 8 motion outlierCount +442 8 motion squal +443 6 motion std +444 9 oa front +445 9 oa back +446 9 oa up +447 9 oa left +448 9 oa right +449 8 activeMarker btSns +450 8 activeMarker i2cOk +451 8 aideck receivebyte +452 8 lighthouse validAngles +453 6 lighthouse rawAngle0x +454 6 lighthouse rawAngle0y +455 6 lighthouse rawAngle1x +456 6 lighthouse rawAngle1y +457 6 lighthouse angle0x +458 6 lighthouse angle0y +459 6 lighthouse angle1x +460 6 lighthouse angle1y +461 6 lighthouse angle0x_1 +462 6 lighthouse angle0y_1 +463 6 lighthouse angle1x_1 +464 6 lighthouse angle1y_1 +465 6 lighthouse angle0x_2 +466 6 lighthouse angle0y_2 +467 6 lighthouse angle1x_2 +468 6 lighthouse angle1y_2 +469 6 lighthouse angle0x_3 +470 6 lighthouse angle0y_3 +471 6 lighthouse angle1x_3 +472 6 lighthouse angle1y_3 +473 6 lighthouse rawAngle0xlh2 +474 6 lighthouse rawAngle0ylh2 +475 6 lighthouse rawAngle1xlh2 +476 6 lighthouse rawAngle1ylh2 +477 6 lighthouse angle0x_0lh2 +478 6 lighthouse angle0y_0lh2 +479 6 lighthouse angle1x_0lh2 +480 6 lighthouse angle1y_0lh2 +481 6 lighthouse serRt +482 6 lighthouse frmRt +483 6 lighthouse cycleRt +484 6 lighthouse bs0Rt +485 6 lighthouse bs1Rt +486 9 lighthouse width0 +487 9 lighthouse width1 +488 9 lighthouse width2 +489 9 lighthouse width3 +490 8 lighthouse comSync +491 9 lighthouse bsReceive +492 9 lighthouse bsActive +493 9 lighthouse bsCalUd +494 9 lighthouse bsCalCon +495 8 lighthouse status +496 6 lighthouse posRt +497 6 lighthouse estBs0Rt +498 6 lighthouse estBs1Rt +499 6 lighthouse x +500 6 lighthouse y +501 6 lighthouse z +502 6 lighthouse delta +503 9 lighthouse bsGeoVal +504 9 lighthouse bsCalVal diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:21:34.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:21:34.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:21:34.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:45:08.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:45:08.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:45:08.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:55:33.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:55:33.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:55:33.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:57:36.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:57:36.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:57:36.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:07.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:07.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:07.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:15.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:15.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_22:59:15.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:05:58.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:05:58.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:05:58.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:06:29.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:06:29.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:06:29.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:07:23.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:07:23.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa438503f8713db21500fc6c1799a956270e950f --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:07:23.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:18:39.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:18:39.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:18:39.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:20:56.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:20:56.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:20:56.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:30:05.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:30:05.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:30:05.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:33:25.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:33:25.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:33:25.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:34:52.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:34:52.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:34:52.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:36:27.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:36:27.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:36:27.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:40:38.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:40:38.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:40:38.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:43:55.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:43:55.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_15_23:43:55.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:06:05.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:06:05.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:06:05.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2 diff --git a/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:08:28.txt b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:08:28.txt new file mode 100644 index 0000000000000000000000000000000000000000..247790e6bead8ffa798cff4f4171028dc73ef34a --- /dev/null +++ b/cflib_groundstation/logs/cflie1_Param_toc_2023_11_16_00:08:28.txt @@ -0,0 +1,247 @@ +Param ID Type Group Identifier Name +0 8 imu_sensors AK8963 +1 8 imu_sensors LPS25H +5 8 imu_sensors BMP388 +2 8 imu_tests MPU6500 +3 8 imu_tests AK8963 +4 8 imu_tests LPS25H +6 9 cpu flash +7 10 cpu id0 +8 10 cpu id1 +9 10 cpu id2 +10 0 system selftestPassed +11 0 system forceArm +16 8 system taskDump +208 8 system highlight +12 9 crtpsrv echoDelay +13 8 sound effect +14 10 sound neffect +15 9 sound freq +17 8 memTst resetW +18 0 sys e_stop +19 8 commander enHighLevel +20 8 flightmode althold +21 8 flightmode poshold +22 8 flightmode posSet +23 8 flightmode yawMode +24 8 flightmode stabModeRoll +25 8 flightmode stabModePitch +26 8 flightmode stabModeYaw +27 6 cmdrCPPM rateRoll +28 6 cmdrCPPM ratePitch +29 6 cmdrCPPM angPitch +30 6 cmdrCPPM angRoll +31 6 cmdrCPPM rateYaw +32 8 locSrv enRangeStreamFP32 +33 8 locSrv enLhAngleStream +34 6 locSrv extPosStdDev +35 6 locSrv extQuatStdDev +36 6 pid_attitude roll_kp +37 6 pid_attitude roll_ki +38 6 pid_attitude roll_kd +39 6 pid_attitude pitch_kp +40 6 pid_attitude pitch_ki +41 6 pid_attitude pitch_kd +42 6 pid_attitude yaw_kp +43 6 pid_attitude yaw_ki +44 6 pid_attitude yaw_kd +45 6 pid_rate roll_kp +46 6 pid_rate roll_ki +47 6 pid_rate roll_kd +48 6 pid_rate pitch_kp +49 6 pid_rate pitch_ki +50 6 pid_rate pitch_kd +51 6 pid_rate yaw_kp +52 6 pid_rate yaw_ki +53 6 pid_rate yaw_kd +54 6 sensfusion6 kp +55 6 sensfusion6 ki +56 6 sensfusion6 baseZacc +57 8 stabilizer estimator +58 8 stabilizer controller +59 8 stabilizer stop +60 6 posEstAlt estAlphaAsl +61 6 posEstAlt estAlphaZr +62 6 posEstAlt velFactor +63 6 posEstAlt velZAlpha +64 6 posEstAlt vAccDeadband +65 6 posCtlPid xKp +66 6 posCtlPid xKi +67 6 posCtlPid xKd +68 6 posCtlPid yKp +69 6 posCtlPid yKi +70 6 posCtlPid yKd +71 6 posCtlPid zKp +72 6 posCtlPid zKi +73 6 posCtlPid zKd +74 9 posCtlPid thrustBase +75 9 posCtlPid thrustMin +76 6 posCtlPid rpLimit +77 6 posCtlPid xyVelMax +78 6 posCtlPid zVelMax +79 6 velCtlPid vxKp +80 6 velCtlPid vxKi +81 6 velCtlPid vxKd +82 6 velCtlPid vyKp +83 6 velCtlPid vyKi +84 6 velCtlPid vyKd +85 6 velCtlPid vzKp +86 6 velCtlPid vzKi +87 6 velCtlPid vzKd +88 6 posCtrlIndi K_xi_x +89 6 posCtrlIndi K_xi_y +90 6 posCtrlIndi K_xi_z +91 6 posCtrlIndi K_dxi_x +92 6 posCtrlIndi K_dxi_y +93 6 posCtrlIndi K_dxi_z +94 6 posCtrlIndi pq_clamping +95 8 controller tiltComp +96 6 ctrlMel kp_xy +97 6 ctrlMel kd_xy +98 6 ctrlMel ki_xy +99 6 ctrlMel i_range_xy +100 6 ctrlMel kp_z +101 6 ctrlMel kd_z +102 6 ctrlMel ki_z +103 6 ctrlMel i_range_z +104 6 ctrlMel mass +105 6 ctrlMel massThrust +106 6 ctrlMel kR_xy +107 6 ctrlMel kR_z +108 6 ctrlMel kw_xy +109 6 ctrlMel kw_z +110 6 ctrlMel ki_m_xy +111 6 ctrlMel ki_m_z +112 6 ctrlMel kd_omega_rp +113 6 ctrlMel i_range_m_xy +114 6 ctrlMel i_range_m_z +115 6 ctrlINDI thrust_threshold +116 6 ctrlINDI bound_ctrl_input +117 6 ctrlINDI g1_p +118 6 ctrlINDI g1_q +119 6 ctrlINDI g1_r +120 6 ctrlINDI g2 +121 6 ctrlINDI ref_err_p +122 6 ctrlINDI ref_err_q +123 6 ctrlINDI ref_err_r +124 6 ctrlINDI ref_rate_p +125 6 ctrlINDI ref_rate_q +126 6 ctrlINDI ref_rate_r +127 6 ctrlINDI act_dyn_p +128 6 ctrlINDI act_dyn_q +129 6 ctrlINDI act_dyn_r +130 6 ctrlINDI filt_cutoff +131 6 ctrlINDI filt_cutoff_r +132 8 ctrlINDI outerLoopActive +133 6 s_pid_attitude roll_kp +134 6 s_pid_attitude roll_ki +135 6 s_pid_attitude roll_kd +136 6 s_pid_attitude pitch_kp +137 6 s_pid_attitude pitch_ki +138 6 s_pid_attitude pitch_kd +139 6 s_pid_attitude yaw_kp +140 6 s_pid_attitude yaw_ki +141 6 s_pid_attitude yaw_kd +142 6 s_pid_rate roll_kp +143 6 s_pid_rate roll_ki +144 6 s_pid_rate roll_kd +145 6 s_pid_rate pitch_kp +146 6 s_pid_rate pitch_ki +147 6 s_pid_rate pitch_kd +148 6 s_pid_rate yaw_kp +149 6 s_pid_rate yaw_ki +150 6 s_pid_rate yaw_kd +151 8 ctrlStdnt tiltComp +152 8 ctrlStdnt TEST_PARAM +153 8 motorPowerSet enable +154 9 motorPowerSet m1 +155 9 motorPowerSet m2 +156 9 motorPowerSet m3 +157 9 motorPowerSet m4 +158 10 powerDist idleThrust +159 8 colAv enable +160 6 colAv ellipsoidX +161 6 colAv ellipsoidY +162 6 colAv ellipsoidZ +163 6 colAv bboxMinX +164 6 colAv bboxMinY +165 6 colAv bboxMinZ +166 6 colAv bboxMaxX +167 6 colAv bboxMaxY +168 6 colAv bboxMaxZ +169 6 colAv horizon +170 6 colAv maxSpeed +171 6 colAv sidestepThrsh +172 2 colAv maxPeerLocAge +173 6 colAv vorTol +174 2 colAv vorIters +175 8 health startPropTest +176 8 health startBatTest +177 8 kalman resetEstimation +178 8 kalman quadIsFlying +179 8 kalman robustTdoa +180 8 kalman robustTwr +181 6 kalman pNAcc_xy +182 6 kalman pNAcc_z +183 6 kalman pNVel +184 6 kalman pNPos +185 6 kalman pNAtt +186 6 kalman mNBaro +187 6 kalman mNGyro_rollpitch +188 6 kalman mNGyro_yaw +189 6 kalman initialX +190 6 kalman initialY +191 6 kalman initialZ +192 6 kalman initialYaw +193 6 kalman maxPos +194 6 kalman maxVel +195 6 hlCommander vtoff +196 6 hlCommander vland +197 8 deck bcLedRing +209 8 deck bcBuzzer +210 8 deck bcGTGPS +211 8 deck bcCPPM +212 8 deck bcUSD +215 8 deck bcZRanger +216 8 deck bcZRanger2 +217 8 deck bcDWM1000 +222 8 deck bcFlow +223 8 deck bcFlow2 +227 8 deck bcOA +228 8 deck bcMultiranger +229 8 deck bcLighthouse4 +236 8 deck bcActiveMarker +237 8 deck bcAIDeck +198 8 ring effect +199 10 ring neffect +200 8 ring solidRed +201 8 ring solidGreen +202 8 ring solidBlue +203 8 ring headlightEnable +204 6 ring emptyCharge +205 6 ring fullCharge +206 10 ring fadeColor +207 6 ring fadeTime +213 8 usd canLog +214 8 usd logging +218 8 loco mode +219 8 tdoaEngine logId +220 8 tdoaEngine logOthrId +221 8 tdoaEngine matchAlgo +224 8 motion disable +225 8 motion adaptive +226 6 motion flowStdFixed +230 8 activeMarker front +231 8 activeMarker back +232 8 activeMarker left +233 8 activeMarker right +234 8 activeMarker mode +235 8 activeMarker poll +238 10 firmware revision0 +239 9 firmware revision1 +240 8 firmware modified +241 8 lighthouse method +242 8 lighthouse bsCalibReset +243 8 lighthouse systemType +244 6 lighthouse sweepStd +245 6 lighthouse sweepStd2