openc3 6.10.4 → 7.0.0.pre.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +2 -1
- data/Guardfile +4 -9
- data/LICENSE.md +85 -0
- data/README.md +8 -8
- data/Rakefile +3 -9
- data/bin/cstol_converter +3 -8
- data/bin/openc3cli +64 -35
- data/data/config/command_modifiers.yaml +18 -1
- data/data/config/interface_modifiers.yaml +0 -2
- data/data/config/plugins.yaml +14 -18
- data/data/config/screen.yaml +1 -1
- data/data/config/target.yaml +26 -79
- data/data/config/telemetry_modifiers.yaml +15 -0
- data/data/config/widgets.yaml +32 -32
- data/ext/openc3/ext/array/array.c +4 -9
- data/ext/openc3/ext/buffered_file/buffered_file.c +4 -9
- data/ext/openc3/ext/burst_protocol/burst_protocol.c +3 -8
- data/ext/openc3/ext/config_parser/config_parser.c +2 -7
- data/ext/openc3/ext/crc/crc.c +3 -8
- data/ext/openc3/ext/openc3_io/openc3_io.c +4 -9
- data/ext/openc3/ext/packet/packet.c +7 -9
- data/ext/openc3/ext/platform/platform.c +3 -8
- data/ext/openc3/ext/polynomial_conversion/polynomial_conversion.c +16 -12
- data/ext/openc3/ext/string/string.c +4 -9
- data/ext/openc3/ext/structure/structure.c +5 -9
- data/ext/openc3/ext/tabbed_plots_config/tabbed_plots_config.c +4 -9
- data/ext/openc3/ext/telemetry/telemetry.c +8 -12
- data/lib/cosmos.rb +4 -9
- data/lib/cosmosc2.rb +4 -9
- data/lib/openc3/accessors/accessor.rb +10 -13
- data/lib/openc3/accessors/binary_accessor.rb +18 -17
- data/lib/openc3/accessors/cbor_accessor.rb +3 -8
- data/lib/openc3/accessors/form_accessor.rb +4 -9
- data/lib/openc3/accessors/html_accessor.rb +3 -8
- data/lib/openc3/accessors/http_accessor.rb +4 -9
- data/lib/openc3/accessors/json_accessor.rb +4 -9
- data/lib/openc3/accessors/template_accessor.rb +4 -9
- data/lib/openc3/accessors/xml_accessor.rb +4 -9
- data/lib/openc3/accessors.rb +3 -8
- data/lib/openc3/api/README.md +1 -1
- data/lib/openc3/api/api.rb +3 -8
- data/lib/openc3/api/authorized_api.rb +4 -9
- data/lib/openc3/api/cmd_api.rb +3 -8
- data/lib/openc3/api/config_api.rb +3 -8
- data/lib/openc3/api/interface_api.rb +4 -9
- data/lib/openc3/api/limits_api.rb +3 -8
- data/lib/openc3/api/metrics_api.rb +2 -19
- data/lib/openc3/api/offline_access_api.rb +2 -7
- data/lib/openc3/api/router_api.rb +5 -10
- data/lib/openc3/api/settings_api.rb +3 -8
- data/lib/openc3/api/stash_api.rb +2 -7
- data/lib/openc3/api/target_api.rb +3 -8
- data/lib/openc3/api/tlm_api.rb +15 -38
- data/lib/openc3/bridge/bridge.rb +3 -8
- data/lib/openc3/bridge/bridge_config.rb +5 -10
- data/lib/openc3/bridge/bridge_interface_thread.rb +4 -9
- data/lib/openc3/bridge/bridge_router_thread.rb +4 -9
- data/lib/openc3/ccsds/ccsds_packet.rb +4 -9
- data/lib/openc3/ccsds/ccsds_parser.rb +3 -8
- data/lib/openc3/config/config_parser.rb +3 -8
- data/lib/openc3/config/meta_config_parser.rb +3 -8
- data/lib/openc3/conversions/bit_reverse_conversion.rb +3 -8
- data/lib/openc3/conversions/conversion.rb +3 -8
- data/lib/openc3/conversions/generic_conversion.rb +3 -8
- data/lib/openc3/conversions/ip_read_conversion.rb +3 -8
- data/lib/openc3/conversions/ip_write_conversion.rb +3 -8
- data/lib/openc3/conversions/object_read_conversion.rb +3 -8
- data/lib/openc3/conversions/object_write_conversion.rb +3 -8
- data/lib/openc3/conversions/packet_time_formatted_conversion.rb +4 -9
- data/lib/openc3/conversions/packet_time_seconds_conversion.rb +4 -9
- data/lib/openc3/conversions/polynomial_conversion.rb +6 -8
- data/lib/openc3/conversions/processor_conversion.rb +3 -8
- data/lib/openc3/conversions/received_count_conversion.rb +4 -9
- data/lib/openc3/conversions/received_time_formatted_conversion.rb +4 -9
- data/lib/openc3/conversions/received_time_seconds_conversion.rb +4 -9
- data/lib/openc3/conversions/segmented_polynomial_conversion.rb +6 -8
- data/lib/openc3/conversions/unix_time_conversion.rb +3 -8
- data/lib/openc3/conversions/unix_time_formatted_conversion.rb +3 -8
- data/lib/openc3/conversions/unix_time_seconds_conversion.rb +3 -8
- data/lib/openc3/conversions.rb +3 -8
- data/lib/openc3/core_ext/array.rb +3 -8
- data/lib/openc3/core_ext/binding.rb +4 -9
- data/lib/openc3/core_ext/class.rb +4 -9
- data/lib/openc3/core_ext/exception.rb +3 -8
- data/lib/openc3/core_ext/file.rb +4 -9
- data/lib/openc3/core_ext/io.rb +4 -9
- data/lib/openc3/core_ext/kernel.rb +3 -8
- data/lib/openc3/core_ext/math.rb +4 -9
- data/lib/openc3/core_ext/matrix.rb +4 -9
- data/lib/openc3/core_ext/objectspace.rb +4 -9
- data/lib/openc3/core_ext/openc3_io.rb +4 -9
- data/lib/openc3/core_ext/range.rb +4 -9
- data/lib/openc3/core_ext/socket.rb +4 -9
- data/lib/openc3/core_ext/string.rb +3 -8
- data/lib/openc3/core_ext/stringio.rb +4 -9
- data/lib/openc3/core_ext/tempfile.rb +4 -9
- data/lib/openc3/core_ext/time.rb +3 -8
- data/lib/openc3/core_ext.rb +3 -8
- data/lib/openc3/interfaces/file_interface.rb +3 -8
- data/lib/openc3/interfaces/http_client_interface.rb +3 -8
- data/lib/openc3/interfaces/http_server_interface.rb +3 -8
- data/lib/openc3/interfaces/interface.rb +3 -8
- data/lib/openc3/interfaces/mqtt_interface.rb +3 -8
- data/lib/openc3/interfaces/mqtt_stream_interface.rb +3 -8
- data/lib/openc3/interfaces/protocols/burst_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/cmd_response_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/cobs_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/crc_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/fixed_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/ignore_packet_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/length_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/preidentified_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/slip_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/template_protocol.rb +3 -8
- data/lib/openc3/interfaces/protocols/terminated_protocol.rb +3 -8
- data/lib/openc3/interfaces/serial_interface.rb +3 -8
- data/lib/openc3/interfaces/simulated_target_interface.rb +3 -8
- data/lib/openc3/interfaces/stream_interface.rb +3 -8
- data/lib/openc3/interfaces/tcpip_client_interface.rb +3 -8
- data/lib/openc3/interfaces/tcpip_server_interface.rb +3 -8
- data/lib/openc3/interfaces/udp_interface.rb +3 -8
- data/lib/openc3/interfaces.rb +3 -8
- data/lib/openc3/io/buffered_file.rb +4 -9
- data/lib/openc3/io/io_multiplexer.rb +4 -9
- data/lib/openc3/io/json_api.rb +3 -8
- data/lib/openc3/io/json_api_object.rb +4 -9
- data/lib/openc3/io/json_drb.rb +3 -8
- data/lib/openc3/io/json_drb_object.rb +4 -9
- data/lib/openc3/io/json_drb_rack.rb +4 -9
- data/lib/openc3/io/json_rpc.rb +3 -8
- data/lib/openc3/io/posix_serial_driver.rb +3 -8
- data/lib/openc3/io/serial_driver.rb +3 -8
- data/lib/openc3/io/stderr.rb +4 -9
- data/lib/openc3/io/stdout.rb +4 -9
- data/lib/openc3/io/udp_sockets.rb +3 -8
- data/lib/openc3/io/win32_serial_driver.rb +4 -9
- data/lib/openc3/logs/buffered_packet_log_reader.rb +3 -8
- data/lib/openc3/logs/buffered_packet_log_writer.rb +3 -8
- data/lib/openc3/logs/log_writer.rb +3 -8
- data/lib/openc3/logs/packet_log_constants.rb +3 -8
- data/lib/openc3/logs/packet_log_reader.rb +3 -8
- data/lib/openc3/logs/packet_log_writer.rb +3 -8
- data/lib/openc3/logs/stream_log.rb +3 -8
- data/lib/openc3/logs/stream_log_pair.rb +3 -8
- data/lib/openc3/logs/text_log_writer.rb +3 -8
- data/lib/openc3/logs.rb +3 -8
- data/lib/openc3/microservices/cleanup_microservice.rb +4 -14
- data/lib/openc3/microservices/decom_microservice.rb +3 -8
- data/lib/openc3/microservices/interface_decom_common.rb +3 -8
- data/lib/openc3/microservices/interface_microservice.rb +5 -9
- data/lib/openc3/microservices/log_microservice.rb +3 -8
- data/lib/openc3/microservices/microservice.rb +24 -12
- data/lib/openc3/microservices/multi_microservice.rb +2 -7
- data/lib/openc3/microservices/periodic_microservice.rb +3 -8
- data/lib/openc3/microservices/plugin_microservice.rb +3 -8
- data/lib/openc3/microservices/queue_microservice.rb +3 -8
- data/lib/openc3/microservices/router_microservice.rb +3 -8
- data/lib/openc3/microservices/scope_cleanup_microservice.rb +3 -8
- data/lib/openc3/microservices/text_log_microservice.rb +3 -8
- data/lib/openc3/migrations/20251213120000_reinstall_plugins.rb +45 -0
- data/lib/openc3/migrations/20260204000000_remove_decom_reducer.rb +60 -0
- data/lib/openc3/models/activity_model.rb +4 -8
- data/lib/openc3/models/auth_model.rb +57 -38
- data/lib/openc3/models/cvt_model.rb +203 -62
- data/lib/openc3/models/environment_model.rb +4 -9
- data/lib/openc3/models/gem_model.rb +3 -8
- data/lib/openc3/models/info_model.rb +4 -9
- data/lib/openc3/models/interface_model.rb +6 -10
- data/lib/openc3/models/interface_status_model.rb +4 -9
- data/lib/openc3/models/metadata_model.rb +3 -8
- data/lib/openc3/models/metric_model.rb +3 -8
- data/lib/openc3/models/microservice_model.rb +24 -10
- data/lib/openc3/models/microservice_status_model.rb +3 -8
- data/lib/openc3/models/migration_model.rb +3 -8
- data/lib/openc3/models/model.rb +3 -8
- data/lib/openc3/models/news_model.rb +3 -8
- data/lib/openc3/models/note_model.rb +3 -8
- data/lib/openc3/models/offline_access_model.rb +3 -8
- data/lib/openc3/models/ping_model.rb +4 -9
- data/lib/openc3/models/plugin_model.rb +14 -9
- data/lib/openc3/models/plugin_store_model.rb +21 -17
- data/lib/openc3/models/process_status_model.rb +4 -9
- data/lib/openc3/models/python_package_model.rb +3 -8
- data/lib/openc3/models/queue_model.rb +3 -8
- data/lib/openc3/models/reaction_model.rb +9 -10
- data/lib/openc3/models/router_model.rb +4 -9
- data/lib/openc3/models/router_status_model.rb +4 -9
- data/lib/openc3/models/scope_model.rb +4 -9
- data/lib/openc3/models/script_engine_model.rb +3 -8
- data/lib/openc3/models/script_status_model.rb +3 -8
- data/lib/openc3/models/secret_model.rb +3 -8
- data/lib/openc3/models/setting_model.rb +3 -8
- data/lib/openc3/models/sorted_model.rb +3 -8
- data/lib/openc3/models/stash_model.rb +3 -8
- data/lib/openc3/models/target_model.rb +99 -229
- data/lib/openc3/models/timeline_model.rb +3 -8
- data/lib/openc3/models/tool_config_model.rb +3 -8
- data/lib/openc3/models/tool_model.rb +10 -10
- data/lib/openc3/models/trigger_group_model.rb +3 -8
- data/lib/openc3/models/trigger_model.rb +3 -8
- data/lib/openc3/models/widget_model.rb +3 -8
- data/lib/openc3/operators/microservice_operator.rb +7 -8
- data/lib/openc3/operators/operator.rb +3 -8
- data/lib/openc3/packets/command_validator.rb +3 -8
- data/lib/openc3/packets/commands.rb +32 -14
- data/lib/openc3/packets/json_packet.rb +7 -19
- data/lib/openc3/packets/limits.rb +3 -8
- data/lib/openc3/packets/limits_response.rb +3 -8
- data/lib/openc3/packets/packet.rb +38 -32
- data/lib/openc3/packets/packet_config.rb +23 -13
- data/lib/openc3/packets/packet_item.rb +3 -8
- data/lib/openc3/packets/packet_item_limits.rb +3 -8
- data/lib/openc3/packets/parsers/format_string_parser.rb +3 -8
- data/lib/openc3/packets/parsers/limits_parser.rb +3 -8
- data/lib/openc3/packets/parsers/limits_response_parser.rb +3 -8
- data/lib/openc3/packets/parsers/packet_item_parser.rb +7 -8
- data/lib/openc3/packets/parsers/packet_parser.rb +3 -8
- data/lib/openc3/packets/parsers/processor_parser.rb +3 -8
- data/lib/openc3/packets/parsers/state_parser.rb +3 -8
- data/lib/openc3/packets/parsers/xtce_converter.rb +12 -9
- data/lib/openc3/packets/parsers/xtce_parser.rb +3 -8
- data/lib/openc3/packets/structure.rb +14 -11
- data/lib/openc3/packets/structure_item.rb +4 -9
- data/lib/openc3/packets/telemetry.rb +7 -11
- data/lib/openc3/processors/processor.rb +5 -10
- data/lib/openc3/processors/statistics_processor.rb +4 -9
- data/lib/openc3/processors/watermark_processor.rb +4 -9
- data/lib/openc3/processors.rb +4 -9
- data/lib/openc3/script/api_shared.rb +8 -37
- data/lib/openc3/script/autonomic.rb +3 -8
- data/lib/openc3/script/calendar.rb +3 -8
- data/lib/openc3/script/commands.rb +3 -8
- data/lib/openc3/script/critical_cmd.rb +3 -8
- data/lib/openc3/script/exceptions.rb +4 -9
- data/lib/openc3/script/extract.rb +3 -8
- data/lib/openc3/script/limits.rb +3 -8
- data/lib/openc3/script/metadata.rb +3 -8
- data/lib/openc3/script/packages.rb +3 -8
- data/lib/openc3/script/plugins.rb +3 -8
- data/lib/openc3/script/queue.rb +3 -8
- data/lib/openc3/script/screen.rb +7 -8
- data/lib/openc3/script/script.rb +3 -8
- data/lib/openc3/script/script_runner.rb +3 -8
- data/lib/openc3/script/storage.rb +6 -10
- data/lib/openc3/script/suite.rb +3 -8
- data/lib/openc3/script/suite_results.rb +3 -8
- data/lib/openc3/script/suite_runner.rb +3 -8
- data/lib/openc3/script/tables.rb +3 -8
- data/lib/openc3/script/telemetry.rb +3 -8
- data/lib/openc3/script/web_socket_api.rb +8 -13
- data/lib/openc3/script.rb +4 -9
- data/lib/openc3/script_engines/script_engine.rb +3 -8
- data/lib/openc3/streams/mqtt_stream.rb +3 -8
- data/lib/openc3/streams/serial_stream.rb +3 -8
- data/lib/openc3/streams/stream.rb +3 -8
- data/lib/openc3/streams/tcpip_client_stream.rb +3 -8
- data/lib/openc3/streams/tcpip_socket_stream.rb +3 -8
- data/lib/openc3/streams/web_socket_client_stream.rb +3 -8
- data/lib/openc3/system/system.rb +3 -8
- data/lib/openc3/system/target.rb +3 -8
- data/lib/openc3/system.rb +3 -8
- data/lib/openc3/tools/cmd_tlm_server/api.rb +4 -9
- data/lib/openc3/tools/cmd_tlm_server/interface_thread.rb +3 -8
- data/lib/openc3/tools/table_manager/table.rb +3 -8
- data/lib/openc3/tools/table_manager/table_config.rb +3 -8
- data/lib/openc3/tools/table_manager/table_item.rb +4 -9
- data/lib/openc3/tools/table_manager/table_item_parser.rb +3 -8
- data/lib/openc3/tools/table_manager/table_manager_core.rb +3 -8
- data/lib/openc3/tools/table_manager/table_parser.rb +3 -8
- data/lib/openc3/tools/test_runner/test.rb +4 -9
- data/lib/openc3/top_level.rb +3 -8
- data/lib/openc3/topics/autonomic_topic.rb +4 -9
- data/lib/openc3/topics/calendar_topic.rb +4 -9
- data/lib/openc3/topics/command_decom_topic.rb +14 -17
- data/lib/openc3/topics/command_topic.rb +14 -10
- data/lib/openc3/topics/config_topic.rb +3 -8
- data/lib/openc3/topics/decom_interface_topic.rb +3 -8
- data/lib/openc3/topics/interface_topic.rb +3 -8
- data/lib/openc3/topics/limits_event_topic.rb +3 -8
- data/lib/openc3/topics/notebook_topic.rb +32 -0
- data/lib/openc3/topics/queue_topic.rb +3 -8
- data/lib/openc3/topics/router_topic.rb +3 -8
- data/lib/openc3/topics/system_events_topic.rb +3 -8
- data/lib/openc3/topics/telemetry_decom_topic.rb +12 -12
- data/lib/openc3/topics/telemetry_topic.rb +3 -8
- data/lib/openc3/topics/timeline_topic.rb +4 -9
- data/lib/openc3/topics/topic.rb +3 -8
- data/lib/openc3/utilities/authentication.rb +29 -10
- data/lib/openc3/utilities/authorization.rb +4 -9
- data/lib/openc3/utilities/aws_bucket.rb +126 -16
- data/lib/openc3/utilities/bucket.rb +9 -9
- data/lib/openc3/utilities/bucket_file_cache.rb +3 -13
- data/lib/openc3/utilities/bucket_require.rb +3 -8
- data/lib/openc3/utilities/bucket_utilities.rb +3 -10
- data/lib/openc3/utilities/cli_generator.rb +11 -16
- data/lib/openc3/utilities/cmd_log.rb +3 -8
- data/lib/openc3/utilities/crc.rb +3 -8
- data/lib/openc3/utilities/csv.rb +4 -9
- data/lib/openc3/utilities/local_bucket.rb +5 -10
- data/lib/openc3/utilities/local_mode.rb +14 -18
- data/lib/openc3/utilities/logger.rb +3 -8
- data/lib/openc3/utilities/message_log.rb +3 -8
- data/lib/openc3/utilities/metric.rb +3 -8
- data/lib/openc3/utilities/migration.rb +3 -8
- data/lib/openc3/utilities/open_telemetry.rb +3 -8
- data/lib/openc3/utilities/process_manager.rb +3 -8
- data/lib/openc3/utilities/python_proxy.rb +3 -8
- data/lib/openc3/utilities/quaternion.rb +3 -8
- data/lib/openc3/utilities/questdb_client.rb +210 -0
- data/lib/openc3/utilities/redis_secrets.rb +3 -8
- data/lib/openc3/utilities/ruby_lex_utils.rb +3 -8
- data/lib/openc3/utilities/running_script.rb +13 -11
- data/lib/openc3/utilities/s3_autoload.rb +9 -2
- data/lib/openc3/utilities/secrets.rb +8 -9
- data/lib/openc3/utilities/simulated_target.rb +4 -9
- data/lib/openc3/utilities/sleeper.rb +3 -8
- data/lib/openc3/utilities/store.rb +4 -9
- data/lib/openc3/utilities/store_autoload.rb +7 -14
- data/lib/openc3/utilities/store_queued.rb +6 -9
- data/lib/openc3/utilities/target_file.rb +3 -8
- data/lib/openc3/utilities/thread_manager.rb +3 -8
- data/lib/openc3/utilities/throttle.rb +3 -8
- data/lib/openc3/utilities/zip.rb +4 -9
- data/lib/openc3/utilities.rb +4 -9
- data/lib/openc3/version.rb +8 -8
- data/lib/openc3/win32/excel.rb +4 -9
- data/lib/openc3/win32/win32.rb +4 -9
- data/lib/openc3/win32/win32_main.rb +3 -8
- data/lib/openc3.rb +3 -12
- data/tasks/gemfile_stats.rake +4 -9
- data/tasks/spec.rake +4 -9
- data/templates/plugin/README.md +2 -2
- data/templates/plugin/plugin.gemspec +1 -1
- data/templates/tool_angular/package.json +1 -1
- data/templates/tool_vue/package.json +3 -3
- data/templates/tool_vue/vite.config.js +2 -1
- data/templates/widget/package.json +3 -3
- data/templates/widget/vite.config.js +1 -1
- metadata +49 -26
- data/LICENSE.txt +0 -729
- data/bin/rubysloc +0 -142
- data/ext/openc3/ext/reducer_microservice/extconf.rb +0 -13
- data/ext/openc3/ext/reducer_microservice/reducer_microservice.c +0 -165
- data/lib/openc3/microservices/reducer_microservice.rb +0 -640
- data/lib/openc3/models/reducer_model.rb +0 -72
- data/lib/openc3/topics/telemetry_reduced_topics.rb +0 -80
- /data/templates/plugin/{LICENSE.txt → LICENSE.md} +0 -0
- /data/templates/widget/{LICENSE.txt → LICENSE.md} +0 -0
data/data/config/target.yaml
CHANGED
|
@@ -9,8 +9,7 @@ TARGET:
|
|
|
9
9
|
values: .*
|
|
10
10
|
- name: Name
|
|
11
11
|
required: true
|
|
12
|
-
description:
|
|
13
|
-
The target name. While this typically matches the Folder Name
|
|
12
|
+
description: The target name. While this typically matches the Folder Name
|
|
14
13
|
it can be different to create multiple targets based on the same target definition.
|
|
15
14
|
As in the Example Usage, the target folder is KEYSIGHT_N6700 but the target name is PWR_SUPPLY1.
|
|
16
15
|
To create multiple targets from the same folder, just define multiple TARGET entries
|
|
@@ -48,27 +47,6 @@ TARGET:
|
|
|
48
47
|
required: true
|
|
49
48
|
description: Number of seconds to keep raw command logs (default = nil = Forever)
|
|
50
49
|
values: \d+
|
|
51
|
-
CMD_DECOM_LOG_CYCLE_TIME:
|
|
52
|
-
summary: Command decommutation logs can be cycled on a time interval.
|
|
53
|
-
parameters:
|
|
54
|
-
- name: Time
|
|
55
|
-
required: true
|
|
56
|
-
description: Maximum time between files in seconds (default = 600)
|
|
57
|
-
values: \d+
|
|
58
|
-
CMD_DECOM_LOG_CYCLE_SIZE:
|
|
59
|
-
summary: Command decommutation logs can be cycled after a certain log file size is reached.
|
|
60
|
-
parameters:
|
|
61
|
-
- name: Size
|
|
62
|
-
required: true
|
|
63
|
-
description: Maximum file size in bytes (default = 50_000_000)
|
|
64
|
-
values: \d+
|
|
65
|
-
CMD_DECOM_LOG_RETAIN_TIME:
|
|
66
|
-
summary: How long to keep decom command logs in seconds.
|
|
67
|
-
parameters:
|
|
68
|
-
- name: Time
|
|
69
|
-
required: true
|
|
70
|
-
description: Number of seconds to keep decom command logs (default = nil = Forever)
|
|
71
|
-
values: \d+
|
|
72
50
|
TLM_BUFFER_DEPTH:
|
|
73
51
|
summary: Number of telemetry packets to buffer to ensure logged in order
|
|
74
52
|
since: 5.2.0
|
|
@@ -98,48 +76,34 @@ TARGET:
|
|
|
98
76
|
required: true
|
|
99
77
|
description: Number of seconds to keep raw telemetry logs (default = nil = Forever)
|
|
100
78
|
values: \d+
|
|
101
|
-
|
|
102
|
-
summary:
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
values: \d+
|
|
108
|
-
TLM_DECOM_LOG_CYCLE_SIZE:
|
|
109
|
-
summary: Telemetry decommutation logs can be cycled after a certain log file size is reached.
|
|
110
|
-
parameters:
|
|
111
|
-
- name: Size
|
|
112
|
-
required: true
|
|
113
|
-
description: Maximum file size in bytes (default = 50_000_000)
|
|
114
|
-
values: \d+
|
|
115
|
-
TLM_DECOM_LOG_RETAIN_TIME:
|
|
116
|
-
summary: How long to keep decom telemetry logs in seconds.
|
|
117
|
-
parameters:
|
|
118
|
-
- name: Time
|
|
119
|
-
required: true
|
|
120
|
-
description: Number of seconds to keep decom telemetry logs (default = nil = Forever)
|
|
121
|
-
values: \d+
|
|
122
|
-
REDUCED_MINUTE_LOG_RETAIN_TIME:
|
|
123
|
-
summary: How long to keep reduced minute telemetry logs in seconds.
|
|
124
|
-
parameters:
|
|
125
|
-
- name: Time
|
|
126
|
-
required: true
|
|
127
|
-
description: Number of seconds to keep reduced minute telemetry logs (default = nil = Forever)
|
|
128
|
-
values: \d+
|
|
129
|
-
REDUCED_HOUR_LOG_RETAIN_TIME:
|
|
130
|
-
summary: How long to keep reduced hour telemetry logs in seconds.
|
|
79
|
+
CMD_DECOM_RETAIN_TIME:
|
|
80
|
+
summary: How long to keep command decommutation records in the TSDB.
|
|
81
|
+
description:
|
|
82
|
+
Sets the retention time directly on QuestDB tables for automatic data expiration.
|
|
83
|
+
QuestDB will automatically remove data older than this retention time.
|
|
84
|
+
since: 7.0.0
|
|
131
85
|
parameters:
|
|
132
86
|
- name: Time
|
|
133
87
|
required: true
|
|
134
|
-
description:
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
88
|
+
description:
|
|
89
|
+
Retention time value with unit (e.g., "24h" for 24 hours, "30d" for 30 days, "1y" for 1 year).
|
|
90
|
+
Supported units are h (hours), d (days), w (weeks), M (months), y (years).
|
|
91
|
+
Default = nil = Forever
|
|
92
|
+
values: \d+[hdwMy]
|
|
93
|
+
TLM_DECOM_RETAIN_TIME:
|
|
94
|
+
summary: How long to keep telemetry decommutation records in the TSDB.
|
|
95
|
+
description:
|
|
96
|
+
Sets the retention time directly on QuestDB tables for automatic data expiration.
|
|
97
|
+
QuestDB will automatically remove data older than this retention time.
|
|
98
|
+
since: 7.0.0
|
|
138
99
|
parameters:
|
|
139
100
|
- name: Time
|
|
140
101
|
required: true
|
|
141
|
-
description:
|
|
142
|
-
|
|
102
|
+
description:
|
|
103
|
+
Retention time value with unit (e.g., "24h" for 24 hours, "30d" for 30 days, "1y" for 1 year).
|
|
104
|
+
Supported units are h (hours), d (days), w (weeks), M (months), y (years).
|
|
105
|
+
Default = nil = Forever
|
|
106
|
+
values: \d+[hdwMy]
|
|
143
107
|
LOG_RETAIN_TIME:
|
|
144
108
|
summary: How long to keep all regular telemetry logs in seconds.
|
|
145
109
|
parameters:
|
|
@@ -147,28 +111,12 @@ TARGET:
|
|
|
147
111
|
required: true
|
|
148
112
|
description: Number of seconds to keep all regular telemetry logs (default = nil = Forever)
|
|
149
113
|
values: \d+
|
|
150
|
-
REDUCED_LOG_RETAIN_TIME:
|
|
151
|
-
summary: How long to keep all reduced telemetry logs in seconds.
|
|
152
|
-
parameters:
|
|
153
|
-
- name: Time
|
|
154
|
-
required: true
|
|
155
|
-
description: Number of seconds to keep all reduced telemetry logs (default = nil = Forever)
|
|
156
|
-
values: \d+
|
|
157
114
|
CLEANUP_POLL_TIME:
|
|
158
115
|
summary: Period at which to run the cleanup process.
|
|
159
116
|
parameters:
|
|
160
117
|
- name: Time
|
|
161
118
|
required: true
|
|
162
|
-
description: Number of seconds between runs of the cleanup process (default =
|
|
163
|
-
values: \d+
|
|
164
|
-
REDUCER_DISABLE:
|
|
165
|
-
summary: Disables the data reduction microservice for the target
|
|
166
|
-
REDUCER_MAX_CPU_UTILIZATION:
|
|
167
|
-
summary: Maximum amount of CPU utilization to apply to data reduction
|
|
168
|
-
parameters:
|
|
169
|
-
- name: Percentage
|
|
170
|
-
required: true
|
|
171
|
-
description: 0 to 100 percent (default = 30)
|
|
119
|
+
description: Number of seconds between runs of the cleanup process (default = 3600 = 1 hour)
|
|
172
120
|
values: \d+
|
|
173
121
|
TARGET_MICROSERVICE:
|
|
174
122
|
summary: Breaks a target microservice out into its own process.
|
|
@@ -180,8 +128,7 @@ TARGET:
|
|
|
180
128
|
parameters:
|
|
181
129
|
- name: Type
|
|
182
130
|
required: true
|
|
183
|
-
description: The target microservice type. Must be one of
|
|
184
|
-
DECOM, COMMANDLOG, DECOMCMDLOG, PACKETLOG, DECOMLOG, REDUCER, or CLEANUP
|
|
131
|
+
description: The target microservice type. Must be one of DECOM, COMMANDLOG, PACKETLOG, or CLEANUP
|
|
185
132
|
values: .*
|
|
186
133
|
PACKET:
|
|
187
134
|
summary: Packet Name to allocate to the current TARGET_MICROSERVICE.
|
|
@@ -190,7 +137,7 @@ TARGET:
|
|
|
190
137
|
- name: Packet Name
|
|
191
138
|
required: true
|
|
192
139
|
description: The packet name. Does not apply to
|
|
193
|
-
|
|
140
|
+
CLEANUP target microservice type.
|
|
194
141
|
values: .*
|
|
195
142
|
DISABLE_ERB:
|
|
196
143
|
summary: Disable ERB processing
|
|
@@ -35,6 +35,7 @@ ID_ITEM:
|
|
|
35
35
|
summary: Defines a telemetry item in the current telemetry packet.
|
|
36
36
|
Note, packets defined without one or more ID_ITEMs are "catch-all" packets which
|
|
37
37
|
will match all incoming data. Normally this is the job of the UNKNOWN packet.
|
|
38
|
+
A warning will be generated for packets without ID_ITEMs unless the CATCHALL keyword is used.
|
|
38
39
|
example: ID_ITEM PKTID 112 16 UINT 1 "Packet ID which must be 1"
|
|
39
40
|
parameters:
|
|
40
41
|
- name: Name
|
|
@@ -258,6 +259,15 @@ TEMPLATE:
|
|
|
258
259
|
description: The template string which should be enclosed in quotes
|
|
259
260
|
values: "['\"].*['\"]"
|
|
260
261
|
since: 5.0.10
|
|
262
|
+
TEMPLATE_BASE64:
|
|
263
|
+
summary: Defines a template binary as base64 used to to pull telemetry values from a string buffer
|
|
264
|
+
description: Base64 encoded binary data
|
|
265
|
+
parameters:
|
|
266
|
+
- name: Template
|
|
267
|
+
required: true
|
|
268
|
+
description: The template string as base64 data
|
|
269
|
+
values: .+
|
|
270
|
+
since: 7.0.0
|
|
261
271
|
TEMPLATE_FILE:
|
|
262
272
|
summary: Defines a template file used to pull telemetry values from a string buffer
|
|
263
273
|
parameters:
|
|
@@ -271,6 +281,11 @@ IGNORE_OVERLAP:
|
|
|
271
281
|
description: Packet items which overlap normally generate a warning unless each individual item has the OVERLAP keyword.
|
|
272
282
|
This ignores overlaps across the entire packet.
|
|
273
283
|
since: 5.16.0
|
|
284
|
+
CATCHALL:
|
|
285
|
+
summary: Marks this packet as an intentional catch-all packet
|
|
286
|
+
description: Suppresses the warning that is normally generated for packets defined without ID_ITEMs.
|
|
287
|
+
Use this when a packet is intentionally designed to match all incoming data that doesn't match other packets.
|
|
288
|
+
since: 7.0.0
|
|
274
289
|
VIRTUAL:
|
|
275
290
|
summary: Marks this packet as virtual and not participating in identification
|
|
276
291
|
description: Used for packet definitions that can be used as structures for items with a given packet.
|
data/data/config/widgets.yaml
CHANGED
|
@@ -274,10 +274,10 @@ Telemetry Widgets:
|
|
|
274
274
|
- name: Value type
|
|
275
275
|
required: false
|
|
276
276
|
description: The type of the value to display. Default is CONVERTED.
|
|
277
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
277
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
278
278
|
example: |
|
|
279
279
|
ARRAY INST HEALTH_STATUS ARY 250 80 "0x%x" 6 FORMATTED
|
|
280
|
-
ARRAY INST HEALTH_STATUS ARY2 200 100 nil 4
|
|
280
|
+
ARRAY INST HEALTH_STATUS ARY2 200 100 nil 4 FORMATTED
|
|
281
281
|
ARRAYPLOT:
|
|
282
282
|
summary: Plot an array of values.
|
|
283
283
|
description:
|
|
@@ -356,7 +356,7 @@ Telemetry Widgets:
|
|
|
356
356
|
- name: Value type
|
|
357
357
|
required: false
|
|
358
358
|
description: The type of the value to display. Default is CONVERTED.
|
|
359
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
359
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
360
360
|
example: |
|
|
361
361
|
BLOCK INST IMAGE IMAGE 620 200 "%02X" 4 4 "0x%08X:"
|
|
362
362
|
# FORMATFONTVALUE:
|
|
@@ -386,7 +386,7 @@ Telemetry Widgets:
|
|
|
386
386
|
# - name: Value type
|
|
387
387
|
# required: false
|
|
388
388
|
# description: The type of the value to display. Default is CONVERTED.
|
|
389
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
389
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
390
390
|
# - name: Number of characters
|
|
391
391
|
# required: false
|
|
392
392
|
# description: The number of characters wide to make the value box (default = 12)
|
|
@@ -429,7 +429,7 @@ Telemetry Widgets:
|
|
|
429
429
|
- name: Value type
|
|
430
430
|
required: false
|
|
431
431
|
description: The type of the value to display. Default is CONVERTED.
|
|
432
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
432
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
433
433
|
- name: Number of characters
|
|
434
434
|
required: false
|
|
435
435
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -456,7 +456,7 @@ Telemetry Widgets:
|
|
|
456
456
|
- name: Value type
|
|
457
457
|
required: false
|
|
458
458
|
description: The type of the value to display. Default is CONVERTED.
|
|
459
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
459
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
460
460
|
- name: Width
|
|
461
461
|
required: false
|
|
462
462
|
description: Width of the LED circle (default = 15)
|
|
@@ -516,7 +516,7 @@ Telemetry Widgets:
|
|
|
516
516
|
- name: Value type
|
|
517
517
|
required: false
|
|
518
518
|
description: The type of the value to display. Default is CONVERTED.
|
|
519
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
519
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
520
520
|
example: |
|
|
521
521
|
LABELPROGRESSBAR INST ADCS POSPROGRESS 2 200 RAW
|
|
522
522
|
LABELPROGRESSBAR INST ADCS POSPROGRESS
|
|
@@ -538,7 +538,7 @@ Telemetry Widgets:
|
|
|
538
538
|
- name: Value type
|
|
539
539
|
required: false
|
|
540
540
|
description: The type of the value to display. Default is CONVERTED.
|
|
541
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
541
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
542
542
|
- name: Number of characters
|
|
543
543
|
required: false
|
|
544
544
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -570,7 +570,7 @@ Telemetry Widgets:
|
|
|
570
570
|
- name: Value type
|
|
571
571
|
required: false
|
|
572
572
|
description: The type of the value to display. Default is CONVERTED.
|
|
573
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
573
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
574
574
|
- name: Number of characters
|
|
575
575
|
required: false
|
|
576
576
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -601,7 +601,7 @@ Telemetry Widgets:
|
|
|
601
601
|
# - name: Value type
|
|
602
602
|
# required: false
|
|
603
603
|
# description: The type of the value to display. Default is CONVERTED.
|
|
604
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
604
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
605
605
|
# - name: Number of characters
|
|
606
606
|
# required: false
|
|
607
607
|
# description: The number of characters wide to make the value box (default = 12)
|
|
@@ -624,7 +624,7 @@ Telemetry Widgets:
|
|
|
624
624
|
- name: Value type
|
|
625
625
|
required: false
|
|
626
626
|
description: The type of the value to display. Default is CONVERTED.
|
|
627
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
627
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
628
628
|
- name: Number of characters
|
|
629
629
|
required: false
|
|
630
630
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -650,7 +650,7 @@ Telemetry Widgets:
|
|
|
650
650
|
- name: Value type
|
|
651
651
|
required: false
|
|
652
652
|
description: The type of the value to display. Default is CONVERTED.
|
|
653
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
653
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
654
654
|
- name: Number of characters
|
|
655
655
|
required: false
|
|
656
656
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -688,7 +688,7 @@ Telemetry Widgets:
|
|
|
688
688
|
- name: Value type
|
|
689
689
|
required: false
|
|
690
690
|
description: The type of the value to display. Default is CONVERTED.
|
|
691
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
691
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
692
692
|
- name: Number of characters
|
|
693
693
|
required: false
|
|
694
694
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -733,7 +733,7 @@ Telemetry Widgets:
|
|
|
733
733
|
# - name: Value type
|
|
734
734
|
# required: false
|
|
735
735
|
# description: The type of the value to display. Default is CONVERTED.
|
|
736
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
736
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
737
737
|
# - name: Number of characters
|
|
738
738
|
# required: false
|
|
739
739
|
# description: The number of characters wide to make the value box (default = 12)
|
|
@@ -773,7 +773,7 @@ Telemetry Widgets:
|
|
|
773
773
|
- name: Value type
|
|
774
774
|
required: false
|
|
775
775
|
description: The type of the value to display. Default is CONVERTED.
|
|
776
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
776
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
777
777
|
- name: Width
|
|
778
778
|
required: false
|
|
779
779
|
description: Width of the LED circle (default = 20)
|
|
@@ -817,7 +817,7 @@ Telemetry Widgets:
|
|
|
817
817
|
- name: Value type
|
|
818
818
|
required: false
|
|
819
819
|
description: The type of the value to display. Default is CONVERTED.
|
|
820
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
820
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
821
821
|
- name: Width
|
|
822
822
|
required: false
|
|
823
823
|
description: Width of the range bar (default = 160)
|
|
@@ -847,7 +847,7 @@ Telemetry Widgets:
|
|
|
847
847
|
- name: Value type
|
|
848
848
|
required: false
|
|
849
849
|
description: The type of the value to display. Default is CONVERTED.
|
|
850
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
850
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
851
851
|
- name: Width
|
|
852
852
|
required: false
|
|
853
853
|
description: Width of the range bar (default = 160)
|
|
@@ -878,7 +878,7 @@ Telemetry Widgets:
|
|
|
878
878
|
- name: Value type
|
|
879
879
|
required: false
|
|
880
880
|
description: The type of the value to display. Default is CONVERTED.
|
|
881
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
881
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
882
882
|
- name: Radius
|
|
883
883
|
required: false
|
|
884
884
|
description: Radius of the circle (default is 10)
|
|
@@ -912,7 +912,7 @@ Telemetry Widgets:
|
|
|
912
912
|
- name: Value type
|
|
913
913
|
required: false
|
|
914
914
|
description: The type of the value to display. Default is CONVERTED.
|
|
915
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
915
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
916
916
|
- name: Number of characters
|
|
917
917
|
required: false
|
|
918
918
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -938,7 +938,7 @@ Telemetry Widgets:
|
|
|
938
938
|
- name: Value type
|
|
939
939
|
required: false
|
|
940
940
|
description: The type of the value to display. Default is CONVERTED.
|
|
941
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
941
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
942
942
|
- name: Number of characters
|
|
943
943
|
required: false
|
|
944
944
|
description: The number of characters wide to make the value box (default = 8)
|
|
@@ -976,7 +976,7 @@ Telemetry Widgets:
|
|
|
976
976
|
- name: Value type
|
|
977
977
|
required: false
|
|
978
978
|
description: The type of the value to display. Default is CONVERTED.
|
|
979
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
979
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
980
980
|
- name: Number of characters
|
|
981
981
|
required: false
|
|
982
982
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -1021,7 +1021,7 @@ Telemetry Widgets:
|
|
|
1021
1021
|
# - name: Value type
|
|
1022
1022
|
# required: false
|
|
1023
1023
|
# description: The type of the value to display. Default is CONVERTED.
|
|
1024
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
1024
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1025
1025
|
# - name: Number of characters
|
|
1026
1026
|
# required: false
|
|
1027
1027
|
# description: The number of characters wide to make the value box (default = 12)
|
|
@@ -1121,7 +1121,7 @@ Telemetry Widgets:
|
|
|
1121
1121
|
- name: Value type
|
|
1122
1122
|
required: false
|
|
1123
1123
|
description: The type of the value to display. Default is CONVERTED.
|
|
1124
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1124
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1125
1125
|
example: |
|
|
1126
1126
|
PROGRESSBAR INST ADCS POSPROGRESS 0.5 200
|
|
1127
1127
|
PROGRESSBAR INST ADCS POSPROGRESS
|
|
@@ -1155,7 +1155,7 @@ Telemetry Widgets:
|
|
|
1155
1155
|
- name: Value type
|
|
1156
1156
|
required: false
|
|
1157
1157
|
description: The type of the value to display. Default is CONVERTED.
|
|
1158
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1158
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1159
1159
|
- name: Width
|
|
1160
1160
|
required: false
|
|
1161
1161
|
description: Width of the range bar (default = 100)
|
|
@@ -1196,7 +1196,7 @@ Telemetry Widgets:
|
|
|
1196
1196
|
# - name: Value type
|
|
1197
1197
|
# required: false
|
|
1198
1198
|
# description: The type of the value to display. Default is CONVERTED.
|
|
1199
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
1199
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1200
1200
|
# - name: Width
|
|
1201
1201
|
# required: false
|
|
1202
1202
|
# description: Width of the range bar (default = 30)
|
|
@@ -1313,7 +1313,7 @@ Telemetry Widgets:
|
|
|
1313
1313
|
# - name: Value type
|
|
1314
1314
|
# required: false
|
|
1315
1315
|
# description: The type of the value to display. Default is CONVERTED.
|
|
1316
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
1316
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1317
1317
|
# - name: Trend Seconds
|
|
1318
1318
|
# required: false
|
|
1319
1319
|
# description: The number of seconds in the past to display the trend value (default = 60)
|
|
@@ -1349,7 +1349,7 @@ Telemetry Widgets:
|
|
|
1349
1349
|
# - name: Value type
|
|
1350
1350
|
# required: false
|
|
1351
1351
|
# description: The type of the value to display. Default is CONVERTED.
|
|
1352
|
-
# values: <%= %w(RAW CONVERTED FORMATTED
|
|
1352
|
+
# values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1353
1353
|
# - name: Trend Seconds
|
|
1354
1354
|
# required: false
|
|
1355
1355
|
# description: The number of seconds in the past to display the trend value (default = 60)
|
|
@@ -1391,7 +1391,7 @@ Telemetry Widgets:
|
|
|
1391
1391
|
- name: Value type
|
|
1392
1392
|
required: false
|
|
1393
1393
|
description: The type of the value to display. Default is CONVERTED.
|
|
1394
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1394
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1395
1395
|
- name: Number of characters
|
|
1396
1396
|
required: false
|
|
1397
1397
|
description: The number of characters wide to make the value box (default = 12)
|
|
@@ -1642,11 +1642,11 @@ Canvas Widgets:
|
|
|
1642
1642
|
- name: Value type
|
|
1643
1643
|
required: false
|
|
1644
1644
|
description: The type of the value to display. Default is CONVERTED.
|
|
1645
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1645
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1646
1646
|
example: |
|
|
1647
1647
|
CANVAS 200 100
|
|
1648
1648
|
CANVASLABELVALUE INST HEALTH_STATUS TEMP1 5 34 12 red
|
|
1649
|
-
CANVASLABELVALUE INST HEALTH_STATUS TEMP2 5 70 10 blue
|
|
1649
|
+
CANVASLABELVALUE INST HEALTH_STATUS TEMP2 5 70 10 blue FORMATTED
|
|
1650
1650
|
END
|
|
1651
1651
|
CANVASIMAGE:
|
|
1652
1652
|
summary: Displays an image on the canvas
|
|
@@ -1702,7 +1702,7 @@ Canvas Widgets:
|
|
|
1702
1702
|
- name: Value type
|
|
1703
1703
|
required: true
|
|
1704
1704
|
description: The type of the value to display
|
|
1705
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1705
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1706
1706
|
- name: Default image filename
|
|
1707
1707
|
required: true
|
|
1708
1708
|
description: The default image to display. The file must be in the targets/TARGET/public directory.
|
|
@@ -1835,7 +1835,7 @@ Canvas Widgets:
|
|
|
1835
1835
|
- name: Value type
|
|
1836
1836
|
required: false
|
|
1837
1837
|
description: The type of the value to display. Default is CONVERTED
|
|
1838
|
-
values: <%= %w(RAW CONVERTED FORMATTED
|
|
1838
|
+
values: <%= %w(RAW CONVERTED FORMATTED) %>
|
|
1839
1839
|
example: |
|
|
1840
1840
|
CANVAS 120 50
|
|
1841
1841
|
CANVASLABELVALUE INST HEALTH_STATUS GROUND1STATUS 0 12 12 black
|
|
@@ -2,23 +2,18 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
|
17
12
|
# Modified by OpenC3, Inc.
|
|
18
|
-
# All changes Copyright
|
|
13
|
+
# All changes Copyright 2026, OpenC3, Inc.
|
|
19
14
|
# All Rights Reserved
|
|
20
15
|
#
|
|
21
|
-
# This file may also be used under the terms of a commercial license
|
|
16
|
+
# This file may also be used under the terms of a commercial license
|
|
22
17
|
# if purchased from OpenC3, Inc.
|
|
23
18
|
*/
|
|
24
19
|
|
|
@@ -2,23 +2,18 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
|
17
12
|
# Modified by OpenC3, Inc.
|
|
18
|
-
# All changes Copyright
|
|
13
|
+
# All changes Copyright 2026, OpenC3, Inc.
|
|
19
14
|
# All Rights Reserved
|
|
20
15
|
#
|
|
21
|
-
# This file may also be used under the terms of a commercial license
|
|
16
|
+
# This file may also be used under the terms of a commercial license
|
|
22
17
|
# if purchased from OpenC3, Inc.
|
|
23
18
|
*/
|
|
24
19
|
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
/*
|
|
2
|
-
# Copyright
|
|
2
|
+
# Copyright 2026 OpenC3, Inc.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
#
|
|
15
10
|
# This file may also be used under the terms of a commercial license
|
|
16
11
|
# if purchased from OpenC3, Inc.
|
|
@@ -2,15 +2,10 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
data/ext/openc3/ext/crc/crc.c
CHANGED
|
@@ -2,20 +2,15 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
|
17
12
|
# Modified by OpenC3, Inc.
|
|
18
|
-
# All changes Copyright
|
|
13
|
+
# All changes Copyright 2026, OpenC3, Inc.
|
|
19
14
|
# All Rights Reserved
|
|
20
15
|
#
|
|
21
16
|
# This file may also be used under the terms of a commercial license
|
|
@@ -2,23 +2,18 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
|
17
12
|
# Modified by OpenC3, Inc.
|
|
18
|
-
# All changes Copyright
|
|
13
|
+
# All changes Copyright 2026, OpenC3, Inc.
|
|
19
14
|
# All Rights Reserved
|
|
20
15
|
#
|
|
21
|
-
# This file may also be used under the terms of a commercial license
|
|
16
|
+
# This file may also be used under the terms of a commercial license
|
|
22
17
|
# if purchased from OpenC3, Inc.
|
|
23
18
|
*/
|
|
24
19
|
|
|
@@ -2,20 +2,15 @@
|
|
|
2
2
|
# Copyright 2022 Ball Aerospace & Technologies Corp.
|
|
3
3
|
# All Rights Reserved.
|
|
4
4
|
#
|
|
5
|
-
# This program is free software; you can modify and/or redistribute it
|
|
6
|
-
# under the terms of the GNU Affero General Public License
|
|
7
|
-
# as published by the Free Software Foundation; version 3 with
|
|
8
|
-
# attribution addendums as found in the LICENSE.txt
|
|
9
|
-
#
|
|
10
5
|
# This program is distributed in the hope that it will be useful,
|
|
11
6
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
13
|
-
#
|
|
7
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
8
|
+
# See LICENSE.md for more details.
|
|
14
9
|
*/
|
|
15
10
|
|
|
16
11
|
/*
|
|
17
12
|
# Modified by OpenC3, Inc.
|
|
18
|
-
# All changes Copyright
|
|
13
|
+
# All changes Copyright 2026, OpenC3, Inc.
|
|
19
14
|
# All Rights Reserved
|
|
20
15
|
#
|
|
21
16
|
# This file may also be used under the terms of a commercial license
|
|
@@ -67,6 +62,7 @@ static ID id_ivar_restricted = 0;
|
|
|
67
62
|
static ID id_ivar_subpacket = 0;
|
|
68
63
|
static ID id_ivar_subpacketizer = 0;
|
|
69
64
|
static ID id_ivar_obfuscated_items = 0;
|
|
65
|
+
static ID id_ivar_catchall = 0;
|
|
70
66
|
|
|
71
67
|
/* Sets the target name this packet is associated with. Unidentified packets
|
|
72
68
|
* will have target name set to nil.
|
|
@@ -142,7 +138,7 @@ static VALUE received_time_equals(VALUE self, VALUE received_time)
|
|
|
142
138
|
{
|
|
143
139
|
rb_raise(rb_eArgError, "received_time must be a Time but is a %s", RSTRING_PTR(rb_funcall(rb_funcall(received_time, id_method_class, 0), id_method_to_s, 0)));
|
|
144
140
|
}
|
|
145
|
-
rb_ivar_set(self, id_ivar_received_time,
|
|
141
|
+
rb_ivar_set(self, id_ivar_received_time, received_time);
|
|
146
142
|
}
|
|
147
143
|
else
|
|
148
144
|
{
|
|
@@ -297,6 +293,7 @@ static VALUE packet_initialize(int argc, VALUE *argv, VALUE self)
|
|
|
297
293
|
rb_ivar_set(self, id_ivar_subpacket, Qfalse);
|
|
298
294
|
rb_ivar_set(self, id_ivar_subpacketizer, Qnil);
|
|
299
295
|
rb_ivar_set(self, id_ivar_obfuscated_items, Qnil);
|
|
296
|
+
rb_ivar_set(self, id_ivar_catchall, Qfalse);
|
|
300
297
|
return self;
|
|
301
298
|
}
|
|
302
299
|
|
|
@@ -344,6 +341,7 @@ void Init_packet(void)
|
|
|
344
341
|
id_ivar_subpacket = rb_intern("@subpacket");
|
|
345
342
|
id_ivar_subpacketizer = rb_intern("@subpacketizer");
|
|
346
343
|
id_ivar_obfuscated_items = rb_intern("@obfuscated_items");
|
|
344
|
+
id_ivar_catchall = rb_intern("@catchall");
|
|
347
345
|
|
|
348
346
|
cPacket = rb_define_class_under(mOpenC3, "Packet", cStructure);
|
|
349
347
|
rb_define_method(cPacket, "initialize", packet_initialize, -1);
|