wiliot-certificate 4.4.3__py3-none-any.whl → 4.5.0a1__py3-none-any.whl
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.
- {brg_certificate → certificate}/ag/wlt_cmd_if.html +10 -4
- {brg_certificate → certificate}/ag/wlt_types_ag.py +1878 -519
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2brg_ota.json +69 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb.json +109 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +45 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/calibration.json +96 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/custom.json +99 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/datapath.json +241 -13
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energy2400.json +120 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energySub1g.json +96 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/externalSensor.json +135 -6
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/interface.json +157 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/powerManagement.json +205 -0
- brg_certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json → certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +27 -11
- certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +175 -0
- certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json +65 -0
- certificate/cert_common.py +1459 -0
- certificate/cert_config.py +455 -0
- {brg_certificate → certificate}/cert_data_sim.py +131 -46
- {brg_certificate → certificate}/cert_defines.py +120 -128
- {brg_certificate → certificate}/cert_gw_sim.py +151 -49
- {brg_certificate → certificate}/cert_mqtt.py +164 -59
- {brg_certificate → certificate}/cert_prints.py +34 -33
- {brg_certificate → certificate}/cert_protobuf.py +15 -6
- {brg_certificate → certificate}/cert_results.py +205 -48
- certificate/cert_utils.py +622 -0
- certificate/certificate.py +198 -0
- certificate/certificate_cli.py +79 -0
- certificate/certificate_eth_test_list.txt +74 -0
- certificate/certificate_sanity_test_list.txt +65 -0
- certificate/certificate_test_list.txt +75 -0
- {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.json +2 -2
- {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.py +7 -6
- certificate/tests/calibration/output_power_test/output_power_test.json +22 -0
- certificate/tests/calibration/output_power_test/output_power_test.py +39 -0
- {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.json +1 -1
- {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.py +20 -15
- certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json +14 -0
- certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py +140 -0
- certificate/tests/cloud_connectivity/acl_test/acl_test.json +14 -0
- certificate/tests/cloud_connectivity/acl_test/acl_test.py +98 -0
- certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json +18 -0
- certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py +39 -0
- certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json +18 -0
- certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py +215 -0
- certificate/tests/cloud_connectivity/connection_test/connection_test.json +17 -0
- certificate/tests/cloud_connectivity/connection_test/connection_test.py +74 -0
- certificate/tests/cloud_connectivity/downlink_test/downlink_test.json +20 -0
- certificate/tests/cloud_connectivity/downlink_test/downlink_test.py +204 -0
- certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json +16 -0
- certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py +98 -0
- certificate/tests/cloud_connectivity/reboot_test/reboot_test.json +17 -0
- certificate/tests/cloud_connectivity/reboot_test/reboot_test.py +57 -0
- certificate/tests/cloud_connectivity/registration_test/registration_test.json +19 -0
- certificate/tests/cloud_connectivity/registration_test/registration_test.py +384 -0
- certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py +90 -0
- certificate/tests/cloud_connectivity/stress_test/stress_test.json +16 -0
- certificate/tests/cloud_connectivity/stress_test/stress_test.py +97 -0
- certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json +24 -0
- certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py +93 -0
- certificate/tests/cloud_connectivity/uplink_test/uplink_test.json +19 -0
- certificate/tests/cloud_connectivity/uplink_test/uplink_test.py +161 -0
- {brg_certificate → certificate}/tests/datapath/aging_test/aging_test.json +1 -1
- certificate/tests/datapath/aging_test/aging_test.py +138 -0
- certificate/tests/datapath/event_ble5_test/event_ble5_test.json +16 -0
- certificate/tests/datapath/event_ble5_test/event_ble5_test.py +95 -0
- certificate/tests/datapath/event_test/event_test.json +16 -0
- certificate/tests/datapath/event_test/event_test.py +85 -0
- {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.py +10 -8
- certificate/tests/datapath/output_power_test/output_power_test.json +22 -0
- {brg_certificate → certificate}/tests/datapath/output_power_test/output_power_test.py +17 -6
- {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +10 -8
- {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.py +9 -7
- {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.json +2 -2
- {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.py +18 -6
- certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json +19 -0
- certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py +61 -0
- {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +11 -10
- certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json +18 -0
- certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py +83 -0
- {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +10 -9
- {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.py +10 -9
- {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +1 -1
- {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +9 -8
- brg_certificate/tests/datapath/output_power_test/output_power_test.json → certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.json +5 -4
- certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py +77 -0
- {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.json +2 -2
- {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.py +7 -6
- {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +7 -7
- {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +112 -72
- {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +7 -7
- {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +112 -72
- {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.json +3 -3
- {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.py +12 -11
- {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.json +3 -3
- {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.py +12 -11
- {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.json +2 -1
- {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.py +14 -13
- certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json +14 -0
- certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py +24 -0
- certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json +14 -0
- certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py +43 -0
- certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json +14 -0
- certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py +42 -0
- certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json +14 -0
- certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py +44 -0
- certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json +15 -0
- certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py +42 -0
- certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json +14 -0
- certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py +49 -0
- certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json +14 -0
- certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py +102 -0
- certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json +14 -0
- certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +41 -0
- {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json +2 -2
- {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py +22 -11
- {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.json +1 -1
- {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.py +7 -6
- certificate/tests/energy2400/output_power_test/output_power_test.json +22 -0
- {brg_certificate → certificate}/tests/energy2400/output_power_test/output_power_test.py +17 -6
- {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.json +1 -1
- {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.py +7 -6
- certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +25 -0
- certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +378 -0
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.json → certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +3 -3
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.py → certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +97 -87
- certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +23 -0
- certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +350 -0
- {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +1 -1
- {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +7 -6
- {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.json +1 -1
- {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.py +7 -6
- {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +1 -1
- {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +10 -10
- {brg_certificate → certificate}/tests/sensors/ext_sensor_test/ext_sensor_test.json +4 -4
- certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +455 -0
- certificate/wlt_types.py +122 -0
- {gw_certificate → common}/api_if/202/status.json +6 -0
- {gw_certificate → common}/api_if/203/status.json +6 -0
- {gw_certificate → common}/api_if/204/status.json +6 -0
- common/api_if/206/data.json +85 -0
- common/api_if/206/status.json +69 -0
- common/api_if/api_validation.py +85 -0
- common/web/templates/generator.html +148 -0
- common/web/templates/index.html +20 -0
- common/web/templates/menu.html +54 -0
- common/web/templates/parser.html +53 -0
- {brg_certificate/ag → common/web/templates}/wlt_types.html +1216 -191
- common/web/web_utils.py +377 -0
- {brg_certificate → common}/wltPb_pb2.py +14 -12
- {gw_certificate/common → common}/wltPb_pb2.pyi +16 -2
- gui_certificate/gui_certificate_cli.py +14 -0
- gui_certificate/server.py +1062 -0
- gui_certificate/templates/cert_run.html +1207 -0
- wiliot_certificate-4.5.0a1.dist-info/METADATA +110 -0
- wiliot_certificate-4.5.0a1.dist-info/RECORD +182 -0
- {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/WHEEL +1 -1
- wiliot_certificate-4.5.0a1.dist-info/entry_points.txt +5 -0
- wiliot_certificate-4.5.0a1.dist-info/top_level.txt +3 -0
- brg_certificate/ag/energous_v0_defines.py +0 -925
- brg_certificate/ag/energous_v1_defines.py +0 -931
- brg_certificate/ag/energous_v2_defines.py +0 -925
- brg_certificate/ag/energous_v3_defines.py +0 -925
- brg_certificate/ag/energous_v4_defines.py +0 -925
- brg_certificate/ag/fanstel_lan_v0_defines.py +0 -925
- brg_certificate/ag/fanstel_lte_v0_defines.py +0 -925
- brg_certificate/ag/fanstel_wifi_v0_defines.py +0 -925
- brg_certificate/ag/minew_lte_v0_defines.py +0 -925
- brg_certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +0 -61
- brg_certificate/brg_certificate.py +0 -225
- brg_certificate/brg_certificate_cli.py +0 -63
- brg_certificate/cert_common.py +0 -923
- brg_certificate/cert_config.py +0 -402
- brg_certificate/cert_utils.py +0 -362
- brg_certificate/certificate_bcc_sanity_test_list.txt +0 -40
- brg_certificate/certificate_bcc_test_list.txt +0 -48
- brg_certificate/certificate_sanity_test_list.txt +0 -43
- brg_certificate/certificate_test_list.txt +0 -53
- brg_certificate/config/eclipse.json +0 -10
- brg_certificate/config/hivemq.json +0 -10
- brg_certificate/config/mosquitto.json +0 -10
- brg_certificate/config/mosquitto.md +0 -95
- brg_certificate/config/wiliot-dev.json +0 -10
- brg_certificate/restore_brg.py +0 -61
- brg_certificate/tests/calibration/output_power_test/output_power_test.json +0 -16
- brg_certificate/tests/calibration/output_power_test/output_power_test.py +0 -28
- brg_certificate/tests/datapath/aging_test/aging_test.py +0 -143
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json +0 -16
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py +0 -73
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json +0 -17
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py +0 -118
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.json +0 -14
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.py +0 -396
- brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json +0 -20
- brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py +0 -94
- brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json +0 -19
- brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py +0 -87
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.json +0 -17
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.py +0 -223
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.json +0 -17
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.py +0 -128
- brg_certificate/tests/energy2400/output_power_test/output_power_test.json +0 -16
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json +0 -20
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py +0 -321
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json +0 -20
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py +0 -141
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +0 -20
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +0 -276
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json +0 -20
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py +0 -390
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json +0 -16
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py +0 -28
- brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +0 -305
- brg_certificate/wltPb_pb2.pyi +0 -234
- brg_certificate/wlt_types.py +0 -113
- gw_certificate/ag/ut_defines.py +0 -364
- gw_certificate/ag/wlt_types.py +0 -85
- gw_certificate/ag/wlt_types_ag.py +0 -5310
- gw_certificate/ag/wlt_types_data.py +0 -64
- gw_certificate/api/extended_api.py +0 -23
- gw_certificate/api_if/200/data.json +0 -106
- gw_certificate/api_if/200/status.json +0 -47
- gw_certificate/api_if/201/data.json +0 -98
- gw_certificate/api_if/201/status.json +0 -53
- gw_certificate/api_if/205/logs.json +0 -12
- gw_certificate/api_if/api_validation.py +0 -38
- gw_certificate/api_if/gw_capabilities.py +0 -54
- gw_certificate/cert_results.py +0 -145
- gw_certificate/common/analysis_data_bricks.py +0 -60
- gw_certificate/common/debug.py +0 -42
- gw_certificate/common/serialization_formatter.py +0 -93
- gw_certificate/common/utils.py +0 -8
- gw_certificate/common/utils_defines.py +0 -15
- gw_certificate/common/wltPb_pb2.py +0 -84
- gw_certificate/gw_certificate.py +0 -154
- gw_certificate/gw_certificate_cli.py +0 -87
- gw_certificate/interface/4.4.93_app.zip +0 -0
- gw_certificate/interface/4.4.93_sd_bl_app.zip +0 -0
- gw_certificate/interface/ble_simulator.py +0 -61
- gw_certificate/interface/ble_sniffer.py +0 -189
- gw_certificate/interface/flash_fw.py +0 -90
- gw_certificate/interface/if_defines.py +0 -36
- gw_certificate/interface/mqtt.py +0 -563
- gw_certificate/interface/nrfutil-linux +0 -0
- gw_certificate/interface/nrfutil-mac +0 -0
- gw_certificate/interface/nrfutil.exe +0 -0
- gw_certificate/interface/pkt_generator.py +0 -594
- gw_certificate/interface/uart_if.py +0 -236
- gw_certificate/interface/uart_ports.py +0 -20
- gw_certificate/templates/results.html +0 -241
- gw_certificate/templates/stage.html +0 -22
- gw_certificate/templates/table.html +0 -6
- gw_certificate/templates/test.html +0 -38
- gw_certificate/tests/__init__.py +0 -10
- gw_certificate/tests/actions.py +0 -289
- gw_certificate/tests/bad_crc_to_PER_quantization.csv +0 -51
- gw_certificate/tests/connection.py +0 -188
- gw_certificate/tests/downlink.py +0 -172
- gw_certificate/tests/generic.py +0 -238
- gw_certificate/tests/registration.py +0 -340
- gw_certificate/tests/static/__init__.py +0 -0
- gw_certificate/tests/static/connection_defines.py +0 -9
- gw_certificate/tests/static/downlink_defines.py +0 -9
- gw_certificate/tests/static/generated_packet_table.py +0 -195
- gw_certificate/tests/static/packet_table.csv +0 -10067
- gw_certificate/tests/static/references.py +0 -5
- gw_certificate/tests/static/uplink_defines.py +0 -14
- gw_certificate/tests/throughput.py +0 -240
- gw_certificate/tests/uplink.py +0 -853
- wiliot_certificate-4.4.3.dist-info/METADATA +0 -211
- wiliot_certificate-4.4.3.dist-info/RECORD +0 -210
- wiliot_certificate-4.4.3.dist-info/entry_points.txt +0 -3
- wiliot_certificate-4.4.3.dist-info/top_level.txt +0 -3
- {brg_certificate → certificate}/__init__.py +0 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/side_info_sensor.json +0 -0
- {brg_certificate → certificate}/ag/wlt_types_ag_jsons/signal_indicator_data.json +0 -0
- {gw_certificate → common}/api_if/202/data.json +0 -0
- {gw_certificate/api_if/200 → common/api_if/202}/logs.json +0 -0
- {gw_certificate → common}/api_if/203/data.json +0 -0
- {gw_certificate/api_if/201 → common/api_if/203}/logs.json +0 -0
- {gw_certificate → common}/api_if/204/data.json +0 -0
- {gw_certificate/api_if/202 → common/api_if/204}/logs.json +0 -0
- {gw_certificate → common}/api_if/205/data.json +0 -0
- {gw_certificate/api_if/203 → common/api_if/205}/logs.json +0 -0
- {gw_certificate → common}/api_if/205/status.json +0 -0
- {gw_certificate/api_if/204 → common/api_if/206}/logs.json +0 -0
- {gw_certificate → common/api_if}/__init__.py +0 -0
- {gw_certificate/api_if → gui_certificate}/__init__.py +0 -0
- {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,5 +1,227 @@
|
|
|
1
1
|
{
|
|
2
2
|
"versions": [
|
|
3
|
+
{
|
|
4
|
+
"version": "13",
|
|
5
|
+
"packetFields": [
|
|
6
|
+
{
|
|
7
|
+
"name": "moduleType",
|
|
8
|
+
"byteOffset": 5,
|
|
9
|
+
"byteLength": 1,
|
|
10
|
+
"bitOffset": 4,
|
|
11
|
+
"bitLength": 4,
|
|
12
|
+
"outType": "uint"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "msgType",
|
|
16
|
+
"byteOffset": 5,
|
|
17
|
+
"byteLength": 1,
|
|
18
|
+
"bitOffset": 0,
|
|
19
|
+
"bitLength": 4,
|
|
20
|
+
"outType": "uint"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "apiVersion",
|
|
24
|
+
"byteOffset": 6,
|
|
25
|
+
"byteLength": 1,
|
|
26
|
+
"bitOffset": 0,
|
|
27
|
+
"bitLength": 8,
|
|
28
|
+
"outType": "uint"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "seqId",
|
|
32
|
+
"byteOffset": 7,
|
|
33
|
+
"byteLength": 1,
|
|
34
|
+
"bitOffset": 0,
|
|
35
|
+
"bitLength": 8,
|
|
36
|
+
"outType": "uint"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "brgMac",
|
|
40
|
+
"byteOffset": 8,
|
|
41
|
+
"byteLength": 6,
|
|
42
|
+
"bitOffset": 0,
|
|
43
|
+
"bitLength": 48,
|
|
44
|
+
"outType": "string"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "rssiThreshold",
|
|
48
|
+
"byteOffset": 14,
|
|
49
|
+
"byteLength": 1,
|
|
50
|
+
"bitOffset": 0,
|
|
51
|
+
"bitLength": 8,
|
|
52
|
+
"outType": "int",
|
|
53
|
+
"calculations": [
|
|
54
|
+
{
|
|
55
|
+
"operator": "*",
|
|
56
|
+
"operand": -1
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"operator": "+",
|
|
60
|
+
"operand": 0
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "pacerInterval",
|
|
66
|
+
"byteOffset": 15,
|
|
67
|
+
"byteLength": 2,
|
|
68
|
+
"bitOffset": 0,
|
|
69
|
+
"bitLength": 16,
|
|
70
|
+
"outType": "uint"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "pktFilter",
|
|
74
|
+
"byteOffset": 17,
|
|
75
|
+
"byteLength": 1,
|
|
76
|
+
"bitOffset": 3,
|
|
77
|
+
"bitLength": 5,
|
|
78
|
+
"outType": "string",
|
|
79
|
+
"map": {
|
|
80
|
+
"00":"Random first Arriving packet",
|
|
81
|
+
"10":"Disable forwarding",
|
|
82
|
+
"11":"Temperature packet",
|
|
83
|
+
"12":"Advanced packet",
|
|
84
|
+
"13":"Temperature and Advanced packets",
|
|
85
|
+
"14":"Debug packet",
|
|
86
|
+
"15":"Temperature and Debug packets",
|
|
87
|
+
"17":"Temperature Advanced and Debug packets"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "txRepetition",
|
|
92
|
+
"byteOffset": 17,
|
|
93
|
+
"byteLength": 1,
|
|
94
|
+
"bitOffset": 0,
|
|
95
|
+
"bitLength": 3,
|
|
96
|
+
"outType": "uint"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "outputPower",
|
|
100
|
+
"byteOffset": 18,
|
|
101
|
+
"byteLength": 1,
|
|
102
|
+
"bitOffset": 0,
|
|
103
|
+
"bitLength": 8,
|
|
104
|
+
"outType": "string",
|
|
105
|
+
"map": {
|
|
106
|
+
"00":"Maximum",
|
|
107
|
+
"02":"Maximum - 2 dBm",
|
|
108
|
+
"03":"Maximum - 3 dBm",
|
|
109
|
+
"04":"Maximum - 4 dBm",
|
|
110
|
+
"06":"Maximum - 6 dBm",
|
|
111
|
+
"07":"Maximum - 7 dBm",
|
|
112
|
+
"08":"Maximum - 8 dBm",
|
|
113
|
+
"0A":"Maximum - 10 dBm",
|
|
114
|
+
"0B":"Maximum - 11 dBm",
|
|
115
|
+
"0C":"Maximum - 12 dBm",
|
|
116
|
+
"0E":"Maximum - 14 dBm",
|
|
117
|
+
"0F":"Maximum - 15 dBm",
|
|
118
|
+
"10":"Maximum - 16 dBm",
|
|
119
|
+
"12":"Maximum - 18 dBm",
|
|
120
|
+
"13":"Maximum - 19 dBm",
|
|
121
|
+
"14":"Maximum - 20 dBm",
|
|
122
|
+
"16":"Maximum - 22 dBm",
|
|
123
|
+
"17":"Maximum - 23 dBm",
|
|
124
|
+
"1A":"Maximum - 26 dBm"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "pattern",
|
|
129
|
+
"byteOffset": 19,
|
|
130
|
+
"byteLength": 1,
|
|
131
|
+
"bitOffset": 4,
|
|
132
|
+
"bitLength": 4,
|
|
133
|
+
"outType": "string",
|
|
134
|
+
"map": {
|
|
135
|
+
"00":"Standard beaconing",
|
|
136
|
+
"01":"No Beacons on Channel 37",
|
|
137
|
+
"02":"EU pattern",
|
|
138
|
+
"03":"Extended Advertising",
|
|
139
|
+
"04":"Extended Advertising - No Pointers on Channel 37",
|
|
140
|
+
"05":"Extended Advertising - Channel 10"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "rxChannel",
|
|
145
|
+
"byteOffset": 19,
|
|
146
|
+
"byteLength": 1,
|
|
147
|
+
"bitOffset": 0,
|
|
148
|
+
"bitLength": 4,
|
|
149
|
+
"outType": "string",
|
|
150
|
+
"map": {
|
|
151
|
+
"00":"Channel 37 - primary advertisement channel",
|
|
152
|
+
"01":"Channel 38 - primary advertisement channel",
|
|
153
|
+
"02":"Channel 39 - primary advertisement channel",
|
|
154
|
+
"03":"Channel 10 - 2Mbps - E2/E3 Pixels",
|
|
155
|
+
"04":"Channel 10 - 2Mbps - E4 Pixels",
|
|
156
|
+
"05":"Channel Hopping - 37 and 10",
|
|
157
|
+
"06":"Channel 21 - 2Mbps - E4 Pixels"
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "dynPacingWindow",
|
|
162
|
+
"byteOffset": 20,
|
|
163
|
+
"byteLength": 1,
|
|
164
|
+
"bitOffset": 0,
|
|
165
|
+
"bitLength": 8,
|
|
166
|
+
"outType": "uint"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "dynPacingTimeUnit",
|
|
170
|
+
"byteOffset": 21,
|
|
171
|
+
"byteLength": 1,
|
|
172
|
+
"bitOffset": 4,
|
|
173
|
+
"bitLength": 2,
|
|
174
|
+
"outType": "string",
|
|
175
|
+
"map": {
|
|
176
|
+
"00":"Seconds",
|
|
177
|
+
"01":"Minutes",
|
|
178
|
+
"02":"Hours"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "dynPacingTrigger",
|
|
183
|
+
"byteOffset": 21,
|
|
184
|
+
"byteLength": 1,
|
|
185
|
+
"bitOffset": 0,
|
|
186
|
+
"bitLength": 4,
|
|
187
|
+
"outType": "string",
|
|
188
|
+
"map": {
|
|
189
|
+
"00":"No Trigger",
|
|
190
|
+
"01":"New Pixel",
|
|
191
|
+
"02":"Temperature Change",
|
|
192
|
+
"03":"New Pixel or Temperature Change",
|
|
193
|
+
"04":"Tx Rate Change",
|
|
194
|
+
"05":"New Pixel or Tx Rate Change",
|
|
195
|
+
"06":"Temperature Change or Tx Rate Change",
|
|
196
|
+
"07":"New Pixel, Temperature Change or Tx Rate Change",
|
|
197
|
+
"08":"RSSI Change",
|
|
198
|
+
"09":"New Pixel or RSSI Change",
|
|
199
|
+
"0A":"Temperature Change or RSSI Change",
|
|
200
|
+
"0B":"New Pixel, Temperature Change or RSSI Change",
|
|
201
|
+
"0C":"Tx Rate or RSSI Change",
|
|
202
|
+
"0D":"New Pixel, Tx Rate or RSSI Change",
|
|
203
|
+
"0E":"Temperature Change, Tx Rate Change or RSSI Change",
|
|
204
|
+
"0F":"All Triggers"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "rssiMovementThreshold",
|
|
209
|
+
"byteOffset": 22,
|
|
210
|
+
"byteLength": 1,
|
|
211
|
+
"bitOffset": 0,
|
|
212
|
+
"bitLength": 8,
|
|
213
|
+
"outType": "uint"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "dynPacingInterval",
|
|
217
|
+
"byteOffset": 23,
|
|
218
|
+
"byteLength": 2,
|
|
219
|
+
"bitOffset": 0,
|
|
220
|
+
"bitLength": 16,
|
|
221
|
+
"outType": "uint"
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
},
|
|
3
225
|
{
|
|
4
226
|
"version": "12",
|
|
5
227
|
"packetFields": [
|
|
@@ -113,7 +335,10 @@
|
|
|
113
335
|
"map": {
|
|
114
336
|
"00":"Standard beaconing",
|
|
115
337
|
"01":"No Beacons on Channel 37",
|
|
116
|
-
"02":"EU pattern"
|
|
338
|
+
"02":"EU pattern",
|
|
339
|
+
"03":"Extended Advertising",
|
|
340
|
+
"04":"Extended Advertising - No Pointers on Channel 37",
|
|
341
|
+
"05":"Extended Advertising - Channel 10"
|
|
117
342
|
}
|
|
118
343
|
},
|
|
119
344
|
{
|
|
@@ -128,7 +353,9 @@
|
|
|
128
353
|
"01":"Channel 38 - primary advertisement channel",
|
|
129
354
|
"02":"Channel 39 - primary advertisement channel",
|
|
130
355
|
"03":"Channel 10 - 2Mbps - E2/E3 Pixels",
|
|
131
|
-
"04":"Channel 10 - 2Mbps - E4 Pixels"
|
|
356
|
+
"04":"Channel 10 - 2Mbps - E4 Pixels",
|
|
357
|
+
"05":"Channel Hopping - 37 and 10",
|
|
358
|
+
"06":"Channel 21 - 2Mbps - E4 Pixels"
|
|
132
359
|
}
|
|
133
360
|
}
|
|
134
361
|
]
|
|
@@ -244,7 +471,10 @@
|
|
|
244
471
|
"map": {
|
|
245
472
|
"00":"Standard beaconing",
|
|
246
473
|
"01":"No Beacons on Channel 37",
|
|
247
|
-
"02":"EU pattern"
|
|
474
|
+
"02":"EU pattern",
|
|
475
|
+
"03":"Extended Advertising",
|
|
476
|
+
"04":"Extended Advertising - No Pointers on Channel 37",
|
|
477
|
+
"05":"Extended Advertising - Channel 10"
|
|
248
478
|
}
|
|
249
479
|
},
|
|
250
480
|
{
|
|
@@ -385,7 +615,10 @@
|
|
|
385
615
|
"map": {
|
|
386
616
|
"00":"Standard beaconing",
|
|
387
617
|
"01":"No Beacons on Channel 37",
|
|
388
|
-
"02":"EU pattern"
|
|
618
|
+
"02":"EU pattern",
|
|
619
|
+
"03":"Extended Advertising",
|
|
620
|
+
"04":"Extended Advertising - No Pointers on Channel 37",
|
|
621
|
+
"05":"Extended Advertising - Channel 10"
|
|
389
622
|
}
|
|
390
623
|
}
|
|
391
624
|
]
|
|
@@ -509,7 +742,10 @@
|
|
|
509
742
|
"map": {
|
|
510
743
|
"00":"Standard beaconing",
|
|
511
744
|
"01":"No Beacons on Channel 37",
|
|
512
|
-
"02":"EU pattern"
|
|
745
|
+
"02":"EU pattern",
|
|
746
|
+
"03":"Extended Advertising",
|
|
747
|
+
"04":"Extended Advertising - No Pointers on Channel 37",
|
|
748
|
+
"05":"Extended Advertising - Channel 10"
|
|
513
749
|
}
|
|
514
750
|
}
|
|
515
751
|
]
|
|
@@ -650,14 +886,6 @@
|
|
|
650
886
|
"bitLength": 16,
|
|
651
887
|
"outType": "uint"
|
|
652
888
|
},
|
|
653
|
-
{
|
|
654
|
-
"name": "unsued2",
|
|
655
|
-
"byteOffset": 17,
|
|
656
|
-
"byteLength": 1,
|
|
657
|
-
"bitOffset": 3,
|
|
658
|
-
"bitLength": 5,
|
|
659
|
-
"outType": "uint"
|
|
660
|
-
},
|
|
661
889
|
{
|
|
662
890
|
"name": "txRepetition",
|
|
663
891
|
"byteOffset": 17,
|
|
@@ -1,5 +1,125 @@
|
|
|
1
1
|
{
|
|
2
2
|
"versions": [
|
|
3
|
+
{
|
|
4
|
+
"version": "13",
|
|
5
|
+
"packetFields": [
|
|
6
|
+
{
|
|
7
|
+
"name": "moduleType",
|
|
8
|
+
"byteOffset": 5,
|
|
9
|
+
"byteLength": 1,
|
|
10
|
+
"bitOffset": 4,
|
|
11
|
+
"bitLength": 4,
|
|
12
|
+
"outType": "uint"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "msgType",
|
|
16
|
+
"byteOffset": 5,
|
|
17
|
+
"byteLength": 1,
|
|
18
|
+
"bitOffset": 0,
|
|
19
|
+
"bitLength": 4,
|
|
20
|
+
"outType": "uint"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "apiVersion",
|
|
24
|
+
"byteOffset": 6,
|
|
25
|
+
"byteLength": 1,
|
|
26
|
+
"bitOffset": 0,
|
|
27
|
+
"bitLength": 8,
|
|
28
|
+
"outType": "uint"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "seqId",
|
|
32
|
+
"byteOffset": 7,
|
|
33
|
+
"byteLength": 1,
|
|
34
|
+
"bitOffset": 0,
|
|
35
|
+
"bitLength": 8,
|
|
36
|
+
"outType": "uint"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "brgMac",
|
|
40
|
+
"byteOffset": 8,
|
|
41
|
+
"byteLength": 6,
|
|
42
|
+
"bitOffset": 0,
|
|
43
|
+
"bitLength": 48,
|
|
44
|
+
"outType": "string"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "dutyCycle",
|
|
48
|
+
"byteOffset": 14,
|
|
49
|
+
"byteLength": 1,
|
|
50
|
+
"bitOffset": 0,
|
|
51
|
+
"bitLength": 8,
|
|
52
|
+
"outType": "uint"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "pattern",
|
|
56
|
+
"byteOffset": 15,
|
|
57
|
+
"byteLength": 1,
|
|
58
|
+
"bitOffset": 0,
|
|
59
|
+
"bitLength": 8,
|
|
60
|
+
"outType": "string",
|
|
61
|
+
"map": {
|
|
62
|
+
"00":"No Energizing",
|
|
63
|
+
"01":"Channel 37",
|
|
64
|
+
"02":"Channel 38",
|
|
65
|
+
"03":"Channel 39",
|
|
66
|
+
"04":"2450MHz",
|
|
67
|
+
"05":"2454MHz"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "outputPower",
|
|
72
|
+
"byteOffset": 16,
|
|
73
|
+
"byteLength": 1,
|
|
74
|
+
"bitOffset": 0,
|
|
75
|
+
"bitLength": 8,
|
|
76
|
+
"outType": "string",
|
|
77
|
+
"map": {
|
|
78
|
+
"00":"Maximum",
|
|
79
|
+
"02":"Maximum - 2 dBm",
|
|
80
|
+
"03":"Maximum - 3 dBm",
|
|
81
|
+
"04":"Maximum - 4 dBm",
|
|
82
|
+
"06":"Maximum - 6 dBm",
|
|
83
|
+
"07":"Maximum - 7 dBm",
|
|
84
|
+
"08":"Maximum - 8 dBm",
|
|
85
|
+
"0A":"Maximum - 10 dBm",
|
|
86
|
+
"0B":"Maximum - 11 dBm",
|
|
87
|
+
"0C":"Maximum - 12 dBm",
|
|
88
|
+
"0E":"Maximum - 14 dBm",
|
|
89
|
+
"0F":"Maximum - 15 dBm",
|
|
90
|
+
"10":"Maximum - 16 dBm",
|
|
91
|
+
"12":"Maximum - 18 dBm",
|
|
92
|
+
"13":"Maximum - 19 dBm",
|
|
93
|
+
"14":"Maximum - 20 dBm",
|
|
94
|
+
"16":"Maximum - 22 dBm",
|
|
95
|
+
"17":"Maximum - 23 dBm",
|
|
96
|
+
"1A":"Maximum - 26 dBm"
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "signalIndicatorCycle",
|
|
101
|
+
"byteOffset": 17,
|
|
102
|
+
"byteLength": 2,
|
|
103
|
+
"bitOffset": 2,
|
|
104
|
+
"bitLength": 14,
|
|
105
|
+
"outType": "uint"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "signalIndicatorRep",
|
|
109
|
+
"byteOffset": 18,
|
|
110
|
+
"byteLength": 1,
|
|
111
|
+
"bitOffset": 0,
|
|
112
|
+
"bitLength": 2,
|
|
113
|
+
"outType": "uint",
|
|
114
|
+
"map": {
|
|
115
|
+
"0":1,
|
|
116
|
+
"1":2,
|
|
117
|
+
"2":3,
|
|
118
|
+
"3":4
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
},
|
|
3
123
|
{
|
|
4
124
|
"version": "12",
|
|
5
125
|
"packetFields": [
|
|
@@ -1,5 +1,101 @@
|
|
|
1
1
|
{
|
|
2
2
|
"versions": [
|
|
3
|
+
{
|
|
4
|
+
"version": "13",
|
|
5
|
+
"packetFields": [
|
|
6
|
+
{
|
|
7
|
+
"name": "moduleType",
|
|
8
|
+
"byteOffset": 5,
|
|
9
|
+
"byteLength": 1,
|
|
10
|
+
"bitOffset": 4,
|
|
11
|
+
"bitLength": 4,
|
|
12
|
+
"outType": "uint"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "msgType",
|
|
16
|
+
"byteOffset": 5,
|
|
17
|
+
"byteLength": 1,
|
|
18
|
+
"bitOffset": 0,
|
|
19
|
+
"bitLength": 4,
|
|
20
|
+
"outType": "uint"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "apiVersion",
|
|
24
|
+
"byteOffset": 6,
|
|
25
|
+
"byteLength": 1,
|
|
26
|
+
"bitOffset": 0,
|
|
27
|
+
"bitLength": 8,
|
|
28
|
+
"outType": "uint"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "seqId",
|
|
32
|
+
"byteOffset": 7,
|
|
33
|
+
"byteLength": 1,
|
|
34
|
+
"bitOffset": 0,
|
|
35
|
+
"bitLength": 8,
|
|
36
|
+
"outType": "uint"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "brgMac",
|
|
40
|
+
"byteOffset": 8,
|
|
41
|
+
"byteLength": 6,
|
|
42
|
+
"bitOffset": 0,
|
|
43
|
+
"bitLength": 48,
|
|
44
|
+
"outType": "string"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "sub1gEnergyPattern",
|
|
48
|
+
"byteOffset": 14,
|
|
49
|
+
"byteLength": 1,
|
|
50
|
+
"bitOffset": 0,
|
|
51
|
+
"bitLength": 8,
|
|
52
|
+
"outType": "string",
|
|
53
|
+
"map": {
|
|
54
|
+
"00":"No Energizing",
|
|
55
|
+
"01":"Single Tone 915MHz",
|
|
56
|
+
"02":"FCC (Hopping)",
|
|
57
|
+
"03":"Japan1W",
|
|
58
|
+
"04":"Japan350mW",
|
|
59
|
+
"05":"Korea",
|
|
60
|
+
"06":"Single tone 916300MHz",
|
|
61
|
+
"07":"Single tone 917500MHz",
|
|
62
|
+
"08":"Australia",
|
|
63
|
+
"09":"Israel",
|
|
64
|
+
"0A":"NZ (Hopping)"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "dutyCycle",
|
|
69
|
+
"byteOffset": 15,
|
|
70
|
+
"byteLength": 1,
|
|
71
|
+
"bitOffset": 0,
|
|
72
|
+
"bitLength": 8,
|
|
73
|
+
"outType": "uint"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "signalIndicatorCycle",
|
|
77
|
+
"byteOffset": 16,
|
|
78
|
+
"byteLength": 2,
|
|
79
|
+
"bitOffset": 2,
|
|
80
|
+
"bitLength": 14,
|
|
81
|
+
"outType": "uint"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "signalIndicatorRep",
|
|
85
|
+
"byteOffset": 17,
|
|
86
|
+
"byteLength": 1,
|
|
87
|
+
"bitOffset": 0,
|
|
88
|
+
"bitLength": 2,
|
|
89
|
+
"outType": "uint",
|
|
90
|
+
"map": {
|
|
91
|
+
"0":1,
|
|
92
|
+
"1":2,
|
|
93
|
+
"2":3,
|
|
94
|
+
"3":4
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
},
|
|
3
99
|
{
|
|
4
100
|
"version": "12",
|
|
5
101
|
"packetFields": [
|