wiliot-certificate 4.5.0__tar.gz → 4.5.0a1__tar.gz

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.
Files changed (193) hide show
  1. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/PKG-INFO +38 -27
  2. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/README.md +37 -26
  3. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/pyproject.toml +3 -3
  4. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json +211 -0
  5. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json +894 -0
  6. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +184 -0
  7. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/calibration.json +490 -0
  8. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/custom.json +614 -0
  9. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/datapath.json +900 -0
  10. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/energy2400.json +670 -0
  11. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/energySub1g.json +691 -0
  12. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/externalSensor.json +727 -0
  13. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/interface.json +1095 -0
  14. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/powerManagement.json +1439 -0
  15. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/side_info_sensor.json +105 -0
  16. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/signal_indicator_data.json +77 -0
  17. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +126 -0
  18. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +175 -0
  19. wiliot_certificate-4.5.0a1/src/certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json +65 -0
  20. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_common.py +46 -75
  21. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_config.py +18 -43
  22. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_data_sim.py +9 -12
  23. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_defines.py +0 -9
  24. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_gw_sim.py +7 -35
  25. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_mqtt.py +5 -15
  26. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_prints.py +0 -1
  27. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_results.py +37 -56
  28. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_utils.py +15 -27
  29. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/certificate.py +5 -12
  30. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/certificate_cli.py +13 -10
  31. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/certificate_eth_test_list.txt +4 -6
  32. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/certificate_sanity_test_list.txt +2 -3
  33. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/certificate_test_list.txt +4 -5
  34. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/interval_test/interval_test.json +0 -1
  35. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/output_power_test/output_power_test.json +0 -1
  36. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/pattern_test/pattern_test.json +0 -1
  37. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json +1 -2
  38. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/acl_test/acl_test.json +1 -2
  39. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/acl_test/acl_test.py +15 -13
  40. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json +1 -2
  41. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py +6 -8
  42. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json +1 -2
  43. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py +3 -3
  44. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/connection_test/connection_test.json +0 -1
  45. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/connection_test/connection_test.py +13 -6
  46. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/downlink_test/downlink_test.json +0 -1
  47. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/downlink_test/downlink_test.py +4 -1
  48. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json +1 -2
  49. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py +14 -20
  50. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/reboot_test/reboot_test.json +0 -1
  51. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/reboot_test/reboot_test.py +0 -2
  52. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/registration_test/registration_test.json +0 -1
  53. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py +1 -1
  54. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/stress_test/stress_test.json +1 -2
  55. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/stress_test/stress_test.py +16 -20
  56. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json +0 -1
  57. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py +2 -1
  58. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/uplink_test/uplink_test.json +0 -1
  59. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/uplink_test/uplink_test.py +20 -28
  60. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/aging_test/aging_test.json +0 -1
  61. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/aging_test/aging_test.py +3 -7
  62. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/event_ble5_test/event_ble5_test.json +2 -3
  63. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/event_ble5_test/event_ble5_test.py +13 -7
  64. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/event_test/event_test.json +2 -3
  65. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/event_test/event_test.py +10 -5
  66. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json +2 -3
  67. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py +5 -9
  68. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/output_power_test/output_power_test.json +0 -1
  69. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +0 -1
  70. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +4 -4
  71. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json +0 -1
  72. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pattern_test/pattern_test.json +0 -1
  73. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json +0 -1
  74. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py +5 -5
  75. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +0 -1
  76. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +5 -5
  77. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json +0 -1
  78. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py +8 -10
  79. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +0 -1
  80. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json +0 -1
  81. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +1 -2
  82. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.json +0 -1
  83. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_channel_test/rx_channel_test.json +0 -1
  84. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +0 -1
  85. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +1 -1
  86. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +0 -1
  87. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json +0 -1
  88. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py +0 -3
  89. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/stress_test/stress_test.json +0 -1
  90. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/stress_test/stress_test.py +0 -3
  91. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json +0 -1
  92. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json +0 -1
  93. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json +0 -1
  94. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json +0 -1
  95. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json +0 -1
  96. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json +0 -1
  97. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json +0 -1
  98. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json +0 -1
  99. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json +0 -1
  100. wiliot_certificate-4.5.0a1/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +41 -0
  101. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json +0 -1
  102. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json +0 -1
  103. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/output_power_test/output_power_test.json +0 -1
  104. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/pattern_test/pattern_test.json +0 -1
  105. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +0 -1
  106. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +3 -4
  107. wiliot_certificate-4.5.0a1/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +20 -0
  108. wiliot_certificate-4.5.0a1/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +331 -0
  109. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +0 -1
  110. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +1 -1
  111. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +0 -1
  112. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy_sub1g/pattern_test/pattern_test.json +0 -1
  113. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +0 -1
  114. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json +0 -1
  115. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +9 -4
  116. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/api_validation.py +2 -8
  117. wiliot_certificate-4.5.0a1/src/common/web/templates/generator.html +148 -0
  118. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/web/web_utils.py +56 -78
  119. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/gui_certificate/server.py +78 -283
  120. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/gui_certificate/templates/cert_run.html +113 -179
  121. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/PKG-INFO +38 -27
  122. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/SOURCES.txt +16 -2
  123. wiliot_certificate-4.5.0/src/certificate/tests/cloud_connectivity/deduplication_test/deduplication_test.json +0 -15
  124. wiliot_certificate-4.5.0/src/certificate/tests/cloud_connectivity/deduplication_test/deduplication_test.py +0 -80
  125. wiliot_certificate-4.5.0/src/certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +0 -45
  126. wiliot_certificate-4.5.0/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.json +0 -20
  127. wiliot_certificate-4.5.0/src/certificate/tests/energy2400/signal_indicator_ext_adv_test/signal_indicator_ext_adv_test.py +0 -173
  128. wiliot_certificate-4.5.0/src/common/web/templates/generator.html +0 -210
  129. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/LICENSE +0 -0
  130. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/setup.cfg +0 -0
  131. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/__init__.py +0 -0
  132. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/ag/wlt_cmd_if.html +0 -0
  133. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/ag/wlt_types_ag.py +0 -0
  134. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/cert_protobuf.py +0 -0
  135. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/interval_test/interval_test.py +0 -0
  136. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/output_power_test/output_power_test.py +0 -0
  137. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/calibration/pattern_test/pattern_test.py +0 -0
  138. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py +0 -0
  139. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/cloud_connectivity/registration_test/registration_test.py +0 -0
  140. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/output_power_test/output_power_test.py +0 -0
  141. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py +0 -0
  142. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pattern_test/pattern_test.py +0 -0
  143. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +0 -0
  144. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py +0 -0
  145. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +0 -0
  146. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py +0 -0
  147. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_channel_test/rx_channel_test.py +0 -0
  148. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +0 -0
  149. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py +0 -0
  150. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py +0 -0
  151. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py +0 -0
  152. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py +0 -0
  153. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py +0 -0
  154. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py +0 -0
  155. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py +0 -0
  156. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py +0 -0
  157. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py +0 -0
  158. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py +0 -0
  159. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/output_power_test/output_power_test.py +0 -0
  160. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy2400/pattern_test/pattern_test.py +0 -0
  161. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +0 -0
  162. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/energy_sub1g/pattern_test/pattern_test.py +0 -0
  163. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +0 -0
  164. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/certificate/wlt_types.py +0 -0
  165. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/202/data.json +0 -0
  166. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/202/logs.json +0 -0
  167. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/202/status.json +0 -0
  168. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/203/data.json +0 -0
  169. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/203/logs.json +0 -0
  170. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/203/status.json +0 -0
  171. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/204/data.json +0 -0
  172. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/204/logs.json +0 -0
  173. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/204/status.json +0 -0
  174. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/205/data.json +0 -0
  175. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/205/logs.json +0 -0
  176. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/205/status.json +0 -0
  177. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/206/data.json +0 -0
  178. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/206/logs.json +0 -0
  179. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/206/status.json +0 -0
  180. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/api_if/__init__.py +0 -0
  181. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/web/templates/index.html +0 -0
  182. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/web/templates/menu.html +0 -0
  183. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/web/templates/parser.html +0 -0
  184. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/web/templates/wlt_types.html +0 -0
  185. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/wltPb_pb2.py +0 -0
  186. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/wltPb_pb2.pyi +0 -0
  187. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/common/wlt_logo.png +0 -0
  188. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/gui_certificate/__init__.py +0 -0
  189. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/gui_certificate/gui_certificate_cli.py +0 -0
  190. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/dependency_links.txt +0 -0
  191. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/entry_points.txt +0 -0
  192. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/requires.txt +0 -0
  193. {wiliot_certificate-4.5.0 → wiliot_certificate-4.5.0a1}/src/wiliot_certificate.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wiliot_certificate
3
- Version: 4.5.0
3
+ Version: 4.5.0a1
4
4
  Summary: A library for certifying Wiliot-compliant boards
5
5
  Author-email: Wiliot <support@wiliot.com>
6
6
  License-Expression: MIT
@@ -30,37 +30,62 @@ Requires-Dist: reportlab>=4.3.1
30
30
  Requires-Dist: google-api-python-client>=2.162.0
31
31
  Dynamic: license-file
32
32
 
33
- # wiliot-certificate
33
+ # wiliot-certificate Version 4.5.0
34
34
 
35
35
  <!-- Description -->
36
36
  wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
37
- This python package includes the following tools:
37
+ This python package includes the following CLI utilities:
38
38
  - Certification Wizard (`wlt-cert`)
39
39
  - Certificate CLI (`wlt-cert-cli`)
40
40
  - Tester Upgrade (`wlt-cert-tester-upgrade`)
41
- - Registration Certificate Test (`wlt-cert-reg`)
41
+ - Registration Certificate (`wlt-cert-reg`)
42
42
 
43
- # Versioning:
44
- wiliot-certificate versions 4.5.x are compatible with firmware version >=4.4.0 (API VERSION: 12)
43
+ # Version:
44
+ wiliot-certificate versions 4.5.0 are compatible with firmware version >=4.5.0 (API VERSION: 13)
45
45
 
46
46
  ## Installing wiliot-certificate
47
+ Install wiliot-certificate:
47
48
  ````commandline
48
49
  pip install wiliot-certificate
49
50
  ````
50
51
 
51
52
  ## Using wiliot-certificate
52
53
  ### Certification
54
+ In terminal, run:
53
55
  ````commandline
54
56
  wlt-cert
55
57
  ````
56
- This tool is the default to test and certify your device.
57
- It runs a setup wizard that walks you through the initialization steps before running the tests.
58
- You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema) and a [tester device](https://community.wiliot.com/customers/s/article/Wiliot-Certification).
59
- Once set up it opens a terminal and tests your device.
58
+ <!-- This tool walks you through... TODO -->
59
+ <!-- You need to have a json validation schema <LINK>, certification tester & custom broker file <LINK> -->
60
60
 
61
+ #### The following capabilities are not tested in this version
62
+ ##### Cloud Connectivity & Misc
63
+ - Board type registered within the Board Type Management system
64
+ - Bridge OTA progress reporting
65
+ ##### Power management
66
+ - Functionality of energize and transmit in sleep mode
67
+ ##### Edge management
68
+ - Timing of heartbeat and interface packets
69
+ ##### Module Energy 2400
70
+ - Functionality of energy pattern, output power and duty cycle
71
+ ##### Module Energy SUB1G
72
+ - Functionality of energy pattern and duty cycle
73
+ ##### Module Datapath
74
+ - RSSI edge cases: -127 and 0
75
+ - Functionality of transmission pattern, output power
76
+ - Pacer interval with channel 10 and 500k modulation
77
+ - Pacer interval using GEN3 Pixels
78
+ - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
79
+ - Rx rate feature with extended advertising
80
+ - Functionality of adaptive pacer algorithm
81
+ - Supported Pixels for extended advertising and GEN3
82
+ ##### Calibration
83
+ - Functionality of output power and interval calibration
84
+ - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
61
85
 
62
86
 
63
87
  ### Certificate CLI
88
+ In terminal, run:
64
89
  ````commandline
65
90
  wlt-cert-cli -h
66
91
  ````
@@ -68,6 +93,7 @@ CLI version of the certificate. Use -h for details on the different arguments.
68
93
 
69
94
 
70
95
  ### Tester Upgrade
96
+ In terminal, run:
71
97
  ````commandline
72
98
  wlt-cert-tester-upgrade
73
99
  ````
@@ -75,25 +101,10 @@ Upgrades the firmware of the tester device to the version required for certifica
75
101
 
76
102
 
77
103
  ### Registration Certificate
104
+ In terminal, run:
78
105
  ````commandline
79
106
  wlt-cert-reg
80
107
  ````
81
108
  Certify the gateway registration process to Wiliot platform.
82
109
  The gateway must use Wiliot production MQTT broker, and mustn't be registered to any account on Wiliot platform.
83
- Use -h for details on the arguments (see [Registration](https://community.wiliot.com/customers/s/article/Wiliot-Certification) for more info).
84
-
85
-
86
- ## The following capabilities are not tested in this version
87
- ##### Cloud Connectivity & Misc
88
- - Board type registered within the Board Type Management system
89
- - Bridge OTA progress reporting
90
- ##### Module Energy 2400
91
- - Functionality of energy pattern, output power and duty cycle
92
- ##### Module Energy SUB1G
93
- - Functionality of energy pattern and duty cycle
94
- ##### Module Datapath
95
- - RSSI edge cases: -127 and 0
96
- - Functionality of transmission pattern, output power
97
- ##### Calibration
98
- - Functionality of output power and interval calibration
99
- - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
110
+ Use -h for details on the arguments. <!-- More info can be found in TODO link-->
@@ -1,34 +1,59 @@
1
- # wiliot-certificate
1
+ # wiliot-certificate Version 4.5.0
2
2
 
3
3
  <!-- Description -->
4
4
  wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
5
- This python package includes the following tools:
5
+ This python package includes the following CLI utilities:
6
6
  - Certification Wizard (`wlt-cert`)
7
7
  - Certificate CLI (`wlt-cert-cli`)
8
8
  - Tester Upgrade (`wlt-cert-tester-upgrade`)
9
- - Registration Certificate Test (`wlt-cert-reg`)
9
+ - Registration Certificate (`wlt-cert-reg`)
10
10
 
11
- # Versioning:
12
- wiliot-certificate versions 4.5.x are compatible with firmware version >=4.4.0 (API VERSION: 12)
11
+ # Version:
12
+ wiliot-certificate versions 4.5.0 are compatible with firmware version >=4.5.0 (API VERSION: 13)
13
13
 
14
14
  ## Installing wiliot-certificate
15
+ Install wiliot-certificate:
15
16
  ````commandline
16
17
  pip install wiliot-certificate
17
18
  ````
18
19
 
19
20
  ## Using wiliot-certificate
20
21
  ### Certification
22
+ In terminal, run:
21
23
  ````commandline
22
24
  wlt-cert
23
25
  ````
24
- This tool is the default to test and certify your device.
25
- It runs a setup wizard that walks you through the initialization steps before running the tests.
26
- You'll need a [validation schema](https://community.wiliot.com/customers/s/article/Validation-Schema) and a [tester device](https://community.wiliot.com/customers/s/article/Wiliot-Certification).
27
- Once set up it opens a terminal and tests your device.
26
+ <!-- This tool walks you through... TODO -->
27
+ <!-- You need to have a json validation schema <LINK>, certification tester & custom broker file <LINK> -->
28
28
 
29
+ #### The following capabilities are not tested in this version
30
+ ##### Cloud Connectivity & Misc
31
+ - Board type registered within the Board Type Management system
32
+ - Bridge OTA progress reporting
33
+ ##### Power management
34
+ - Functionality of energize and transmit in sleep mode
35
+ ##### Edge management
36
+ - Timing of heartbeat and interface packets
37
+ ##### Module Energy 2400
38
+ - Functionality of energy pattern, output power and duty cycle
39
+ ##### Module Energy SUB1G
40
+ - Functionality of energy pattern and duty cycle
41
+ ##### Module Datapath
42
+ - RSSI edge cases: -127 and 0
43
+ - Functionality of transmission pattern, output power
44
+ - Pacer interval with channel 10 and 500k modulation
45
+ - Pacer interval using GEN3 Pixels
46
+ - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
47
+ - Rx rate feature with extended advertising
48
+ - Functionality of adaptive pacer algorithm
49
+ - Supported Pixels for extended advertising and GEN3
50
+ ##### Calibration
51
+ - Functionality of output power and interval calibration
52
+ - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
29
53
 
30
54
 
31
55
  ### Certificate CLI
56
+ In terminal, run:
32
57
  ````commandline
33
58
  wlt-cert-cli -h
34
59
  ````
@@ -36,6 +61,7 @@ CLI version of the certificate. Use -h for details on the different arguments.
36
61
 
37
62
 
38
63
  ### Tester Upgrade
64
+ In terminal, run:
39
65
  ````commandline
40
66
  wlt-cert-tester-upgrade
41
67
  ````
@@ -43,25 +69,10 @@ Upgrades the firmware of the tester device to the version required for certifica
43
69
 
44
70
 
45
71
  ### Registration Certificate
72
+ In terminal, run:
46
73
  ````commandline
47
74
  wlt-cert-reg
48
75
  ````
49
76
  Certify the gateway registration process to Wiliot platform.
50
77
  The gateway must use Wiliot production MQTT broker, and mustn't be registered to any account on Wiliot platform.
51
- Use -h for details on the arguments (see [Registration](https://community.wiliot.com/customers/s/article/Wiliot-Certification) for more info).
52
-
53
-
54
- ## The following capabilities are not tested in this version
55
- ##### Cloud Connectivity & Misc
56
- - Board type registered within the Board Type Management system
57
- - Bridge OTA progress reporting
58
- ##### Module Energy 2400
59
- - Functionality of energy pattern, output power and duty cycle
60
- ##### Module Energy SUB1G
61
- - Functionality of energy pattern and duty cycle
62
- ##### Module Datapath
63
- - RSSI edge cases: -127 and 0
64
- - Functionality of transmission pattern, output power
65
- ##### Calibration
66
- - Functionality of output power and interval calibration
67
- - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
78
+ Use -h for details on the arguments. <!-- More info can be found in TODO link-->
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "wiliot_certificate"
7
- version = "4.5.0"
7
+ version = "4.5.0a1"
8
8
  authors = [
9
9
  { name="Wiliot", email="support@wiliot.com" }
10
10
  ]
@@ -54,8 +54,8 @@ exclude = ["*.ut*"]
54
54
 
55
55
  [tool.setuptools.package-data]
56
56
  common = ["wlt_logo.png", "**/*.html", "**/*.json"]
57
- certificate = ["tests/**/*.json", "*_list.txt", "**/wlt_cmd_if.html"]
57
+ certificate = ["**/*.json", "**/*.md", "*_list.txt", "**/wlt_cmd_if.html", "**/wlt_types.html"]
58
58
  gui_certificate = ["**/*.html"]
59
59
 
60
60
  [tool.setuptools.exclude-package-data]
61
- certificate = ["*ut/*", "config/*"]
61
+ certificate = ["**/mqtt_log_*.json", "mqtt_log_*.json", "*cert_mqtt_log.json", "*_log.txt", "*ut/*", "config/*"]
@@ -0,0 +1,211 @@
1
+ {
2
+ "versions": [
3
+ {
4
+ "version": "13",
5
+ "packetFields": [
6
+ {
7
+ "name": "msgType",
8
+ "byteOffset": 5,
9
+ "byteLength": 1,
10
+ "bitOffset": 0,
11
+ "bitLength": 8,
12
+ "outType": "uint"
13
+ },
14
+ {
15
+ "name": "apiVersion",
16
+ "byteOffset": 6,
17
+ "byteLength": 1,
18
+ "bitOffset": 0,
19
+ "bitLength": 8,
20
+ "outType": "uint"
21
+ },
22
+ {
23
+ "name": "seqId",
24
+ "byteOffset": 7,
25
+ "byteLength": 1,
26
+ "bitOffset": 0,
27
+ "bitLength": 8,
28
+ "outType": "uint"
29
+ },
30
+ {
31
+ "name": "srcBrgMac",
32
+ "byteOffset": 8,
33
+ "byteLength": 6,
34
+ "bitOffset": 0,
35
+ "bitLength": 48,
36
+ "outType": "string"
37
+ },
38
+ {
39
+ "name": "actionId",
40
+ "byteOffset": 14,
41
+ "byteLength": 1,
42
+ "bitOffset": 0,
43
+ "bitLength": 8,
44
+ "outType": "uint"
45
+ },
46
+ {
47
+ "name": "destBrgMac",
48
+ "byteOffset": 15,
49
+ "byteLength": 6,
50
+ "bitOffset": 0,
51
+ "bitLength": 48,
52
+ "outType": "string"
53
+ },
54
+ {
55
+ "name": "app",
56
+ "byteOffset": 21,
57
+ "byteLength": 1,
58
+ "bitOffset": 0,
59
+ "bitLength": 8,
60
+ "outType": "uint"
61
+ },
62
+ {
63
+ "name": "bootloader",
64
+ "byteOffset": 22,
65
+ "byteLength": 1,
66
+ "bitOffset": 0,
67
+ "bitLength": 8,
68
+ "outType": "uint"
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "version": "12",
74
+ "packetFields": [
75
+ {
76
+ "name": "msgType",
77
+ "byteOffset": 5,
78
+ "byteLength": 1,
79
+ "bitOffset": 0,
80
+ "bitLength": 8,
81
+ "outType": "uint"
82
+ },
83
+ {
84
+ "name": "apiVersion",
85
+ "byteOffset": 6,
86
+ "byteLength": 1,
87
+ "bitOffset": 0,
88
+ "bitLength": 8,
89
+ "outType": "uint"
90
+ },
91
+ {
92
+ "name": "seqId",
93
+ "byteOffset": 7,
94
+ "byteLength": 1,
95
+ "bitOffset": 0,
96
+ "bitLength": 8,
97
+ "outType": "uint"
98
+ },
99
+ {
100
+ "name": "srcBrgMac",
101
+ "byteOffset": 8,
102
+ "byteLength": 6,
103
+ "bitOffset": 0,
104
+ "bitLength": 48,
105
+ "outType": "string"
106
+ },
107
+ {
108
+ "name": "actionId",
109
+ "byteOffset": 14,
110
+ "byteLength": 1,
111
+ "bitOffset": 0,
112
+ "bitLength": 8,
113
+ "outType": "uint"
114
+ },
115
+ {
116
+ "name": "destBrgMac",
117
+ "byteOffset": 15,
118
+ "byteLength": 6,
119
+ "bitOffset": 0,
120
+ "bitLength": 48,
121
+ "outType": "string"
122
+ },
123
+ {
124
+ "name": "app",
125
+ "byteOffset": 21,
126
+ "byteLength": 1,
127
+ "bitOffset": 0,
128
+ "bitLength": 8,
129
+ "outType": "uint"
130
+ },
131
+ {
132
+ "name": "bootloader",
133
+ "byteOffset": 22,
134
+ "byteLength": 1,
135
+ "bitOffset": 0,
136
+ "bitLength": 8,
137
+ "outType": "uint"
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "version": "11",
143
+ "packetFields": [
144
+ {
145
+ "name": "msgType",
146
+ "byteOffset": 5,
147
+ "byteLength": 1,
148
+ "bitOffset": 0,
149
+ "bitLength": 8,
150
+ "outType": "uint"
151
+ },
152
+ {
153
+ "name": "apiVersion",
154
+ "byteOffset": 6,
155
+ "byteLength": 1,
156
+ "bitOffset": 0,
157
+ "bitLength": 8,
158
+ "outType": "uint"
159
+ },
160
+ {
161
+ "name": "seqId",
162
+ "byteOffset": 7,
163
+ "byteLength": 1,
164
+ "bitOffset": 0,
165
+ "bitLength": 8,
166
+ "outType": "uint"
167
+ },
168
+ {
169
+ "name": "srcBrgMac",
170
+ "byteOffset": 8,
171
+ "byteLength": 6,
172
+ "bitOffset": 0,
173
+ "bitLength": 48,
174
+ "outType": "string"
175
+ },
176
+ {
177
+ "name": "actionId",
178
+ "byteOffset": 14,
179
+ "byteLength": 1,
180
+ "bitOffset": 0,
181
+ "bitLength": 8,
182
+ "outType": "uint"
183
+ },
184
+ {
185
+ "name": "destBrgMac",
186
+ "byteOffset": 15,
187
+ "byteLength": 6,
188
+ "bitOffset": 0,
189
+ "bitLength": 48,
190
+ "outType": "string"
191
+ },
192
+ {
193
+ "name": "app",
194
+ "byteOffset": 21,
195
+ "byteLength": 1,
196
+ "bitOffset": 0,
197
+ "bitLength": 8,
198
+ "outType": "uint"
199
+ },
200
+ {
201
+ "name": "bootloader",
202
+ "byteOffset": 22,
203
+ "byteLength": 1,
204
+ "bitOffset": 0,
205
+ "bitLength": 8,
206
+ "outType": "uint"
207
+ }
208
+ ]
209
+ }
210
+ ]
211
+ }