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.
Files changed (295) hide show
  1. {brg_certificate → certificate}/ag/wlt_cmd_if.html +10 -4
  2. {brg_certificate → certificate}/ag/wlt_types_ag.py +1878 -519
  3. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2brg_ota.json +69 -0
  4. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb.json +109 -0
  5. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +45 -0
  6. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/calibration.json +96 -0
  7. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/custom.json +99 -0
  8. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/datapath.json +241 -13
  9. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energy2400.json +120 -0
  10. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/energySub1g.json +96 -0
  11. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/externalSensor.json +135 -6
  12. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/interface.json +157 -0
  13. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/powerManagement.json +205 -0
  14. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json → certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +27 -11
  15. certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +175 -0
  16. certificate/ag/wlt_types_ag_jsons/unified_sensor_pkt.json +65 -0
  17. certificate/cert_common.py +1459 -0
  18. certificate/cert_config.py +455 -0
  19. {brg_certificate → certificate}/cert_data_sim.py +131 -46
  20. {brg_certificate → certificate}/cert_defines.py +120 -128
  21. {brg_certificate → certificate}/cert_gw_sim.py +151 -49
  22. {brg_certificate → certificate}/cert_mqtt.py +164 -59
  23. {brg_certificate → certificate}/cert_prints.py +34 -33
  24. {brg_certificate → certificate}/cert_protobuf.py +15 -6
  25. {brg_certificate → certificate}/cert_results.py +205 -48
  26. certificate/cert_utils.py +622 -0
  27. certificate/certificate.py +198 -0
  28. certificate/certificate_cli.py +79 -0
  29. certificate/certificate_eth_test_list.txt +74 -0
  30. certificate/certificate_sanity_test_list.txt +65 -0
  31. certificate/certificate_test_list.txt +75 -0
  32. {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.json +2 -2
  33. {brg_certificate → certificate}/tests/calibration/interval_test/interval_test.py +7 -6
  34. certificate/tests/calibration/output_power_test/output_power_test.json +22 -0
  35. certificate/tests/calibration/output_power_test/output_power_test.py +39 -0
  36. {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.json +1 -1
  37. {brg_certificate → certificate}/tests/calibration/pattern_test/pattern_test.py +20 -15
  38. certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.json +14 -0
  39. certificate/tests/cloud_connectivity/acl_ext_adv_test/acl_ext_adv_test.py +140 -0
  40. certificate/tests/cloud_connectivity/acl_test/acl_test.json +14 -0
  41. certificate/tests/cloud_connectivity/acl_test/acl_test.py +98 -0
  42. certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.json +18 -0
  43. certificate/tests/cloud_connectivity/brg_ota_test/brg_ota_test.py +39 -0
  44. certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.json +18 -0
  45. certificate/tests/cloud_connectivity/channel_scan_behaviour_test/channel_scan_behaviour_test.py +215 -0
  46. certificate/tests/cloud_connectivity/connection_test/connection_test.json +17 -0
  47. certificate/tests/cloud_connectivity/connection_test/connection_test.py +74 -0
  48. certificate/tests/cloud_connectivity/downlink_test/downlink_test.json +20 -0
  49. certificate/tests/cloud_connectivity/downlink_test/downlink_test.py +204 -0
  50. certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.json +16 -0
  51. certificate/tests/cloud_connectivity/ext_adv_stress_test/ext_adv_stress_test.py +98 -0
  52. certificate/tests/cloud_connectivity/reboot_test/reboot_test.json +17 -0
  53. certificate/tests/cloud_connectivity/reboot_test/reboot_test.py +57 -0
  54. certificate/tests/cloud_connectivity/registration_test/registration_test.json +19 -0
  55. certificate/tests/cloud_connectivity/registration_test/registration_test.py +384 -0
  56. certificate/tests/cloud_connectivity/registration_test/registration_test_cli.py +90 -0
  57. certificate/tests/cloud_connectivity/stress_test/stress_test.json +16 -0
  58. certificate/tests/cloud_connectivity/stress_test/stress_test.py +97 -0
  59. certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.json +24 -0
  60. certificate/tests/cloud_connectivity/uplink_ext_adv_test/uplink_ext_adv_test.py +93 -0
  61. certificate/tests/cloud_connectivity/uplink_test/uplink_test.json +19 -0
  62. certificate/tests/cloud_connectivity/uplink_test/uplink_test.py +161 -0
  63. {brg_certificate → certificate}/tests/datapath/aging_test/aging_test.json +1 -1
  64. certificate/tests/datapath/aging_test/aging_test.py +138 -0
  65. certificate/tests/datapath/event_ble5_test/event_ble5_test.json +16 -0
  66. certificate/tests/datapath/event_ble5_test/event_ble5_test.py +95 -0
  67. certificate/tests/datapath/event_test/event_test.json +16 -0
  68. certificate/tests/datapath/event_test/event_test.py +85 -0
  69. {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.json +1 -1
  70. {brg_certificate → certificate}/tests/datapath/num_of_tags_test/num_of_tags_test.py +10 -8
  71. certificate/tests/datapath/output_power_test/output_power_test.json +22 -0
  72. {brg_certificate → certificate}/tests/datapath/output_power_test/output_power_test.py +17 -6
  73. {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +1 -1
  74. {brg_certificate → certificate}/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +10 -8
  75. {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.json +1 -1
  76. {brg_certificate → certificate}/tests/datapath/pacer_interval_test/pacer_interval_test.py +9 -7
  77. {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.json +2 -2
  78. {brg_certificate → certificate}/tests/datapath/pattern_test/pattern_test.py +18 -6
  79. certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.json +19 -0
  80. certificate/tests/datapath/pkt_filter_ble5_chl21_test/pkt_filter_ble5_chl21_test.py +61 -0
  81. {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +1 -1
  82. {brg_certificate → certificate}/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +11 -10
  83. certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.json +18 -0
  84. certificate/tests/datapath/pkt_filter_brg2gw_ext_adv_test/pkt_filter_brg2gw_ext_adv_test.py +83 -0
  85. {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +1 -1
  86. {brg_certificate → certificate}/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +10 -9
  87. {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.json +1 -1
  88. {brg_certificate → certificate}/tests/datapath/pkt_filter_test/pkt_filter_test.py +10 -9
  89. {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +1 -1
  90. {brg_certificate → certificate}/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +9 -8
  91. 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
  92. certificate/tests/datapath/rx_channel_hopping_test/rx_channel_hopping_test.py +77 -0
  93. {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.json +2 -2
  94. {brg_certificate → certificate}/tests/datapath/rx_channel_test/rx_channel_test.py +7 -6
  95. {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +7 -7
  96. {brg_certificate → certificate}/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +112 -72
  97. {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +7 -7
  98. {brg_certificate → certificate}/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +112 -72
  99. {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.json +3 -3
  100. {brg_certificate → certificate}/tests/datapath/stress_gen3_test/stress_gen3_test.py +12 -11
  101. {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.json +3 -3
  102. {brg_certificate → certificate}/tests/datapath/stress_test/stress_test.py +12 -11
  103. {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.json +2 -1
  104. {brg_certificate → certificate}/tests/datapath/tx_repetition_test/tx_repetition_test.py +14 -13
  105. certificate/tests/edge_mgmt/action_blink_test/action_blink_test.json +14 -0
  106. certificate/tests/edge_mgmt/action_blink_test/action_blink_test.py +24 -0
  107. certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.json +14 -0
  108. certificate/tests/edge_mgmt/action_get_battery_sensor_test/action_get_battery_sensor_test.py +43 -0
  109. certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.json +14 -0
  110. certificate/tests/edge_mgmt/action_get_module_test/action_get_module_test.py +42 -0
  111. certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.json +14 -0
  112. certificate/tests/edge_mgmt/action_get_pof_data_test/action_get_pof_data_test.py +44 -0
  113. certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.json +15 -0
  114. certificate/tests/edge_mgmt/action_gw_hb_test/action_gw_hb_test.py +42 -0
  115. certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.json +14 -0
  116. certificate/tests/edge_mgmt/action_reboot_test/action_reboot_test.py +49 -0
  117. certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.json +14 -0
  118. certificate/tests/edge_mgmt/action_restore_defaults_test/action_restore_defaults_test.py +102 -0
  119. certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.json +14 -0
  120. certificate/tests/edge_mgmt/action_send_hb_test/action_send_hb_test.py +41 -0
  121. {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json +2 -2
  122. {brg_certificate → certificate}/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py +22 -11
  123. {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.json +1 -1
  124. {brg_certificate → certificate}/tests/energy2400/duty_cycle_test/duty_cycle_test.py +7 -6
  125. certificate/tests/energy2400/output_power_test/output_power_test.json +22 -0
  126. {brg_certificate → certificate}/tests/energy2400/output_power_test/output_power_test.py +17 -6
  127. {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.json +1 -1
  128. {brg_certificate → certificate}/tests/energy2400/pattern_test/pattern_test.py +7 -6
  129. certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +25 -0
  130. certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +378 -0
  131. 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
  132. 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
  133. certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +23 -0
  134. certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +350 -0
  135. {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +1 -1
  136. {brg_certificate → certificate}/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +7 -6
  137. {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.json +1 -1
  138. {brg_certificate → certificate}/tests/energy_sub1g/pattern_test/pattern_test.py +7 -6
  139. {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +1 -1
  140. {brg_certificate → certificate}/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +10 -10
  141. {brg_certificate → certificate}/tests/sensors/ext_sensor_test/ext_sensor_test.json +4 -4
  142. certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +455 -0
  143. certificate/wlt_types.py +122 -0
  144. {gw_certificate → common}/api_if/202/status.json +6 -0
  145. {gw_certificate → common}/api_if/203/status.json +6 -0
  146. {gw_certificate → common}/api_if/204/status.json +6 -0
  147. common/api_if/206/data.json +85 -0
  148. common/api_if/206/status.json +69 -0
  149. common/api_if/api_validation.py +85 -0
  150. common/web/templates/generator.html +148 -0
  151. common/web/templates/index.html +20 -0
  152. common/web/templates/menu.html +54 -0
  153. common/web/templates/parser.html +53 -0
  154. {brg_certificate/ag → common/web/templates}/wlt_types.html +1216 -191
  155. common/web/web_utils.py +377 -0
  156. {brg_certificate → common}/wltPb_pb2.py +14 -12
  157. {gw_certificate/common → common}/wltPb_pb2.pyi +16 -2
  158. gui_certificate/gui_certificate_cli.py +14 -0
  159. gui_certificate/server.py +1062 -0
  160. gui_certificate/templates/cert_run.html +1207 -0
  161. wiliot_certificate-4.5.0a1.dist-info/METADATA +110 -0
  162. wiliot_certificate-4.5.0a1.dist-info/RECORD +182 -0
  163. {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/WHEEL +1 -1
  164. wiliot_certificate-4.5.0a1.dist-info/entry_points.txt +5 -0
  165. wiliot_certificate-4.5.0a1.dist-info/top_level.txt +3 -0
  166. brg_certificate/ag/energous_v0_defines.py +0 -925
  167. brg_certificate/ag/energous_v1_defines.py +0 -931
  168. brg_certificate/ag/energous_v2_defines.py +0 -925
  169. brg_certificate/ag/energous_v3_defines.py +0 -925
  170. brg_certificate/ag/energous_v4_defines.py +0 -925
  171. brg_certificate/ag/fanstel_lan_v0_defines.py +0 -925
  172. brg_certificate/ag/fanstel_lte_v0_defines.py +0 -925
  173. brg_certificate/ag/fanstel_wifi_v0_defines.py +0 -925
  174. brg_certificate/ag/minew_lte_v0_defines.py +0 -925
  175. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +0 -61
  176. brg_certificate/brg_certificate.py +0 -225
  177. brg_certificate/brg_certificate_cli.py +0 -63
  178. brg_certificate/cert_common.py +0 -923
  179. brg_certificate/cert_config.py +0 -402
  180. brg_certificate/cert_utils.py +0 -362
  181. brg_certificate/certificate_bcc_sanity_test_list.txt +0 -40
  182. brg_certificate/certificate_bcc_test_list.txt +0 -48
  183. brg_certificate/certificate_sanity_test_list.txt +0 -43
  184. brg_certificate/certificate_test_list.txt +0 -53
  185. brg_certificate/config/eclipse.json +0 -10
  186. brg_certificate/config/hivemq.json +0 -10
  187. brg_certificate/config/mosquitto.json +0 -10
  188. brg_certificate/config/mosquitto.md +0 -95
  189. brg_certificate/config/wiliot-dev.json +0 -10
  190. brg_certificate/restore_brg.py +0 -61
  191. brg_certificate/tests/calibration/output_power_test/output_power_test.json +0 -16
  192. brg_certificate/tests/calibration/output_power_test/output_power_test.py +0 -28
  193. brg_certificate/tests/datapath/aging_test/aging_test.py +0 -143
  194. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json +0 -16
  195. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py +0 -73
  196. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json +0 -17
  197. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py +0 -118
  198. brg_certificate/tests/edge_mgmt/actions_test/actions_test.json +0 -14
  199. brg_certificate/tests/edge_mgmt/actions_test/actions_test.py +0 -396
  200. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json +0 -20
  201. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py +0 -94
  202. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json +0 -19
  203. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py +0 -87
  204. brg_certificate/tests/edge_mgmt/leds_test/leds_test.json +0 -17
  205. brg_certificate/tests/edge_mgmt/leds_test/leds_test.py +0 -223
  206. brg_certificate/tests/edge_mgmt/ota_test/ota_test.json +0 -17
  207. brg_certificate/tests/edge_mgmt/ota_test/ota_test.py +0 -128
  208. brg_certificate/tests/energy2400/output_power_test/output_power_test.json +0 -16
  209. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json +0 -20
  210. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py +0 -321
  211. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json +0 -20
  212. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py +0 -141
  213. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +0 -20
  214. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +0 -276
  215. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json +0 -20
  216. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py +0 -390
  217. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json +0 -16
  218. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py +0 -28
  219. brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +0 -305
  220. brg_certificate/wltPb_pb2.pyi +0 -234
  221. brg_certificate/wlt_types.py +0 -113
  222. gw_certificate/ag/ut_defines.py +0 -364
  223. gw_certificate/ag/wlt_types.py +0 -85
  224. gw_certificate/ag/wlt_types_ag.py +0 -5310
  225. gw_certificate/ag/wlt_types_data.py +0 -64
  226. gw_certificate/api/extended_api.py +0 -23
  227. gw_certificate/api_if/200/data.json +0 -106
  228. gw_certificate/api_if/200/status.json +0 -47
  229. gw_certificate/api_if/201/data.json +0 -98
  230. gw_certificate/api_if/201/status.json +0 -53
  231. gw_certificate/api_if/205/logs.json +0 -12
  232. gw_certificate/api_if/api_validation.py +0 -38
  233. gw_certificate/api_if/gw_capabilities.py +0 -54
  234. gw_certificate/cert_results.py +0 -145
  235. gw_certificate/common/analysis_data_bricks.py +0 -60
  236. gw_certificate/common/debug.py +0 -42
  237. gw_certificate/common/serialization_formatter.py +0 -93
  238. gw_certificate/common/utils.py +0 -8
  239. gw_certificate/common/utils_defines.py +0 -15
  240. gw_certificate/common/wltPb_pb2.py +0 -84
  241. gw_certificate/gw_certificate.py +0 -154
  242. gw_certificate/gw_certificate_cli.py +0 -87
  243. gw_certificate/interface/4.4.93_app.zip +0 -0
  244. gw_certificate/interface/4.4.93_sd_bl_app.zip +0 -0
  245. gw_certificate/interface/ble_simulator.py +0 -61
  246. gw_certificate/interface/ble_sniffer.py +0 -189
  247. gw_certificate/interface/flash_fw.py +0 -90
  248. gw_certificate/interface/if_defines.py +0 -36
  249. gw_certificate/interface/mqtt.py +0 -563
  250. gw_certificate/interface/nrfutil-linux +0 -0
  251. gw_certificate/interface/nrfutil-mac +0 -0
  252. gw_certificate/interface/nrfutil.exe +0 -0
  253. gw_certificate/interface/pkt_generator.py +0 -594
  254. gw_certificate/interface/uart_if.py +0 -236
  255. gw_certificate/interface/uart_ports.py +0 -20
  256. gw_certificate/templates/results.html +0 -241
  257. gw_certificate/templates/stage.html +0 -22
  258. gw_certificate/templates/table.html +0 -6
  259. gw_certificate/templates/test.html +0 -38
  260. gw_certificate/tests/__init__.py +0 -10
  261. gw_certificate/tests/actions.py +0 -289
  262. gw_certificate/tests/bad_crc_to_PER_quantization.csv +0 -51
  263. gw_certificate/tests/connection.py +0 -188
  264. gw_certificate/tests/downlink.py +0 -172
  265. gw_certificate/tests/generic.py +0 -238
  266. gw_certificate/tests/registration.py +0 -340
  267. gw_certificate/tests/static/__init__.py +0 -0
  268. gw_certificate/tests/static/connection_defines.py +0 -9
  269. gw_certificate/tests/static/downlink_defines.py +0 -9
  270. gw_certificate/tests/static/generated_packet_table.py +0 -195
  271. gw_certificate/tests/static/packet_table.csv +0 -10067
  272. gw_certificate/tests/static/references.py +0 -5
  273. gw_certificate/tests/static/uplink_defines.py +0 -14
  274. gw_certificate/tests/throughput.py +0 -240
  275. gw_certificate/tests/uplink.py +0 -853
  276. wiliot_certificate-4.4.3.dist-info/METADATA +0 -211
  277. wiliot_certificate-4.4.3.dist-info/RECORD +0 -210
  278. wiliot_certificate-4.4.3.dist-info/entry_points.txt +0 -3
  279. wiliot_certificate-4.4.3.dist-info/top_level.txt +0 -3
  280. {brg_certificate → certificate}/__init__.py +0 -0
  281. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/side_info_sensor.json +0 -0
  282. {brg_certificate → certificate}/ag/wlt_types_ag_jsons/signal_indicator_data.json +0 -0
  283. {gw_certificate → common}/api_if/202/data.json +0 -0
  284. {gw_certificate/api_if/200 → common/api_if/202}/logs.json +0 -0
  285. {gw_certificate → common}/api_if/203/data.json +0 -0
  286. {gw_certificate/api_if/201 → common/api_if/203}/logs.json +0 -0
  287. {gw_certificate → common}/api_if/204/data.json +0 -0
  288. {gw_certificate/api_if/202 → common/api_if/204}/logs.json +0 -0
  289. {gw_certificate → common}/api_if/205/data.json +0 -0
  290. {gw_certificate/api_if/203 → common/api_if/205}/logs.json +0 -0
  291. {gw_certificate → common}/api_if/205/status.json +0 -0
  292. {gw_certificate/api_if/204 → common/api_if/206}/logs.json +0 -0
  293. {gw_certificate → common/api_if}/__init__.py +0 -0
  294. {gw_certificate/api_if → gui_certificate}/__init__.py +0 -0
  295. {wiliot_certificate-4.4.3.dist-info → wiliot_certificate-4.5.0a1.dist-info}/licenses/LICENSE +0 -0
@@ -1,211 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: wiliot_certificate
3
- Version: 4.4.3
4
- Summary: A library for certifying Wiliot-compliant boards
5
- Author-email: Wiliot <support@wiliot.com>
6
- License: MIT License
7
-
8
- Copyright (c) 2025 Wiliot Ltd.
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in
18
- all copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
- THE SOFTWARE.
27
-
28
- Project-URL: Wiliot, https://www.wiliot.com
29
- Project-URL: Certified, https://www.wiliot.com/product/ambient-iot-network#partner-device-certification
30
- Classifier: Programming Language :: Python :: 3
31
- Classifier: License :: OSI Approved :: MIT License
32
- Classifier: Operating System :: OS Independent
33
- Requires-Python: >=3.9
34
- Description-Content-Type: text/markdown
35
- License-File: LICENSE
36
- Requires-Dist: jinja2>=3.1.5
37
- Requires-Dist: appdirs>=1.4.4
38
- Requires-Dist: plotly>=6.0.0
39
- Requires-Dist: numpy>=1.21.5
40
- Requires-Dist: pandas>=2.2.3
41
- Requires-Dist: colorama>=0.4.6
42
- Requires-Dist: tabulate>=0.9.0
43
- Requires-Dist: wiliot-core>=5.9.1
44
- Requires-Dist: paho-mqtt>=2.1.0
45
- Requires-Dist: bitstruct>=8.20.0
46
- Requires-Dist: protobuf>=6.30.0
47
- Requires-Dist: wiliot-api>=4.10.8
48
- Requires-Dist: jsonschema>=4.23.0
49
- Requires-Dist: statsmodels>=0.14.4
50
- Requires-Dist: pyserial>=3.5
51
- Requires-Dist: reportlab>=4.3.1
52
- Requires-Dist: google-api-python-client>=2.162.0
53
- Dynamic: license-file
54
-
55
- # wiliot-certificate Version 4.4.0
56
-
57
- <!-- Description -->
58
- wiliot-certificate is a Python library that provides tools for testing and certifying boards for compatibility with Wiliot’s ecosystem.
59
- This python package includes the following CLI utilities:
60
- - Gateway Certificate (`wlt-cert-gw`)
61
- - Bridge Certificate (`wlt-cert-brg`)
62
-
63
- # Version:
64
- wiliot-certificate versions 4.4.0 are compatible with firmware version 4.4.6 (ESP: 4.4.44, BLE: 4.4.93)
65
-
66
- ## Installing wiliot-certificate
67
- Uninstall wiliot-deployment-tools if installed (relevant for old wlt-gw-certificate users):
68
- ````commandline
69
- pip uninstall wiliot-deployment-tools
70
- ````
71
-
72
- Install wiliot-certificate:
73
- ````commandline
74
- pip install wiliot-certificate
75
- ````
76
-
77
- ## Using wiliot-certificate
78
- ### Gateway Certificate
79
- Test Wiliot Gateway capabilities.
80
- The Gateway Certificate includes different test that run sequentially to test each capability reported by the Gateway.
81
- To run the Gateway Certificate the Gateway needs to use a public MQTT Broker (Eclipse):
82
-
83
- Host: mqtt.eclipseprojects.io
84
- TLS TCP Port: 8883
85
- TLS Websocket Port: 443
86
- TCP Port: 1883
87
- Websocket Port: 80
88
-
89
- More information can be found at https://mqtt.eclipseprojects.io/.
90
-
91
- #### Gateway Certificate Release Notes:
92
- Release:
93
- - Standalone wiliot-certificate package
94
- - Python 3.13 support
95
- - Gateway API version 205 support
96
- - Registration test added
97
- - Bridge OTA stage added under actions
98
- - Aggregation flag supported by StressTest
99
- - -update flag compatibility fix. Upgrades bootloader if needed
100
- - -actions flag to select specific actions to test
101
- - ACL (Access control list) test for gateways reporting API version 205 in the connection test
102
-
103
- #### The following capabilities are not tested in this version
104
- - Access control list stress stress
105
- - Validation schema verification
106
- - Board type registered within the Board Type Management system
107
- - Bridge OTA progress reporting
108
-
109
-
110
- ```
111
- Usage: wlt-cert-gw [-h] -owner OWNER -gw GW [-suffix SUFFIX] [-tests {connection,uplink,downlink,stress}]
112
-
113
- Gateway Certificate - CLI Tool to test Wiliot GWs
114
-
115
- Required arguments:
116
- -gw GW Gateway ID
117
-
118
- Optional arguments:
119
- -owner OWNER Owner ID (Required for non-registration tests)
120
- -tests Pick specific tests to run
121
- -actions Pick specific actions to test during the ActionsTest
122
- -update Update the firmware of the test board
123
- -pps Pick specific PPS rate for the stress test
124
- -agg Duration uplink stages wait before processing packets
125
- -suffix Allow for different suffixes after the Gateway ID in MQTT topics
126
- -env Wiliot environment for registration and bridgeOTA tests
127
- -h, --help show this help message and exit
128
- ```
129
-
130
- ### Bridge Certificate
131
- Test Wiliot Bridge capabilities.
132
- The Bridge Certificate includes different tests that run sequentially to test each capability reported by the bridge.
133
-
134
-
135
- # update Gateway sim version :
136
- - Update your gateway and bridge using Wiliot's platform. (https://platform.wiliot.com/)
137
- - Transfer the gateway to dev mode - run the following command: py ut\dev_mode.py --gw [GW] --enable
138
- - Connect the gateway to your laptop via USB connection:
139
- - Run the following: wlt-cert-brg --gw SIM --brg <XXXXXXXXXXXX> --port <COM_PORT>
140
- - For other options of running, see the 'run example' section.
141
-
142
- #### Bridge Certificate Release Notes:
143
- Release
144
- - First release of Bridge Certificate – includes validation tests for bridge functionality.
145
- - Additional details are available in the JSON files.
146
-
147
- # The following capabilities are not tested in this version
148
-
149
- ## Power management
150
- - Functionality of energize and transmit in sleep mode
151
- ## Edge management
152
- - Timing of heartbeat and interface packets
153
- ## Module Energy 2400
154
- - Functionality of energy pattern, output power and duty cycle
155
- ## Module Energy SUB1G
156
- - Functionality of energy pattern and duty cycle
157
- ## Module Datapath
158
- - RSSI edge cases: -127 and 0
159
- - Functionality of transmission pattern, output power
160
- - Pacer interval with channel 10 and 500k modulation
161
- - Pacer interval using GEN3 Pixels
162
- - Packet filter: the following configuration - DEBUG, TEMP & DEBUG, TEMPS & DEBUG & ADVANCE
163
- - Rx rate feature with extended advertising
164
- - Functionality of adaptive pacer algorithm
165
- - Supported Pixels for extended advertising and GEN3
166
- ## Calibration
167
- - Functionality of output power and interval calibration
168
- - Functionality of calibration transmission patterns for the configuration STANDARD & EU & DISABLE
169
-
170
-
171
- ```
172
- usage: wlt-cert-brg [-h] [--brg BRG] [--brg_cloud_connectivity BRG_CLOUD_CONNECTIVITY] [--brg1 BRG1] --gw GW [--data {tags,sim}] [--port PORT] [--clean] [--tl TL] [--run RUN]
173
- [--drun DRUN] [--exit_on_test_failure] [--exit_on_param_failure] [--analyze_interference]
174
-
175
- # Bridge Certificate CLI
176
-
177
- options:
178
- -h, --help show this help message and exit
179
- --brg, -b BRG Bridge id to run on the tests
180
- --brg_cloud_connectivity, -bcc BRG_CLOUD_CONNECTIVITY
181
- Bridge with cloud connectivity id to run on the tests
182
- --brg1, -b1 BRG1 Second bridge id to run on tests two bridges needed
183
- --gw, -g GW GW id to run on the test, SIM prefix is used for Gateway simulation
184
- --data, -d {tags,sim}
185
- Choose if data generated from real tags or by simulation
186
- --port, -p PORT Enable UT using UART connection for Gateway Simulation or Data Simulation
187
- --clean Clean all logs
188
- --tl TL Test list file to use
189
- --run RUN String to filter tests to run
190
- --drun DRUN String to filter tests not to run
191
- --exit_on_test_failure
192
- Stop running the tests if a test failed
193
- --exit_on_param_failure
194
- Sets exit_on_param_failure mode to true in order to prevent tests from continuing iteration over all possibilities in case of failure
195
- --analyze_interference, -ai
196
- Analyze interference before tests start (relevant only for Gateway Simulator)
197
-
198
- run examples:
199
- Run command example with COM PORT connection:
200
- wlt-cert-brg --gw SIM --brg <XXXXXXXXXXXX> --port <COM_PORT>
201
- Run command example with remote GW connection:
202
- wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX>
203
- Run command example for running datapath module tests only:
204
- wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX> --run datapath
205
- Run command example with sanity test list:
206
- wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX> --tl certificate_sanity_test_list.txt
207
- Run command example with COM PORT connection for bridge with cloud connectivity:
208
- wlt-cert-brg --gw SIM --brg_cloud_connectivity <XXXXXXXXXXXX> --tl certificate_bcc_test_list.txt --port <COM_PORT>
209
- Run command example with remote GW connection for bridge with cloud connectivity:
210
- wlt-cert-brg --gw <YYYYYYYYYYYY> --brg_cloud_connectivity <XXXXXXXXXXXX> --tl certificate_bcc_test_list.txt
211
- ```
@@ -1,210 +0,0 @@
1
- brg_certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- brg_certificate/brg_certificate.py,sha256=3Kz18fiY5lg3WyasmAsYQIllfI_ZnsDxCW7BBzJpoyY,9592
3
- brg_certificate/brg_certificate_cli.py,sha256=THSKJM8ONsNfFaG5tb-xdEJmNSTbpyIcmYjDlDVu1-k,3997
4
- brg_certificate/cert_common.py,sha256=XkW2NiU5Dthds-GqbDS4DvBPQNeb6h1Cn7Umhb2exHQ,42202
5
- brg_certificate/cert_config.py,sha256=hmnCT0bfPRsu_nHwXoGqGIjuvoGrJQMC2D1HdkX0aXE,20119
6
- brg_certificate/cert_data_sim.py,sha256=Zw21ElvM5lYRtsXSDzi0GdYQLnxl3CYsRjABVJYNW_Q,10235
7
- brg_certificate/cert_defines.py,sha256=N2eaOxFOgpSvvVWm2TcG1JgDKxLs6DESKGwYQGabl4w,18617
8
- brg_certificate/cert_gw_sim.py,sha256=MWxNKNCVqQEyDKc66VhGz1_KsOczvn0sjaSyvYH15FM,13243
9
- brg_certificate/cert_mqtt.py,sha256=dcAOsULShN9VmppT150wNwbPRjIdutLnTGlb_MfWpXk,16859
10
- brg_certificate/cert_prints.py,sha256=s0u0Omnq1aruo0CkS_7p4hqpD-fSRx7ih9vJ4x9cbcU,7045
11
- brg_certificate/cert_protobuf.py,sha256=1jiPIYBFkA21iClxn2fC3GEQzdh7wLB01pdddwXMX-g,3542
12
- brg_certificate/cert_results.py,sha256=k6EKex2mG28ev8s8VsNfXGg28hiUn133ASGla7B3WnA,20870
13
- brg_certificate/cert_utils.py,sha256=zFQFNxNOi5AH92JgWknZv9NZN-sz-G-dh7sOzz_SRgw,16550
14
- brg_certificate/certificate_bcc_sanity_test_list.txt,sha256=SURuNOLuIO7xzh5KnMBYYzwMjZlcLqGaPLwBdqxCKbc,2281
15
- brg_certificate/certificate_bcc_test_list.txt,sha256=WduySF_fWZ3HK1Wr4zGfFNiyRL8ONsIV9D7vyBCpmig,3332
16
- brg_certificate/certificate_sanity_test_list.txt,sha256=Egv00zGNAWdFhzO4T1oUkmeLOSG35aHNfXSxH6DRd9g,2291
17
- brg_certificate/certificate_test_list.txt,sha256=RnQkzEWrF_RJlDL0E75mwnboKsJUNCX8uAMZs6AOL1M,3624
18
- brg_certificate/restore_brg.py,sha256=rPV-Foa-mPHUSTdJq_LDNuoL6orMyevbulzRIW4GIHs,2341
19
- brg_certificate/wltPb_pb2.py,sha256=DPFrv5IVbxBUpmGRXO6iZjp-QwWUUaD9c37lMZnQoCM,8686
20
- brg_certificate/wltPb_pb2.pyi,sha256=OcVo8ehkzIQ9EZoXp4om_kT2Any32stYKTTQvUsPEMU,11472
21
- brg_certificate/wlt_types.py,sha256=7pWm-56wDkq7HoMheBdvjUwbDS8suYTz13aEeAgIc6w,5166
22
- brg_certificate/ag/energous_v0_defines.py,sha256=3VEpuhPee2jLJ9cGuLBNuk_zs2ExHorWor7fhkRTIyk,64353
23
- brg_certificate/ag/energous_v1_defines.py,sha256=vIOy1wMmN4k90TEJ1oiDRGDDB52WTWT3j2GyRFTanzU,64563
24
- brg_certificate/ag/energous_v2_defines.py,sha256=3VEpuhPee2jLJ9cGuLBNuk_zs2ExHorWor7fhkRTIyk,64353
25
- brg_certificate/ag/energous_v3_defines.py,sha256=3VEpuhPee2jLJ9cGuLBNuk_zs2ExHorWor7fhkRTIyk,64353
26
- brg_certificate/ag/energous_v4_defines.py,sha256=3VEpuhPee2jLJ9cGuLBNuk_zs2ExHorWor7fhkRTIyk,64353
27
- brg_certificate/ag/fanstel_lan_v0_defines.py,sha256=NW3lMzSN35XZ_IGby6MqChaQiiGUEV9hxk6jVSh5Qzo,64320
28
- brg_certificate/ag/fanstel_lte_v0_defines.py,sha256=NW3lMzSN35XZ_IGby6MqChaQiiGUEV9hxk6jVSh5Qzo,64320
29
- brg_certificate/ag/fanstel_wifi_v0_defines.py,sha256=NW3lMzSN35XZ_IGby6MqChaQiiGUEV9hxk6jVSh5Qzo,64320
30
- brg_certificate/ag/minew_lte_v0_defines.py,sha256=NW3lMzSN35XZ_IGby6MqChaQiiGUEV9hxk6jVSh5Qzo,64320
31
- brg_certificate/ag/wlt_cmd_if.html,sha256=qfwLhXB1zhOL1qVQs591B80FB0mbOeixHUNsNsdMNW4,14424
32
- brg_certificate/ag/wlt_types.html,sha256=jWcZIJO8JXaCPu-eLxph7arwurcZSdpG7Vh-RStaTmA,370312
33
- brg_certificate/ag/wlt_types_ag.py,sha256=DRXm3C28UF316hou81f7dXGx0ZMc7S_d0IqURSL-pz0,444530
34
- brg_certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json,sha256=Om8e0fpItgKegZxHJO1cumEy8Th-DfJ6Zkb_bI0zSwk,3133
35
- brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json,sha256=2qlRlwMPh1I9lrhtH4zFzMxS8axcJ8Ml1nDgqvmdSKU,17993
36
- brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json,sha256=WM0ziHGpucYRwTAB_zPp5EcmT19bmXvldEUfoZGOOoY,3005
37
- brg_certificate/ag/wlt_types_ag_jsons/calibration.json,sha256=2lirGIVb5kGr7sml3TOOR79aubor81HwglpcZIS9QPo,9036
38
- brg_certificate/ag/wlt_types_ag_jsons/custom.json,sha256=83XIRWMIRGoxsmDzsMe0VuwDU6CqZgMhaGczhv2gVaY,11446
39
- brg_certificate/ag/wlt_types_ag_jsons/datapath.json,sha256=wD5RoPjCE9njP4-krOULyCKJLzUOClq8UWgwwpjC4N0,16606
40
- brg_certificate/ag/wlt_types_ag_jsons/energy2400.json,sha256=-WRnEVB7kA4Huk5Rj6NvfYKxjjq9Ef6ejF7V_ZQaV6w,12521
41
- brg_certificate/ag/wlt_types_ag_jsons/energySub1g.json,sha256=FjbBU8YKSoef-vEAD1pDoUW-JefjHObs8sl6JS59G7o,13637
42
- brg_certificate/ag/wlt_types_ag_jsons/externalSensor.json,sha256=gFznE9ru4ihjNIILAHe6gH5BqTUPylzqz6ZAG9Lx_oo,14005
43
- brg_certificate/ag/wlt_types_ag_jsons/interface.json,sha256=VYivZuNcsYZZUJRTReJObAvC9fnoaFbV6COt3HtNf0o,21818
44
- brg_certificate/ag/wlt_types_ag_jsons/powerManagement.json,sha256=Lb26HRSCDvx7OF7ctzSJWUAv0B4Sy54DGiHuk9N4scw,28052
45
- brg_certificate/ag/wlt_types_ag_jsons/side_info_sensor.json,sha256=P06xqCiJnxImP8rV7C0a7YvhDaIhqn0e_9wl6uzGaps,2349
46
- brg_certificate/ag/wlt_types_ag_jsons/signal_indicator_data.json,sha256=6AmSuNh6YC6ZlQtfIaOW-S5IVEnx64KdVYfwS7g5Z4M,1668
47
- brg_certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json,sha256=iyJq2q1bgTLh2nbGooztEmmu15rwfjo9GBL4MbRK6F4,1254
48
- brg_certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json,sha256=0YxU78Ay2r0BZo2V1wtWE7oYEjGhHMZFwLafr56Tm7U,2304
49
- brg_certificate/config/eclipse.json,sha256=oMr57NoYJPmTfvqK1oT1U1urjPMJKXZ01eBUac7QBVM,269
50
- brg_certificate/config/hivemq.json,sha256=nj61J4FaDeVopndiK-vAxlV4xw5d-EYnTIYtZhV824A,262
51
- brg_certificate/config/mosquitto.json,sha256=Wd8Fj36GcZNdIKpXZQzx3wb8EmnTBDmOx1kA0Qgi0Ww,254
52
- brg_certificate/config/mosquitto.md,sha256=xU7q2-FpYYwxd6xE-6cl6j_ywc3120ZZnGG1ofl9peY,2494
53
- brg_certificate/config/wiliot-dev.json,sha256=J6O70nIJYk_qcnw6Hxf9TaKxcaG72p_dqAUpbbeCsCQ,288
54
- brg_certificate/tests/calibration/interval_test/interval_test.json,sha256=xHDygAh4NFOlgHnj3IJtcCV7ywbavF2BFMDE95A8yI8,594
55
- brg_certificate/tests/calibration/interval_test/interval_test.py,sha256=0gi3uOXMQ1IXoGJQrHVJewAbai3Mh6kv1laH0rRWEz0,1139
56
- brg_certificate/tests/calibration/output_power_test/output_power_test.json,sha256=B3bvNohuIaPKWFgDJIODbL1OLDclLuszkTGxEYAEm34,690
57
- brg_certificate/tests/calibration/output_power_test/output_power_test.py,sha256=PSSRFxJ2Yq7YVz1mac3FZCg7NeI9TGd3as5-sXcIuGY,1115
58
- brg_certificate/tests/calibration/pattern_test/pattern_test.json,sha256=1i0O5_0StjAjusfkEWIiK1uwKbP3hqN9AJHn1IgHeOQ,1021
59
- brg_certificate/tests/calibration/pattern_test/pattern_test.py,sha256=fLbnShqqu1ptD2DIFgtbERK1qWkeZb3Zejq-IuM8VC8,4315
60
- brg_certificate/tests/datapath/aging_test/aging_test.json,sha256=J-cqOVxqtcbq5DEvkUnfhvyshpbm2sfyoD6UUmvx3bk,900
61
- brg_certificate/tests/datapath/aging_test/aging_test.py,sha256=f_qxDOgHuMjjfmJDFPxxYxXzlRrBW0y5yqMiVThiMTY,6042
62
- brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json,sha256=J3FYtqCwyjoqMnxu7ZHKF9McQAxUvWHSop8jRTkuPj0,829
63
- brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py,sha256=WBCdpbqkH1Q9Ry3XfQvqu-3TS7RGcAeSGTn0UTJg8Uk,3403
64
- brg_certificate/tests/datapath/output_power_test/output_power_test.json,sha256=V4XCGroVhJDYfVXp04YaF-3CubfKaMxuYganSOM7DAg,696
65
- brg_certificate/tests/datapath/output_power_test/output_power_test.py,sha256=LvHgjMwptUfER4Q8NJ4NfjPfkEyDMbaDitd1I6QXEaI,1121
66
- brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json,sha256=IX4Undkuv3RCsSXy-GfsdmgSrpNwSXbkF9UHRctgyhM,947
67
- brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py,sha256=daE1NCAiw1KTvKd3bznhMT8wUC7DXc-M11t2CxDIKWI,2602
68
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json,sha256=TrMceZ6FV5g7tQdLRdWLBmuJjUH-HuBv8qYOD22tzBo,905
69
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py,sha256=dKRe0tKOeRCm_AhSxHLMV1zMvdq8qAJYYPJDtrdJffo,3956
70
- brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json,sha256=3OLVPgHuu6y_hMnxPgu2FwW6D_rJIzNyPYXsznFOFUo,921
71
- brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py,sha256=nqNUew48m_FVDUwxiQLzp-qg2e_0N2ZyQKvMmkw-Kz0,2595
72
- brg_certificate/tests/datapath/pattern_test/pattern_test.json,sha256=EjV4vYrmkIHc8B2KE2OLq42MMTLi9K2n_YrZx8gurHA,758
73
- brg_certificate/tests/datapath/pattern_test/pattern_test.py,sha256=eE52YSSMKnBFhSdtbGRhCDxk_qKcMI6m1TRPW8RL1Vg,1137
74
- brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json,sha256=87ppotggyGvBs_R4NsAnCjvzbAZS9C1CE93Hfj4rjic,1202
75
- brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py,sha256=k2pQta-QfjqrtQGAh7TsygAsHHsZ9kFw9XWnzuTQN2g,3114
76
- brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json,sha256=0kypJ_QvnoYQ_doOHi_sjSdCKfKLAkgDDp7Z5q6EZ1k,1156
77
- brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py,sha256=bjcZgRaR-ZN82J9eao1MbXb78M7KGbhed6rPHBhQYL0,3106
78
- brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json,sha256=nW0M2zznpvgLyw-mvHedY22Wno3-jCIycx8Emiyv5p0,1167
79
- brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py,sha256=Q4HTfqFdQYt72wnd-vBrDMZ8F20ocLoKECnyGYJnwTg,3086
80
- brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json,sha256=89IWoUid1s4q471K229k7h3HbScj2PNH6VxmMKGZ1XM,737
81
- brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py,sha256=heC7U7PdhWBIhYS5PhEH1UC8rMTAniK7nJNJY8ELHvs,3213
82
- brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.json,sha256=FVxQKGqCSGfafn17Y3X2ztGtUxodmv9NZJgWVRwcKeo,765
83
- brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.py,sha256=u2HyaT_rBVPeTdWJDMZAp3mrbpD9m8JtQ6itv9i4QhE,1740
84
- brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json,sha256=bYp_P_r8XgFDyUv1on5jL8Tp-04RhnnGJp2qOJhd4Tk,1395
85
- brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py,sha256=7fierhPmE8MjqwhvfsaAswtF3qnXeilDzJar47wuMdA,10503
86
- brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json,sha256=qhVoafzoQx8oO4VSxFZDnqXFLI3r8I6IK6ZLWpGAgRY,1395
87
- brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py,sha256=NaLZu7s99JqattYqxbOIDpviTGSAVp6H_RjBXZwinZc,10503
88
- brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json,sha256=0Xrt9c43zt_X80Hc9syRWvJbUgcNCJiNM8QxKu2j9_M,1378
89
- brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py,sha256=57gjJtsbBfNiAeFZeC81i51QC9gZRsUZw0zDOuI4Shg,11008
90
- brg_certificate/tests/datapath/stress_test/stress_test.json,sha256=MG79WsyLNq9kOeA5Z_8L_7cbFZhio9J2jJT3-_DdVJ4,1378
91
- brg_certificate/tests/datapath/stress_test/stress_test.py,sha256=ddu_YG6Z0Fw4fSvEcfwm3PJvSVW3d9QOgI749cgqBGI,11007
92
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json,sha256=RLyxlEUQF24gMXLhsWLOd0jjUZ7KEOX1zSmO9DjVHa0,808
93
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py,sha256=DxEPHS-ivLBwSxX07cYxnoVjB_DG1XPQrWeK4288hS4,4044
94
- brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json,sha256=2mcvlH-djpKP-Al7TSwGx47fiDItk-U-z0Hgg3lWwFY,968
95
- brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py,sha256=ooCFmhjhnaTmMGT9NBsPTChIyhdezs5Afifjyeo2S0c,3613
96
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.json,sha256=Nc7amijSFqu5aS2Dw60MKPvwoXTdwx7KJbmgl2TqZUE,714
97
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.py,sha256=pWHi-4qxEiY7ilGqJKexnLQtsugTQVgMRkc4OG8P23E,18739
98
- brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json,sha256=lYdqQJtgQwVIK4_pUD_abCt4bSHSqFpJQ1lWLcx9Z9I,1268
99
- brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py,sha256=kedRXAc8sgRnL2JRFNXaLNMqgykQlrSYTbbP_08WwzQ,4400
100
- brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json,sha256=lFLCF9RNZXYjmjeXOHTrasNAmsPF6uDXmfex93DrrSA,1158
101
- brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py,sha256=Yt-gRDubQNRH10lz-ne1Z1zeeuY29QMffiXSVOq5zc4,4026
102
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.json,sha256=1cyg1z5wsUXTFAr-MLP6vGu6dyoZiqLUZ90YPfRaUxI,822
103
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.py,sha256=4HUTkykkP7FXXlWlh3VigcAEcWGSRLyEzE4gPKsoQiI,12862
104
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.json,sha256=A-psNlYEFZ6f0KtdKtz3IgQUYksO7KajqclBSU4s9qA,670
105
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.py,sha256=m3SlHdtEtbE0L8rclZ-0_z1RsJFm7lej9fxbrv76EXQ,5207
106
- brg_certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.json,sha256=As4vG-Tx4iOTF6KWrm-7ciipWh2x5aDbLYn_oN5OjGk,584
107
- brg_certificate/tests/edge_mgmt/periodic_msgs_test/periodic_msgs_test.py,sha256=VMGVYtzP2Ic1A5y56zQzLYwMxkJw3DU671ownzmj4rQ,1977
108
- brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json,sha256=-meatjF53qoFBO_q_gOfQvDRDW79Rh5F6T9HOfNqBwE,684
109
- brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py,sha256=MG3KHDHvrG6loJxd0vQPgUlPt5LCaBNXYTLSUj7J8CM,1126
110
- brg_certificate/tests/energy2400/output_power_test/output_power_test.json,sha256=vGyqsmKUyw_5kfgC-bp-fILVFC63CcVRD7cIKTnwHUU,699
111
- brg_certificate/tests/energy2400/output_power_test/output_power_test.py,sha256=8e1ITKdUJb0f8LfgWDlLyQGgQnM7lkdSIo4KyleclyA,1129
112
- brg_certificate/tests/energy2400/pattern_test/pattern_test.json,sha256=IlmfE9MbN59IhQyffhAFMCWoaQJcYZWp1qHv2zzs6LQ,866
113
- brg_certificate/tests/energy2400/pattern_test/pattern_test.py,sha256=4qD--IYlqvexTBNSv7d6dDJ7Q2tUqi3-FgL9pCgWuI4,1147
114
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json,sha256=XeH-0GbMC4X_g5S8Or_9-DcIic2E6ffo770f5we8uDY,1409
115
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py,sha256=WzpUZoxpmdp5IDCi7-UIgi9vwMC4j7KQG5N9JfACGtE,19205
116
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.json,sha256=b8mVVwmXup3Xi5dpC2UHOsS0Qhj3DwbxFfzce8GjLAY,1403
117
- brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.py,sha256=xjYLumuMdEJsFarTDfFFNHQKl6xQETGqlMbpgJDJQZU,19205
118
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json,sha256=TWhrdUlhDcx5BCHXpBtPSdUqVeooJSSe8HC7SpeylEQ,1104
119
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py,sha256=cVEc0LKCRdzmF85hx2kWQx2gizp_Y_UAXecsGY1852Y,7804
120
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json,sha256=iqT5e6Dv1415_LVev_5uowq0dpLTutBJulXYvhpXhjk,1382
121
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py,sha256=k0SG_LOdfFjNHmtuWbOUuYQvECvopGdVp_PdntdKtpQ,16175
122
- brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json,sha256=AroWSbQnToy4_hwReF1JQnAQPgV5A6VXqaP2I69prAY,713
123
- brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py,sha256=mtmRpkWCjuC90axh3hCspTMrOpGo8gtTvAOYsO70I9M,1147
124
- brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.json,sha256=7rIPAklqUC03r1JDvzQUD_9JLvn5k0m-ifd7VFBRxsE,1183
125
- brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.py,sha256=nqVjDDUKgIVTP7VdS_uyxly-0PIyA1UyyjozspjX0C8,1107
126
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json,sha256=qsuf6b0dj_0bp3DhjczuBwiT6jFxyUO8tlJsrj79mLQ,1378
127
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py,sha256=I9LTNBFd5Nx-4J8Vx_kk_hDRtUjyVu-k6ShIsZDYyQ8,26083
128
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json,sha256=dQxNN--ZG52EO2WWpKxYarkZl3Zuz_uR7NOieiOlZwY,746
129
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py,sha256=l-2kmmv-Kw2sjWyKNeJrP5oW8ziP9_rFAdSQspQA2L8,1197
130
- brg_certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json,sha256=8mfJavH21XJ4iHD3QDY_H8MVKXr59sA4O3Plx38n1Lk,826
131
- brg_certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py,sha256=VoyZhB2JShzpObXlPD2CN9cLBkAVmJ3915dlbv3488c,3726
132
- brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json,sha256=8MdE9fAz--cb9VVfbNXosX4HVr2ePjA_oPaMLbaHoBw,1932
133
- brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py,sha256=uYlOSAo-iRPAhV1WklRqmNDjakkNnz93aGhwBeauAh8,12974
134
- common/wlt_logo.png,sha256=21DEhCEOOBU7Zt7ocwVIKU_CKUoHXScc3ej5VAzVsjM,132154
135
- gw_certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- gw_certificate/cert_results.py,sha256=y299oQ3TW4xYp0aM20txqvt7ufsUXSunqg2HN3M5emQ,8856
137
- gw_certificate/gw_certificate.py,sha256=N1c7MmXrW2fMqzG2woe3H17CqJvGyoKAzhEgLjkBcsc,6845
138
- gw_certificate/gw_certificate_cli.py,sha256=FZ_A3A6UttACNo56WwhqAl0ZwfOFJDcBgS3q0tH_Mnk,4869
139
- gw_certificate/ag/ut_defines.py,sha256=HgrljTmPpKyxj6zYbnrLz1oVdSiAI4voG24d5diSQXc,16892
140
- gw_certificate/ag/wlt_types.py,sha256=WFiRPs0E0fN5f-9a9l0y8zjDNAR4Xfmon2k8n7rqODk,3637
141
- gw_certificate/ag/wlt_types_ag.py,sha256=xEk9_8m12x0_Tu8zeTV_7v6OY52dWdENHnjM61re-5I,246870
142
- gw_certificate/ag/wlt_types_data.py,sha256=bN3bh4A9WEhf4EbAzO4kPnqhFkMvZA6PDSP0_MFgwQ4,2142
143
- gw_certificate/api/extended_api.py,sha256=vMLeqbpJwZuCSWR7NS8ZmkWuf1-eOFrZU0SqcxHJTGI,808
144
- gw_certificate/api_if/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- gw_certificate/api_if/api_validation.py,sha256=MCFjdQlR0fMmZ5t4Z3bAqPqK0wWXPS9TrdIQFd2L3mM,1311
146
- gw_certificate/api_if/gw_capabilities.py,sha256=hOtx6JidqcIEvwy1z9A890Cdp7tR0DPJi857Am91mEw,1812
147
- gw_certificate/api_if/200/data.json,sha256=EQHFWhQc2Qvv7EGkBF2WW_vShDuq40SaM9be0A9ziLY,3756
148
- gw_certificate/api_if/200/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
149
- gw_certificate/api_if/200/status.json,sha256=aPi-tAAySbvrPHdmysjDlOEvxxdAQO9kcO9WHQWNq2s,1333
150
- gw_certificate/api_if/201/data.json,sha256=2MBxebiwFF_eCGlxbeCoueJXQ-ULIRcoa6BvcGnm-_E,3462
151
- gw_certificate/api_if/201/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
152
- gw_certificate/api_if/201/status.json,sha256=63QKlgRTqLZr8tJvg32qHyZ9uONyr7C4_h62IXYypno,1630
153
- gw_certificate/api_if/202/data.json,sha256=A_nTONHIvPsOIqTM0X-ON0s2i2Um7bmv7b1zZzGD0nA,2423
154
- gw_certificate/api_if/202/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
155
- gw_certificate/api_if/202/status.json,sha256=FudQjtJuI0dUdrW97NSiCi1wOZQQJAWFST--_fR-bb0,1759
156
- gw_certificate/api_if/203/data.json,sha256=ZJFMQCTTN3LZuHcwrO6tL911n50-1meq6B46DX4xbg4,2600
157
- gw_certificate/api_if/203/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
158
- gw_certificate/api_if/203/status.json,sha256=k6lfavxMZbpZ7nZoLy821Pz598AteYtymtyHZnCW44k,1861
159
- gw_certificate/api_if/204/data.json,sha256=ZJFMQCTTN3LZuHcwrO6tL911n50-1meq6B46DX4xbg4,2600
160
- gw_certificate/api_if/204/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
161
- gw_certificate/api_if/204/status.json,sha256=_PB8glklkTePgI1poWrpBqxiZ92ol3TEHQubEI8lnQQ,1861
162
- gw_certificate/api_if/205/data.json,sha256=SYxgA7zkdmyhPRwvfuVqwHKlGQ1B1rNxLNlXOQJAsc0,2616
163
- gw_certificate/api_if/205/logs.json,sha256=vfVi4hkxKGcSiupTSS2Er8wn4hZ8_MTaO5xbirNF5-0,219
164
- gw_certificate/api_if/205/status.json,sha256=WVO5eGzadLazdkHQZ97yEYlPDzJu12WYRZb3s52kixk,1861
165
- gw_certificate/common/analysis_data_bricks.py,sha256=_DZvurnE7ymKVJbu-YnQUJY0SalwmZxIuMsN-FMr7Qk,2537
166
- gw_certificate/common/debug.py,sha256=sE_N4sWGRkbwdIb2QxqRtL8YQaePlaxvqecgnbxn6Xc,1208
167
- gw_certificate/common/serialization_formatter.py,sha256=NC-tPZ5Dw3L7f9EF1PBtEz-eW7GPSGegcJo6_gmDpvc,4358
168
- gw_certificate/common/utils.py,sha256=yjE6kdmMIRyQ0rPm56zZroi8a9zY4GnincmOPOL6rJo,215
169
- gw_certificate/common/utils_defines.py,sha256=zLWKQBZscX1AVwBdJcM5GgZTJ5aYJWhQ1vjwX25EZrM,543
170
- gw_certificate/common/wltPb_pb2.py,sha256=DPFrv5IVbxBUpmGRXO6iZjp-QwWUUaD9c37lMZnQoCM,8686
171
- gw_certificate/common/wltPb_pb2.pyi,sha256=OcVo8ehkzIQ9EZoXp4om_kT2Any32stYKTTQvUsPEMU,11472
172
- gw_certificate/interface/4.4.93_app.zip,sha256=G1COeiH5A_piNrmHScDbPLhKctzJpOWoi0oBjTRNmQE,171493
173
- gw_certificate/interface/4.4.93_sd_bl_app.zip,sha256=zSTpqjbJzUkN5-Rk7pfterajIR4ANVN21Td0xd1izIQ,368941
174
- gw_certificate/interface/ble_simulator.py,sha256=mdH28n2-pdywKGrTc4nqmyIThNpM68Qf4ICzzeCuxbE,2678
175
- gw_certificate/interface/ble_sniffer.py,sha256=S5AtT_3gWlm3FCmQSR4KnCIfnr70E9LgQPtQEJs1YFM,6869
176
- gw_certificate/interface/flash_fw.py,sha256=yAAAY9pBtlvzab0YFvHP48F8XBLmVm8OxkejiyCr7xo,2724
177
- gw_certificate/interface/if_defines.py,sha256=EAdT26qFl7110breWbpTPrpYZRHmizzvd188bse36ek,999
178
- gw_certificate/interface/mqtt.py,sha256=dVNkRiFXjCmFlz5897IIZta-t0H095uftczayqDjVUY,25619
179
- gw_certificate/interface/nrfutil-linux,sha256=9Fzy9VLSzL5dwEWh4HJUFdfmXH69gTrUVV8hxEjPgGU,26071480
180
- gw_certificate/interface/nrfutil-mac,sha256=YG-iPLwnYUFjwYriqaGaFtYuIj-0T4TkeSWkJ638HWQ,15839744
181
- gw_certificate/interface/nrfutil.exe,sha256=_uOu7RhDpL_8CCdHzqYNwHKSnrNuZ9Ysij_XRx4NyS0,16155851
182
- gw_certificate/interface/pkt_generator.py,sha256=yOSCEj8Ybjsq_u6tVmpsbkwYmLFqZR2eIk9k09AIsUM,22174
183
- gw_certificate/interface/uart_if.py,sha256=8BFz9ynh6q5cgACEjc0Y8ply2heAS7uWZsIGsHryzzw,10360
184
- gw_certificate/interface/uart_ports.py,sha256=HOIdrkr8OtALhoorT51k_tvSh6VYholR2ey4_WwcIAk,547
185
- gw_certificate/templates/results.html,sha256=w3kqslWDpHb1oYKSbY10RMDZe9HeI-O-GRP15oQIijA,12694
186
- gw_certificate/templates/stage.html,sha256=o89N0DWCIs2foA9YzommBZ09EPPN7lytiEsHoXD6fWU,1009
187
- gw_certificate/templates/table.html,sha256=PPUf0St1OPT0fB_6OK0SQlsRST-brUJ99x9-Rxwan1Y,201
188
- gw_certificate/templates/test.html,sha256=lpwibyrmGXNyNxpxNbQNoT2b5oCq5WHUYZrF0oDnLSA,2062
189
- gw_certificate/tests/__init__.py,sha256=6XWYuJ1urHGCUTPQ6bbn25lDd32ZyB2dIDr2A_mkvTg,468
190
- gw_certificate/tests/actions.py,sha256=_EnQxlN3HowRtxdb0fsVz3dOpPl8xLQhKPxzZ2RxVXk,13906
191
- gw_certificate/tests/bad_crc_to_PER_quantization.csv,sha256=2V1_7HV7pKEKddA429rp4tTn-je9G3Xi2tMvDhqvGhc,357
192
- gw_certificate/tests/connection.py,sha256=f70DB1R0BHOlNnTYt4qa9tKwAJmNAHBju5bwvbcT6b0,9721
193
- gw_certificate/tests/downlink.py,sha256=UcA18NB5N7BEPIrvIvqXUc681isp0XNT9_tzTP8V-ik,8865
194
- gw_certificate/tests/generic.py,sha256=C2tm5lalQlFyAF3OgA4qTkvJ8amYbxSjuh_jt4vtZfs,8416
195
- gw_certificate/tests/registration.py,sha256=TgfYyDGkT-HAC11dJIdwFJTMZjTESFZb30-Q6ZCkXek,16152
196
- gw_certificate/tests/throughput.py,sha256=vm1Oe4RVDHQZ2DOHpVtJOtdxN2ag6zg_2M4AhlGRkFk,11187
197
- gw_certificate/tests/uplink.py,sha256=9jAJV9wKh7iuexwzMsGjSw4ig2dQJ4dp8W8ZsWiCxWs,40020
198
- gw_certificate/tests/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
- gw_certificate/tests/static/connection_defines.py,sha256=RZbqvGNjUN-ST5378VZpleRB_b3_6IwME-j0CFnWmgE,309
200
- gw_certificate/tests/static/downlink_defines.py,sha256=gjzQff_70Rn8m6pmfGciFwEC7efYQGEM9yNwl-8zRCs,340
201
- gw_certificate/tests/static/generated_packet_table.py,sha256=HDESJ-VF41RiZRKmrPAPRXXgMVNXPzDCIgzq0v05CyY,17059
202
- gw_certificate/tests/static/packet_table.csv,sha256=dGPSheg-RHuShc8NE3SyhCBeNWxbelVBYxw2ayCB8j8,1882502
203
- gw_certificate/tests/static/references.py,sha256=vVVaoC_3nEdu2OMtfr_XKxZLvnJmbDeK2pEDFkAzNtU,384
204
- gw_certificate/tests/static/uplink_defines.py,sha256=PJGUpzr_mD4Z6xUKzpCR7JcD1n2rvWrNdyUYS0xQX4s,387
205
- wiliot_certificate-4.4.3.dist-info/licenses/LICENSE,sha256=OL5ajUNVx888yC2ogol0BKwPRLdQAF1noGuQ7WrYiAA,1068
206
- wiliot_certificate-4.4.3.dist-info/METADATA,sha256=7wq04MhsqRIKOT_j6p8m5JWCWcx_oyGjPXEM8MBZtCg,9292
207
- wiliot_certificate-4.4.3.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
208
- wiliot_certificate-4.4.3.dist-info/entry_points.txt,sha256=19YeTHY3PnN1wbi7BcgZB0zSgRrp9bvahIX-dIMX3Sg,127
209
- wiliot_certificate-4.4.3.dist-info/top_level.txt,sha256=wN_MwxdcfgPP5-WN6sRhmZnGXNbZmXalxwYdh3nb2RA,38
210
- wiliot_certificate-4.4.3.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- wlt-cert-brg = brg_certificate.brg_certificate_cli:main
3
- wlt-cert-gw = gw_certificate.gw_certificate_cli:main
@@ -1,3 +0,0 @@
1
- brg_certificate
2
- common
3
- gw_certificate
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes