wiliot-certificate 1.5.0a1__py3-none-any.whl → 1.5.2a1__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 (124) hide show
  1. brg_certificate/ag/energous_v0_defines.py +17 -17
  2. brg_certificate/ag/energous_v1_defines.py +17 -17
  3. brg_certificate/ag/energous_v2_defines.py +17 -17
  4. brg_certificate/ag/energous_v3_defines.py +17 -17
  5. brg_certificate/ag/energous_v4_defines.py +17 -17
  6. brg_certificate/ag/fanstel_lan_v0_defines.py +17 -17
  7. brg_certificate/ag/fanstel_lte_v0_defines.py +17 -17
  8. brg_certificate/ag/fanstel_wifi_v0_defines.py +17 -17
  9. brg_certificate/ag/minew_lte_v0_defines.py +17 -17
  10. brg_certificate/ag/wlt_cmd_if.html +3 -2
  11. brg_certificate/ag/wlt_types.html +0 -1
  12. brg_certificate/ag/wlt_types_ag.py +151 -152
  13. brg_certificate/brg_certificate.py +38 -7
  14. brg_certificate/brg_certificate_cli.py +19 -3
  15. brg_certificate/cert_common.py +92 -55
  16. brg_certificate/cert_config.py +6 -4
  17. brg_certificate/cert_data_sim.py +47 -7
  18. brg_certificate/cert_defines.py +20 -6
  19. brg_certificate/cert_gw_sim.py +10 -6
  20. brg_certificate/cert_mqtt.py +9 -6
  21. brg_certificate/cert_prints.py +14 -1
  22. brg_certificate/cert_protobuf.py +7 -7
  23. brg_certificate/cert_results.py +131 -84
  24. brg_certificate/cert_utils.py +13 -7
  25. brg_certificate/certificate_bcc_sanity_test_list.txt +40 -0
  26. brg_certificate/certificate_bcc_test_list.txt +50 -0
  27. brg_certificate/certificate_sanity_test_list.txt +12 -5
  28. brg_certificate/certificate_test_list.txt +16 -6
  29. brg_certificate/tests/calibration/interval_test/interval_test.json +4 -3
  30. brg_certificate/tests/calibration/output_power_test/output_power_test.json +8 -5
  31. brg_certificate/tests/calibration/pattern_test/pattern_test.json +7 -4
  32. brg_certificate/tests/calibration/pattern_test/pattern_test.py +25 -26
  33. brg_certificate/tests/datapath/aging_test/aging_test.json +19 -0
  34. brg_certificate/tests/datapath/aging_test/aging_test.py +142 -0
  35. brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json +10 -5
  36. brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py +12 -11
  37. brg_certificate/tests/datapath/output_power_test/output_power_test.json +7 -4
  38. brg_certificate/tests/datapath/output_power_test/output_power_test.py +2 -1
  39. brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +8 -5
  40. brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +6 -3
  41. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json +7 -4
  42. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py +6 -3
  43. brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json +7 -4
  44. brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py +4 -2
  45. brg_certificate/tests/datapath/pattern_test/pattern_test.json +8 -5
  46. brg_certificate/tests/datapath/pattern_test/pattern_test.py +2 -1
  47. brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +11 -5
  48. brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +12 -5
  49. brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +10 -4
  50. brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +11 -6
  51. brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json +10 -4
  52. brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py +11 -7
  53. brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +8 -4
  54. brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +7 -5
  55. brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.json +7 -4
  56. brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.py +7 -3
  57. brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +4 -5
  58. brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +107 -73
  59. brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +4 -5
  60. brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +128 -118
  61. brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json +15 -23
  62. brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py +104 -103
  63. brg_certificate/tests/datapath/stress_test/stress_test.json +15 -23
  64. brg_certificate/tests/datapath/stress_test/stress_test.py +104 -110
  65. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json +8 -4
  66. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py +7 -2
  67. brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json +8 -4
  68. brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py +8 -6
  69. brg_certificate/tests/edge_mgmt/actions_test/actions_test.json +4 -3
  70. brg_certificate/tests/edge_mgmt/actions_test/actions_test.py +2 -38
  71. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json +15 -8
  72. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json +14 -8
  73. brg_certificate/tests/edge_mgmt/leds_test/leds_test.json +11 -7
  74. brg_certificate/tests/edge_mgmt/leds_test/leds_test.py +25 -12
  75. brg_certificate/tests/edge_mgmt/ota_test/ota_test.json +11 -7
  76. brg_certificate/tests/edge_mgmt/ota_test/ota_test.py +48 -3
  77. brg_certificate/tests/edge_mgmt/{stat_test/stat_test.json → periodic_msgs_test/periodic_msgs_test.json} +5 -4
  78. brg_certificate/tests/edge_mgmt/{stat_test/stat_test.py → periodic_msgs_test/periodic_msgs_test.py} +4 -4
  79. brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json +8 -5
  80. brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py +2 -1
  81. brg_certificate/tests/energy2400/output_power_test/output_power_test.json +9 -6
  82. brg_certificate/tests/energy2400/output_power_test/output_power_test.py +2 -1
  83. brg_certificate/tests/energy2400/pattern_test/pattern_test.json +8 -5
  84. brg_certificate/tests/energy2400/pattern_test/pattern_test.py +2 -1
  85. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json +20 -0
  86. brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py +343 -0
  87. brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.json +20 -0
  88. brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.py +343 -0
  89. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json +14 -7
  90. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py +45 -57
  91. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +14 -7
  92. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +198 -125
  93. brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +7 -4
  94. brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +2 -1
  95. brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.json +13 -6
  96. brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.py +2 -1
  97. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json +14 -7
  98. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py +117 -124
  99. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json +7 -4
  100. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py +2 -1
  101. brg_certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.json +18 -0
  102. brg_certificate/tests/pwr_mgmt/pwr_mgmt_test/pwr_mgmt_test.py +84 -0
  103. brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json +21 -0
  104. brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py +306 -0
  105. brg_certificate/wltPb_pb2.py +15 -15
  106. brg_certificate/wltPb_pb2.pyi +8 -2
  107. brg_certificate/wlt_types.py +2 -1
  108. gw_certificate/cert_results.py +11 -4
  109. gw_certificate/gw_certificate.py +0 -2
  110. gw_certificate/gw_certificate_cli.py +3 -3
  111. gw_certificate/interface/uart_if.py +1 -1
  112. gw_certificate/tests/actions.py +7 -1
  113. gw_certificate/tests/registration.py +2 -1
  114. gw_certificate/tests/uplink.py +26 -35
  115. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info}/METADATA +46 -42
  116. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info}/RECORD +120 -112
  117. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info}/WHEEL +1 -1
  118. brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.json +0 -13
  119. brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.py +0 -76
  120. brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +0 -13
  121. brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +0 -398
  122. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info}/entry_points.txt +0 -0
  123. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info/licenses}/LICENSE +0 -0
  124. {wiliot_certificate-1.5.0a1.dist-info → wiliot_certificate-1.5.2a1.dist-info}/top_level.txt +0 -0
@@ -23,7 +23,6 @@ from gw_certificate.tests.static.generated_packet_table import CSV_NAME
23
23
  # HELPER DEFINES
24
24
  TABLE_SUFFIX = "Table"
25
25
  ERR_SUM_MISSING_PKTS = "Insufficient amount of packets were scanned & uploaded by the gateway. "
26
- ERR_SUM_INVALID_TS = "Invalid timestamps were uploaded by the gateway. "
27
26
  ERR_SUM_ONLY_1E = "Packets with length != '1E' were not uploaded. "
28
27
 
29
28
  # HELPER FUNCTIONS
@@ -62,7 +61,7 @@ class TimestampsHelper(PacketTableHelper):
62
61
  """
63
62
  return self.table.loc[self.table[ADV_TIMESTAMP].notna()]
64
63
 
65
- def validate_timestamps(self, received_pkts:list):
64
+ def validate_timestamps(self, received_pkts:list, has_si=False):
66
65
  packets_sent_df = self.get_advertised_entries().copy()
67
66
 
68
67
  received_df = pd.DataFrame(received_pkts)
@@ -77,9 +76,12 @@ class TimestampsHelper(PacketTableHelper):
77
76
 
78
77
  # Calculate adv_duration once
79
78
  def calculate_adv_duration(row):
80
- if pd.notna(row['duplication']) and pd.notna(row['time_delay']):
79
+ if pd.isna(row['duplication']) or pd.isna(row['time_delay']):
80
+ return DEFAULT_DELAY
81
+ elif has_si:
82
+ return row['duplication'] * row['time_delay'] * 2
83
+ else:
81
84
  return row['duplication'] * row['time_delay']
82
- return DEFAULT_DELAY
83
85
 
84
86
  packets_sent_df['adv_duration'] = packets_sent_df.apply(calculate_adv_duration, axis=1)
85
87
 
@@ -116,7 +118,7 @@ class TimestampsHelper(PacketTableHelper):
116
118
  def add_ts_errs_to_report(self, stage:GenericStage):
117
119
  for idx, ts_err in enumerate(self.ts_errors):
118
120
  stage.add_to_stage_report(ts_err)
119
- if idx == 2 and (len(self.ts_errors) - 1) > idx:
121
+ if idx == 1 and (len(self.ts_errors) - 1) > idx:
120
122
  stage.add_to_stage_report(f'Additional errors ({len(self.ts_errors) - 1 - idx}) are suppressed to avoid clutter')
121
123
  break
122
124
 
@@ -190,12 +192,6 @@ class GenericUplinkStage(GenericStage):
190
192
  self.stage_pass = num_pkts_received / num_pkts_sent * PERFECT_SCORE
191
193
  if self.stage_pass < self.pass_min:
192
194
  self.error_summary = ERR_SUM_MISSING_PKTS
193
- if self.ts_records.is_ts_error():
194
- if self.stage_pass > self.inconclusive_min:
195
- self.stage_pass = self.inconclusive_min
196
- self.error_summary = ERR_SUM_INVALID_TS
197
- else:
198
- self.error_summary += ERR_SUM_INVALID_TS
199
195
 
200
196
  self.add_report_header()
201
197
  self.add_to_stage_report(f'Number of unique packets sent: {num_pkts_sent}')
@@ -225,6 +221,7 @@ class GenericUplinkStage(GenericStage):
225
221
 
226
222
  return self.report
227
223
 
224
+
228
225
  class ManagementPacketStage(GenericUplinkStage):
229
226
  def __init__(self, **kwargs):
230
227
  self.stage_tooltip = "Simulates management advertisements from a single bridge. Expects the gateway to scan & upload them"
@@ -252,12 +249,6 @@ class ManagementPacketStage(GenericUplinkStage):
252
249
  self.stage_pass = num_pkts_received / num_pkts_sent * PERFECT_SCORE
253
250
  if self.stage_pass < self.pass_min:
254
251
  self.error_summary = ERR_SUM_MISSING_PKTS
255
- if self.ts_records.is_ts_error():
256
- if self.stage_pass > self.inconclusive_min:
257
- self.stage_pass = self.inconclusive_min
258
- self.error_summary = ERR_SUM_INVALID_TS
259
- else:
260
- self.error_summary += ERR_SUM_INVALID_TS
261
252
 
262
253
  self.add_report_header()
263
254
  self.add_to_stage_report(f'Number of unique packets sent: {num_pkts_sent}')
@@ -310,6 +301,7 @@ class SensorPacketStage(GenericUplinkStage):
310
301
  self.pkt_gen = BrgPktGenerator()
311
302
  self.stage_tooltip = "Simulates sensor packets advertisements. Expects the gateway to scan & upload them"
312
303
  self.error_summary = ERR_SUM_MISSING_PKTS
304
+ self.varying_len_sensors_count = 0
313
305
 
314
306
  def run(self):
315
307
 
@@ -327,6 +319,8 @@ class SensorPacketStage(GenericUplinkStage):
327
319
  self.local_pkts.append((row['si'], remove_pre_uuid(row['si']), row['duplication'], row['time_delay'], row['adva']))
328
320
  self.ble_sim.send_data_si_pair(data_packet=data, si_packet=si, duplicates=row['duplication'], delay=row['time_delay'])
329
321
  self.ts_records.set_adv_timestamp_current(data)
322
+ if row[ADVA_PAYLOAD][12:14] != '1E':
323
+ self.varying_len_sensors_count += 1
330
324
  time.sleep(5)
331
325
 
332
326
  def compare_local_mqtt(self):
@@ -357,7 +351,7 @@ class SensorPacketStage(GenericUplinkStage):
357
351
 
358
352
  def generate_stage_report(self):
359
353
  self.compare_local_mqtt()
360
- self.ts_records.validate_timestamps(self.mqtt_pkts)
354
+ self.ts_records.validate_timestamps(self.mqtt_pkts, has_si=True)
361
355
  num_pkts_sent = len(self.comparison)
362
356
  num_pkts_received = self.comparison['received'].eq(True).sum()
363
357
  pkt_id_pairs = self.comparison.groupby('pkt_id').filter(lambda x: x['received'].all() and len(x) == 2)
@@ -368,13 +362,6 @@ class SensorPacketStage(GenericUplinkStage):
368
362
  self.stage_pass = PERFECT_SCORE
369
363
  else:
370
364
  self.stage_pass = MINIMUM_SCORE
371
-
372
- if self.ts_records.is_ts_error():
373
- if self.stage_pass > self.inconclusive_min:
374
- self.stage_pass = self.inconclusive_min
375
- self.error_summary = ERR_SUM_INVALID_TS
376
- else:
377
- self.error_summary += ERR_SUM_INVALID_TS
378
365
 
379
366
  self.add_report_header()
380
367
  self.add_to_stage_report((f'Number of sensor packets sent: {int(num_pkts_sent / 2)}'))
@@ -386,16 +373,20 @@ class SensorPacketStage(GenericUplinkStage):
386
373
  self.add_to_stage_report('Packets not received:')
387
374
  self.add_to_stage_report(tabulate.tabulate(not_received_rep_cols, headers='keys', showindex=False))
388
375
 
389
- def only_varying_len_sensors_missed(not_received_df):
376
+ def all_varying_len_sensors_missed(not_received_df):
377
+ not_uploaded_count = 0
390
378
  for index, line in not_received_df.iterrows():
391
- if line[ADVA_PAYLOAD][12:14] == '1E':
392
- return False
393
- return True
379
+ if line[ADVA_PAYLOAD][12:14] != '1E':
380
+ not_uploaded_count += 1
381
+ if not_uploaded_count == self.varying_len_sensors_count:
382
+ return True
383
+ else:
384
+ return False
394
385
 
395
- if only_varying_len_sensors_missed(not_received):
386
+ if all_varying_len_sensors_missed(not_received):
396
387
  self.add_to_stage_report(f"Warning {ERR_SUM_ONLY_1E}")
397
- if self.score_pass():
398
- self.stage_pass = self.inconclusive_min
388
+ if not self.score_fail():
389
+ self.stage_pass = MINIMUM_SCORE
399
390
  self.error_summary = ERR_SUM_ONLY_1E
400
391
  else:
401
392
  self.error_summary += ERR_SUM_ONLY_1E
@@ -511,7 +502,8 @@ class SequentialSequenceIdStage(GenericUplinkStage):
511
502
  pkt_sequenceId = pkt['sequenceId']
512
503
  if pkt_sequenceId != required_sequenceId:
513
504
  if sequenceId_valid == True:
514
- report.append(f'SequenceId is not incremental. Expected sequenceId is {required_sequenceId} but the packet sequenceId is {pkt_sequenceId}')
505
+ report.append(f'SequenceId is not incremental.')
506
+ report.append(f'Received packet with sequenceId {pkt_sequenceId}, when the expected is {required_sequenceId}')
515
507
  self.stage_pass = MINIMUM_SCORE
516
508
  self.error_summary = self.error_summary + 'SequenceId is not incremental. '
517
509
  sequenceId_valid = False
@@ -524,7 +516,6 @@ class SequentialSequenceIdStage(GenericUplinkStage):
524
516
  is_sequenceId_incremental(idx=idx, message=message_body)
525
517
 
526
518
  self.add_report_header()
527
- self.add_to_stage_report(f"{'---SequenceId is incremental' if sequenceId_valid else '---SequenceId is NOT incremental'}")
528
519
  for line in report:
529
520
  self.add_to_stage_report(line)
530
521
  debug_print(self.report)
@@ -676,7 +667,7 @@ class GeolocationStage(GenericUplinkStage):
676
667
  self.add_to_stage_report(f'Number of unique locations received: {num_unique_locs}')
677
668
  # Export all stage data
678
669
  locations_df.to_csv(self.csv_path)
679
- self.add_to_stage_report(f'Stage data saved - {self.csv_path}')
670
+ self.add_to_stage_report(f'\nStage data saved - {self.csv_path}')
680
671
  if num_unique_locs > 0:
681
672
  fig.write_html(self.graph_html_path)
682
673
  debug_print(self.report)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: wiliot_certificate
3
- Version: 1.5.0a1
3
+ Version: 1.5.2a1
4
4
  Summary: A library for certifying Wiliot-compliant boards
5
5
  Author-email: Wiliot <support@wiliot.com>
6
6
  License: MIT License
@@ -50,13 +50,14 @@ Requires-Dist: statsmodels>=0.14.4
50
50
  Requires-Dist: pyserial>=3.5
51
51
  Requires-Dist: reportlab>=4.3.1
52
52
  Requires-Dist: google-api-python-client>=2.162.0
53
+ Dynamic: license-file
53
54
 
54
55
  # wiliot-certificate
55
56
 
56
57
  <!-- Description -->
57
58
  wiliot-certificate is a python library with tools used to test & certify boards and their compatibility with Wiliot's echosystem.
58
59
  This python package includes the following CLI utilities:
59
- - Gateway Certificate (`wlt-gw-certificate`)
60
+ - Gateway Certificate (`wlt-cert-gw`)
60
61
  - Bridge Certificate (`wlt-cert-brg`)
61
62
 
62
63
  ## Installing wiliot-certificate
@@ -78,27 +79,15 @@ Websocket Port: 80
78
79
 
79
80
  More information can be found at https://mqtt.eclipseprojects.io/.
80
81
 
81
- #### Connection Test
82
- Processes status packet sent by the GW to the MQTT Broker and validates it according to API Version.
83
-
84
- #### Uplink Test
85
- Simulates Wiliot MEL and validates that data is uploaded correctly to the cloud.
86
-
87
- #### Downlink Test
88
- Sends advertising actions (txPacket) via MQTT to the GW and validates their advertisements.
89
-
90
- #### Stress Test
91
- Increments time delays between packets to evaluate GW's capability in handling increasing packets per second rates.
92
-
93
82
  #### GW Certificate Release Notes:
94
- 1.4.0:
95
- - Released in a standalone wiliot-certificate package
83
+ Release:
84
+ - Standalone wiliot-certificate package
96
85
  - Python 3.13 support
97
86
  - Gw API version 205 support
98
87
  - Registration test added
99
88
  - Bridge OTA stage added under actions
100
89
  - Aggregation flag supported by StressTest
101
- - -update flag compatibility fix. Upgrades bootloader as well
90
+ - -update flag compatibility fix. Upgrades bootloader if needed
102
91
  - -actions flag to select specific actions to test
103
92
 
104
93
  ```
@@ -134,33 +123,48 @@ Websocket Port: 80
134
123
 
135
124
  More information can be found at https://mqtt.eclipseprojects.io/.
136
125
 
137
- #### XXX Test
138
- TEST EXPLANATION
139
-
140
126
  #### BRG Certificate Release Notes:
141
127
  1.3.0:
142
128
  - FIRST VERSION
143
129
 
144
-
145
130
  ```
146
- usage: wlt-cert-brg [-h] [-h] [-b BRG] [-b1 BRG1] --gw GW [--data {tags,sim}] [--port PORT] [--clean] [--tl TL] [--run RUN] [--drun DRUN] [--exit_on_test_failure] [--exit_on_param_failure] [--analyze_interference]
147
-
148
- Gateway Certificate - CLI Tool to test Wiliot BRGs
149
-
150
- required arguments:
151
- --gw, -g GW Gateway ID
152
- --port, -p PORT COM Port
153
- --brg, -b BRG Bridge ID
154
-
155
- optional arguments:
156
- --brg1, -b1 BRG1 Second bridge id to run on tests two bridges needed
157
- --data, -d {tags,sim} Choose if data generated from real tags or by simulation
158
- --port, -p PORT Enable UT using UART connection for Gateway Simulation or Data Simulation
159
- --clean Clean all logs
160
- --tl TL Test list file to use
161
- --run RUN String to filter tests to run
162
- --drun DRUN String to filter tests not to run
163
- --exit_on_test_failure Stop running the tests if a test failed
164
- --exit_on_param_failure Sets exit_on_param_failure mode to true in order to prevent tests from continuing iteration over all possibilities in case of failure
165
- --analyze_interference, -ai Analyze interference before tests start (relevant only for Gateway Simulator)
131
+ usage: brg_certificate_cli.py [-h] [--brg BRG] [--brg_cloud_connectivity BRG_CLOUD_CONNECTIVITY] [--brg1 BRG1] --gw GW [--data {tags,sim}] [--port PORT] [--clean] [--tl TL] [--run RUN]
132
+ [--drun DRUN] [--exit_on_test_failure] [--exit_on_param_failure] [--analyze_interference]
133
+
134
+ Bridge Certificate CLI
135
+
136
+ options:
137
+ -h, --help show this help message and exit
138
+ --brg, -b BRG Bridge id to run on the tests
139
+ --brg_cloud_connectivity, -bcc BRG_CLOUD_CONNECTIVITY
140
+ Bridge with cloud connectivity id to run on the tests
141
+ --brg1, -b1 BRG1 Second bridge id to run on tests two bridges needed
142
+ --gw, -g GW GW id to run on the test, SIM prefix is used for Gateway simulation
143
+ --data, -d {tags,sim}
144
+ Choose if data generated from real tags or by simulation
145
+ --port, -p PORT Enable UT using UART connection for Gateway Simulation or Data Simulation
146
+ --clean Clean all logs
147
+ --tl TL Test list file to use
148
+ --run RUN String to filter tests to run
149
+ --drun DRUN String to filter tests not to run
150
+ --exit_on_test_failure
151
+ Stop running the tests if a test failed
152
+ --exit_on_param_failure
153
+ Sets exit_on_param_failure mode to true in order to prevent tests from continuing iteration over all possibilities in case of failure
154
+ --analyze_interference, -ai
155
+ Analyze interference before tests start (relevant only for Gateway Simulator)
156
+
157
+ run examples:
158
+ Run command example with COM PORT connection:
159
+ wlt-cert-brg --gw SIM --brg <XXXXXXXXXXXX> --port <COM_PORT>
160
+ Run command example with remote GW connection:
161
+ wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX>
162
+ Run command example for running datapath module tests only:
163
+ wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX> --run datapath
164
+ Run command example with sanity test list:
165
+ wlt-cert-brg --gw <YYYYYYYYYYYY> --brg <XXXXXXXXXXXX> --tl certificate_sanity_test_list.txt
166
+ Run command example with COM PORT connection for bridge with cloud connectivity:
167
+ wlt-cert-brg --gw SIM --brg_cloud_connectivity <XXXXXXXXXXXX> --tl certificate_bcc_test_list.txt --port <COM_PORT>
168
+ Run command example with remote GW connection for bridge with cloud connectivity:
169
+ wlt-cert-brg --gw <YYYYYYYYYYYY> --brg_cloud_connectivity <XXXXXXXXXXXX> --tl certificate_bcc_test_list.txt
166
170
  ```
@@ -1,34 +1,36 @@
1
1
  brg_certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- brg_certificate/brg_certificate.py,sha256=dWH-FzEU0hWo5Z3spwxgDne5nAXCJlempaKubiDAHng,8018
3
- brg_certificate/brg_certificate_cli.py,sha256=7I-u9awOrAxPx0QuiHbo6rcZYme7OyNn9y5B1RG8Ffs,2650
4
- brg_certificate/cert_common.py,sha256=GOD8b4vNT7bgbzJN3aTbm0xc_VpcKKFQuqo2s_AYfpg,38753
5
- brg_certificate/cert_config.py,sha256=DyNrEgBE6Lrw8ZMknWPJ_fkRJfwqkFvVeGr1eXonmuA,19731
6
- brg_certificate/cert_data_sim.py,sha256=VgUiiDpTbdPB6wu3MOvVZ3Qi5k14nyKB2ceh1G17-iQ,8826
7
- brg_certificate/cert_defines.py,sha256=rH3u2qfW3KwriKiKnPdnmqC1jf8DE4FYQrWrIRhDc28,17839
8
- brg_certificate/cert_gw_sim.py,sha256=lzwJbamEN7x0fJ5sn5ADLiDmdjB5-LDrJ92NVi1XISs,12791
9
- brg_certificate/cert_mqtt.py,sha256=cDsraBLxi360vkbsF5w-kl0sXI4DH5zOENkXhlUg2mY,16681
10
- brg_certificate/cert_prints.py,sha256=jkcCrX-eZGAgtDuO83FbahdtT8WX5w_q43zKx-HdjIk,6619
11
- brg_certificate/cert_protobuf.py,sha256=VylrIpxzp0vr3fDneIfcKnGsk-iAiSZQr-QsnD7OqBk,3487
12
- brg_certificate/cert_results.py,sha256=4b2--hw4u7uOoRMhQARtW2WV6mPBsXOmMtA1Ff5OOcs,17040
13
- brg_certificate/cert_utils.py,sha256=dWzyyILx3aVOY8zMiYN12GTgoOSwnWJq-12gqds-7Rw,16078
14
- brg_certificate/certificate_sanity_test_list.txt,sha256=Y2JUH4qB85BJUPoiO1wx9fGiVarJTVGn_tobeqnyNXY,1880
15
- brg_certificate/certificate_test_list.txt,sha256=pwL7e7jWHI-p5VNfmxFKo52XUtzsPer0wMpdis1CcOA,2927
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=xzMEMINkVaZZre61X2uPGXW0uJnv-8CfrxSiZm0481c,39996
5
+ brg_certificate/cert_config.py,sha256=6Fl1QMyuwqfPDe5l04tlz7FUJFkvpQqFAKRgeBnemNg,19815
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=GU4oQf1NBrehhaQRPrOuv3ts3RUIzxitaCpxKxNJRu0,20870
13
+ brg_certificate/cert_utils.py,sha256=MMlm0EWLGUABy-SF6KJo55okM49YWzGdwzEgqt8mGlM,16379
14
+ brg_certificate/certificate_bcc_sanity_test_list.txt,sha256=SURuNOLuIO7xzh5KnMBYYzwMjZlcLqGaPLwBdqxCKbc,2281
15
+ brg_certificate/certificate_bcc_test_list.txt,sha256=8PiBFiKOROUZLNdoRs1j_7RwpX0-af9N5sv3i7iioE0,3625
16
+ brg_certificate/certificate_sanity_test_list.txt,sha256=Egv00zGNAWdFhzO4T1oUkmeLOSG35aHNfXSxH6DRd9g,2291
17
+ brg_certificate/certificate_test_list.txt,sha256=3ioq7mQtnyK4ou5U3GjnxnW6B9Qg3mVBRwJRURCkpJc,3728
16
18
  brg_certificate/restore_brg.py,sha256=rPV-Foa-mPHUSTdJq_LDNuoL6orMyevbulzRIW4GIHs,2341
17
- brg_certificate/wltPb_pb2.py,sha256=p3EPg_NNKiUG3LWR9MLsNQNhw4FNs4yrRrBxc7KBvPM,8458
18
- brg_certificate/wltPb_pb2.pyi,sha256=BVDEOOxaIdx5kg8dBv0gHKD7MjqzGrAO8O_onaDi3h8,11145
19
- brg_certificate/wlt_types.py,sha256=SDNli-14S0ZhI6RF5NZ56cLwafsSaiSvC2he-7XdPp4,5147
20
- brg_certificate/ag/energous_v0_defines.py,sha256=AN3hFsz8s9wuykn94tXH0CoRWoT_XSIkt3dGb__mBPY,64973
21
- brg_certificate/ag/energous_v1_defines.py,sha256=eB3m0TtiwyMcIxb_6rP_mGoJfYCeKp4clG8Jw1FDgDI,65183
22
- brg_certificate/ag/energous_v2_defines.py,sha256=AN3hFsz8s9wuykn94tXH0CoRWoT_XSIkt3dGb__mBPY,64973
23
- brg_certificate/ag/energous_v3_defines.py,sha256=AN3hFsz8s9wuykn94tXH0CoRWoT_XSIkt3dGb__mBPY,64973
24
- brg_certificate/ag/energous_v4_defines.py,sha256=AN3hFsz8s9wuykn94tXH0CoRWoT_XSIkt3dGb__mBPY,64973
25
- brg_certificate/ag/fanstel_lan_v0_defines.py,sha256=nzQVgW5yYX8vA8n65QqoqSY5_l2y2TGTuDwn4Db0rmk,64940
26
- brg_certificate/ag/fanstel_lte_v0_defines.py,sha256=nzQVgW5yYX8vA8n65QqoqSY5_l2y2TGTuDwn4Db0rmk,64940
27
- brg_certificate/ag/fanstel_wifi_v0_defines.py,sha256=nzQVgW5yYX8vA8n65QqoqSY5_l2y2TGTuDwn4Db0rmk,64940
28
- brg_certificate/ag/minew_lte_v0_defines.py,sha256=nzQVgW5yYX8vA8n65QqoqSY5_l2y2TGTuDwn4Db0rmk,64940
29
- brg_certificate/ag/wlt_cmd_if.html,sha256=sTGe6Y2rKpfm8gsHhCQ_nccIfCvPB8Z2bLCuKHMlA68,14329
30
- brg_certificate/ag/wlt_types.html,sha256=n-zCWVOT-8LaxAzgmnvTauBDjepgR0DFiysVCakoH38,370374
31
- brg_certificate/ag/wlt_types_ag.py,sha256=vDWVbF-4_L2bcN8po06Eb8218eGR93_5mEQE0umImlI,448891
19
+ brg_certificate/wltPb_pb2.py,sha256=sZKS4n3oz4EP4gLfzDvYiameKEZ6bHd9DmpARljZFG8,8686
20
+ brg_certificate/wltPb_pb2.pyi,sha256=sqsG_kjSix0qytU7qk06waTAJ8rhdHvK832zTC9sG-o,11445
21
+ brg_certificate/wlt_types.py,sha256=7pWm-56wDkq7HoMheBdvjUwbDS8suYTz13aEeAgIc6w,5166
22
+ brg_certificate/ag/energous_v0_defines.py,sha256=Y8rjaGb4yvjSB16wLckFCxfDDlowlbgpr7mu198ym1E,64401
23
+ brg_certificate/ag/energous_v1_defines.py,sha256=KMKvC0x1vVy-pgBMS0IBMnlnn6KWvihNf4VkGF48j94,64611
24
+ brg_certificate/ag/energous_v2_defines.py,sha256=Y8rjaGb4yvjSB16wLckFCxfDDlowlbgpr7mu198ym1E,64401
25
+ brg_certificate/ag/energous_v3_defines.py,sha256=Y8rjaGb4yvjSB16wLckFCxfDDlowlbgpr7mu198ym1E,64401
26
+ brg_certificate/ag/energous_v4_defines.py,sha256=Y8rjaGb4yvjSB16wLckFCxfDDlowlbgpr7mu198ym1E,64401
27
+ brg_certificate/ag/fanstel_lan_v0_defines.py,sha256=cnY1e4WjV1Suy7rrHtxSugg6nAgzxfRXifqprT8ZbNU,64368
28
+ brg_certificate/ag/fanstel_lte_v0_defines.py,sha256=cnY1e4WjV1Suy7rrHtxSugg6nAgzxfRXifqprT8ZbNU,64368
29
+ brg_certificate/ag/fanstel_wifi_v0_defines.py,sha256=cnY1e4WjV1Suy7rrHtxSugg6nAgzxfRXifqprT8ZbNU,64368
30
+ brg_certificate/ag/minew_lte_v0_defines.py,sha256=cnY1e4WjV1Suy7rrHtxSugg6nAgzxfRXifqprT8ZbNU,64368
31
+ brg_certificate/ag/wlt_cmd_if.html,sha256=qfwLhXB1zhOL1qVQs591B80FB0mbOeixHUNsNsdMNW4,14424
32
+ brg_certificate/ag/wlt_types.html,sha256=sgOJvE4FcSiyLUKy6ZKtKMbjfq1JmzVNHW3pMja1UBM,370291
33
+ brg_certificate/ag/wlt_types_ag.py,sha256=7ZWoTMORHqZ99GphRmnnQMZnTDbDoafL0hKvWZMBiaA,444848
32
34
  brg_certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json,sha256=Om8e0fpItgKegZxHJO1cumEy8Th-DfJ6Zkb_bI0zSwk,3133
33
35
  brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json,sha256=2qlRlwMPh1I9lrhtH4zFzMxS8axcJ8Ml1nDgqvmdSKU,17993
34
36
  brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json,sha256=WM0ziHGpucYRwTAB_zPp5EcmT19bmXvldEUfoZGOOoY,3005
@@ -49,85 +51,91 @@ brg_certificate/config/hivemq.json,sha256=nj61J4FaDeVopndiK-vAxlV4xw5d-EYnTIYtZh
49
51
  brg_certificate/config/mosquitto.json,sha256=Wd8Fj36GcZNdIKpXZQzx3wb8EmnTBDmOx1kA0Qgi0Ww,254
50
52
  brg_certificate/config/mosquitto.md,sha256=xU7q2-FpYYwxd6xE-6cl6j_ywc3120ZZnGG1ofl9peY,2494
51
53
  brg_certificate/config/wiliot-dev.json,sha256=J6O70nIJYk_qcnw6Hxf9TaKxcaG72p_dqAUpbbeCsCQ,288
52
- brg_certificate/tests/calibration/interval_test/interval_test.json,sha256=WfMonuJk7YnsHuiH82ztWxEF3kIWvRbaeAe9Leq9_tA,573
54
+ brg_certificate/tests/calibration/interval_test/interval_test.json,sha256=g2nHKXAcefdWGfY08mH86OkhjyD_9vur3k6phZd_0M0,594
53
55
  brg_certificate/tests/calibration/interval_test/interval_test.py,sha256=T_3fTGT94dI87uPRQstqRSCUMDcakcrKaNILt_XXmgw,1075
54
- brg_certificate/tests/calibration/output_power_test/output_power_test.json,sha256=9RcWdfKdCxVrYHLXiGqpqH-w4xegnOgyqRYPXNhLKuU,660
56
+ brg_certificate/tests/calibration/output_power_test/output_power_test.json,sha256=QWt6Ovhe5Z11LYWkxIyfPqEAKvKceyHikCHsstqUzQw,690
55
57
  brg_certificate/tests/calibration/output_power_test/output_power_test.py,sha256=DT_C8B8hVvRZVfYHJAxp9s_NmWXeBK742wR6_yI-RVM,1051
56
- brg_certificate/tests/calibration/pattern_test/pattern_test.json,sha256=PdUvyWQ6I6hDWs8X6FdylguQB1vkA8Mw8f_4E12zXxQ,869
57
- brg_certificate/tests/calibration/pattern_test/pattern_test.py,sha256=pDiPbjXENJmdmtAmfaWlF7skxfGFcmy39w_mMnpAcWk,3679
58
- brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.json,sha256=r4iD7msOj0iceLFQk1Ak4QeYYltFZwFoWbHxI6rxLiE,762
59
- brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.py,sha256=j4QClukQU4Nkeq2s5yrlw8RDy68F_HayAC1kzLTnAco,3671
60
- brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json,sha256=nA44EhMRmZPDvbqSNhKe3OYavrGNcphLdryDKm4JSt0,724
61
- brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py,sha256=Yfa8S_xwQDEhDa8qbRlh9RvMJinvVSTiIq_EgOSCs2c,3528
62
- brg_certificate/tests/datapath/output_power_test/output_power_test.json,sha256=p84OSz7o1wI-hge085yVN0n37GpW4okzDTXSjIEEPac,519
63
- brg_certificate/tests/datapath/output_power_test/output_power_test.py,sha256=Z22jT8sLT0ouHwySRMZYkY_WWETiOA6o5eSktOB7Brk,1055
64
- brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json,sha256=GQ595IegBarg5QhDGvL1TJeQgzPImFF2iH8kERgW87U,846
65
- brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py,sha256=3F_Rvp2gIAhmZD3KFO_jtjC1z6XTvnbhs_eiPDBB-Bc,2236
66
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json,sha256=yVWq-GkTIkKH4v3CagJ6zuiOzHa3616ee-k0IaEwzx8,793
67
- brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py,sha256=2RT1BvBdo25AI-MjMHzb297opjJZ4id6C0CrJ1dBlqQ,3533
68
- brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json,sha256=ftdOCs0E6KGIzlZybFNbWuS7gKf_XNvS-1Eb8MrzOag,822
69
- brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py,sha256=hlZZBVj-avQEXK9oSwM8EJYgHiYlnrbZwqTyzRCganU,2392
70
- brg_certificate/tests/datapath/pattern_test/pattern_test.json,sha256=f6sjBTXHAEskmgwy3n3M2t6LeJBmPI0f0PI_wNomPZQ,579
71
- brg_certificate/tests/datapath/pattern_test/pattern_test.py,sha256=kZOwM8aSQucvulbWeNEWlpmaulUgd996rdvMhhwRAdE,1072
72
- brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json,sha256=-NZ1zTzwix2DprW-1bhFnzfSvfqIYizlyjomAKaGwgM,1080
73
- brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py,sha256=Zt8VFJ7bbf0nhhnfQA3IM-easkCiqvfWUu9H4lpIC_8,2603
74
- brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json,sha256=4eYyXSgKC48pKlmaK8x6tQRl_IBqP1Yuisss4PDxofY,1035
75
- brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py,sha256=0Z2MqgZfPI2S6Eunb7LsnqhVCCHc7snqcLd7F3F1MIY,2711
76
- brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json,sha256=fEb7jW0V3mVBHqXL8d7EoVwrPJC26EbBh_LfWfeioXo,1041
77
- brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py,sha256=mMvM1QwJmSMtyHfb4VOu7nKBrmt_bnLCZOoJQo6NduQ,2713
78
- brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json,sha256=fvK4kQpkXmoZ35NjD-3JqP3SElUZQ8aJjMEMXBM0gwE,641
79
- brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py,sha256=yLIBJeszgV-xgCz8NFbZsfP0Nv3l6J6QF5MDRxDRspA,2997
80
- brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.json,sha256=-H2W69jssriEJQ80vtIkCgYNzAjzXgo0jLaBAYSRPeg,588
81
- brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.py,sha256=vHqo7uPQQU6cbUXYhnZw7ZJV5o-yd6L6t50XQPlN0Jk,1670
82
- brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json,sha256=EKiukV_VmrXKLCe-S1kDAcMbIkSX4sIOmyta8JsWGqk,1379
83
- brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py,sha256=nDTYQ9fQpIe41hylPF7FS5vShGZk2Ivw6xrFG5t_TwA,9429
84
- brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json,sha256=_tHlSNZPiLWtpx0yBSCwlHj-oiPahTpNXAr7xVM1V9k,1379
85
- brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py,sha256=2gKSvkoqAqSO8HaiCx084CTiAvsdrhGVcPQLQEKDtiI,10333
86
- brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json,sha256=BERc5yrdcaX_nITnhy8_0BtRNEel3ejjKn3i4O51vAE,1866
87
- brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py,sha256=8Bfwy7K0DjeCHmuxIOqd5PLV2jH73bkh0advSR6RqBU,11616
88
- brg_certificate/tests/datapath/stress_test/stress_test.json,sha256=BERc5yrdcaX_nITnhy8_0BtRNEel3ejjKn3i4O51vAE,1866
89
- brg_certificate/tests/datapath/stress_test/stress_test.py,sha256=qRyZZjdkIyY8COJzOUutKk4US-fGNcxjw9b6Z5pIJn8,12651
90
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json,sha256=QJPhd1Z-RcTrpanTdxCkPySWMzDpBxMGduJ9hjcXZo0,728
91
- brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py,sha256=7WI5xsHGVEyzwhv2qRhEpWiITJg1PBI-xP6J7MMb134,4061
92
- brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json,sha256=XxwXnVJowJIcmRqQiA9WUwnTRhdmteRfxgOzYqW3kdM,819
93
- brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py,sha256=R6_BF2fu7oOFppRC4TuFDICkkrgmj2Nob7R_MhHkInE,3416
94
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.json,sha256=sMQ7yxePbGjggx975G6fE94DAWHmbqQramL-oGj4XZg,680
95
- brg_certificate/tests/edge_mgmt/actions_test/actions_test.py,sha256=Z5MHwyDqbG0CU8ZlERus09zEc8nRTrNmbFXA3KjiUfQ,20888
96
- brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json,sha256=CFlCLKsuLh3t96BixWI6N8p8IgiJ30F4JS63KAvaox8,369
58
+ brg_certificate/tests/calibration/pattern_test/pattern_test.json,sha256=tjSUT52au2jRDYEORLgYy_45PXXyYKaT4b33xbs0P0k,1021
59
+ brg_certificate/tests/calibration/pattern_test/pattern_test.py,sha256=iAUyNWKVNOrwy2PpMARa_tkPXI7J5CFbjewTwRnfHQs,3835
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=fDBFHZYegxhPOxVNjHqq-leFt16aB8mgryzXNEb_SB4,5958
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=lpzY9S4vmyk7qhi1d8ifidfKkiV-CmMqrZYHyTFEcT4,3561
64
+ brg_certificate/tests/datapath/output_power_test/output_power_test.json,sha256=4Hgbl8VSC2NhWZrhikzNd6Zg8_DiKag1_Zo6ykFDwKA,696
65
+ brg_certificate/tests/datapath/output_power_test/output_power_test.py,sha256=mwBW-PTzXSXGBII_L3cukDGT8FiYlXVZv1Ajyd-yYlU,1057
66
+ brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json,sha256=ccPge-tSA0kyMOPlMIa41Y8RoMAQfSj_-qdQZ4LQYy4,947
67
+ brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py,sha256=hS-BFKVlzvWr98wR4DEJtvARzfmkjSGSQkdOmVwfXA8,2344
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=iONp-8YzsqfJUl6jKlCkHjaRYVzDw2J_3AVFDH_Z9O8,3658
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=13bcfoXvW0egnNi4vECMlKegsBiIv9If8u6WjiqFCIY,2436
72
+ brg_certificate/tests/datapath/pattern_test/pattern_test.json,sha256=_X6l1PiFwqpSSQfCfKPSbre-LLdh_7QltKcsJfSW32Q,758
73
+ brg_certificate/tests/datapath/pattern_test/pattern_test.py,sha256=dKLZKpOBbOLuywTRpKeraez1hzJO1MHQBOwTMVVKqvE,1074
74
+ brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json,sha256=rZdWwMHIrKzPw9dcgtwrQpILRTQDbgMwLAoLhu3c-Zg,1202
75
+ brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py,sha256=GVdFH6VW3ZTHfezw9Q7RF-YmvWWY066NT61EBwXi5Fk,2950
76
+ brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json,sha256=VWvLhVLMKP1aTtYjn6bXe_eSGDZ-bbto1AsvyQUp6e8,1156
77
+ brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py,sha256=W2buaO_R5hIcBuq7xxAW5xEz8eP0QkaSYcMqVdmBsfA,2975
78
+ brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json,sha256=7HmFCJnTWFzEDYKroXZrVDk54g6xn_UiYnAL2yOXMOo,1167
79
+ brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py,sha256=GARANPeCg6END9QRYl2UIY3jhG5RGWLHDNnrGyK-y_Q,2955
80
+ brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json,sha256=WJicb8op-0dS-qhbWGpxyjzpUdSYfycgYbFUN_ahItA,737
81
+ brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py,sha256=DCFE2MlnGVxuBlvdHPJtW-b9FkDbP81jctyT01VeLJM,3002
82
+ brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.json,sha256=vn9NJZq-zPxlGyX2lQU3uGSinwyCgQHkjuAZlwGBZkY,765
83
+ brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.py,sha256=dNgnVwLAAYWcgxKVGcwddVaFpVSJUWbg8YOXwpnvpMw,1687
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=UjanfhGpUv04c7IeZCagecLIQp-aYMefjE-FHv3dJzA,10593
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=QSR4PqYDdDAyy5YXf6YjdjSaluYV8EVEZUSlhnwGY0w,10673
88
+ brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json,sha256=KblEwjaP2DjewyTGpwZrMl3ocji6UP0fDhQhuxdMvno,1548
89
+ brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py,sha256=71YU2rfIAfuXm2JfKhLvDcIYLyPBmoxxhDDpHpQzWzU,10766
90
+ brg_certificate/tests/datapath/stress_test/stress_test.json,sha256=lcb06DxCGrRq4X_1EzwgaXtyr6C7yyridOg9EraHW2c,1548
91
+ brg_certificate/tests/datapath/stress_test/stress_test.py,sha256=gRobYu-CemJF8owQxDAZlFlyIpXKhi9IB_Ki4hVFWUw,10766
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=f0oO3F_RMvdnCwgiOIojfUnYpKM1tl-XElOmWLTOxcs,4077
94
+ brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json,sha256=tzkc4RRfUYUM926QpRYk3nrSwEfJFNmjXOeGTKRi4g0,968
95
+ brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py,sha256=3Qs3sIqa7AnycE9wWgw_RPiKM1Ghkc7wxvnNl1fg4QI,3495
96
+ brg_certificate/tests/edge_mgmt/actions_test/actions_test.json,sha256=Onsxqs4raXyq529PHJt3bPhX-tn7xTE6K_DhvOjNYHQ,714
97
+ brg_certificate/tests/edge_mgmt/actions_test/actions_test.py,sha256=jCWmqw86r-MaDFFCUVL0-zISFIUEG60Y8K2KHmEHNbc,18939
98
+ brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json,sha256=lYdqQJtgQwVIK4_pUD_abCt4bSHSqFpJQ1lWLcx9Z9I,1268
97
99
  brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py,sha256=7EuuffHBLfd5aXEkrtZBgPEPTx1xXyt1SSrjkBEOPmQ,4433
98
- brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json,sha256=CFlCLKsuLh3t96BixWI6N8p8IgiJ30F4JS63KAvaox8,369
100
+ brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json,sha256=lFLCF9RNZXYjmjeXOHTrasNAmsPF6uDXmfex93DrrSA,1158
99
101
  brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py,sha256=Yt-gRDubQNRH10lz-ne1Z1zeeuY29QMffiXSVOq5zc4,4026
100
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.json,sha256=pOEiV2_r46ySHuU_6EbaDZcONDeK1vZedzhpSHpL49o,343
101
- brg_certificate/tests/edge_mgmt/leds_test/leds_test.py,sha256=fy4oE4N6vRNM2_TgUFfRmZQCh-x8YExFVCXASQr6dUA,12369
102
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.json,sha256=ThJFOAjk9KCfkEtA7QdeDcEVlARGAHpWBAlMaR6bvVI,342
103
- brg_certificate/tests/edge_mgmt/ota_test/ota_test.py,sha256=LfApDPWPZ1tqGM1FDThi8Gf6JwIjMcz31-PIq3zeL4E,3269
104
- brg_certificate/tests/edge_mgmt/stat_test/stat_test.json,sha256=Vsai88Jwq2hhWoDEcr7xiEQsgYGUhLbQrDDiIs0bXIk,541
105
- brg_certificate/tests/edge_mgmt/stat_test/stat_test.py,sha256=_lXS1QZvYMtppeGZLx4UCiofXGjadmXHv6PC4BrhTiU,1942
106
- brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json,sha256=WauJYHbGEBhFBhgYAwB3sn1jyHjz33R_JYzHTn4q2zc,508
107
- brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py,sha256=0NUMrEiS40NopBYtVsJa4V08A0Eb1savB34wTkUuARQ,1060
108
- brg_certificate/tests/energy2400/output_power_test/output_power_test.json,sha256=ZN9FrjGGiyTp9gBJpN3INgy8OWerHbQPfOQYpVC8EGg,658
109
- brg_certificate/tests/energy2400/output_power_test/output_power_test.py,sha256=VoDp85wvCNKTuBE_TmIptJ11FGhRkB5LLuZu_3-xk7c,1063
110
- brg_certificate/tests/energy2400/pattern_test/pattern_test.json,sha256=fcW7zrTC69vwGwUcMdWg8KiV5yKFkERq4TmTgJXd8dk,694
111
- brg_certificate/tests/energy2400/pattern_test/pattern_test.py,sha256=dbfLwOlZmv-mfetQlggJkoy9bjfIPUbGzymJdDJcLGY,1081
112
- brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json,sha256=G_1JU27zdSWOJ0RXYvjOmF1UqREXwodywGmFIgYXPjs,417
113
- brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py,sha256=qI9duBcBRlyOxhWmvELq2UNZ73JYR9cST5cAmdKtjFs,27038
114
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json,sha256=_c7vEnMuj2qg658ftvyROLQkcWzhYNrppZs9jLtwe2o,380
115
- brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py,sha256=3Mx6lvsRmKVlGfXGWImkTL16A1qMaTBVnRlIYqlw-w0,9000
116
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json,sha256=gcHG29hIMlOJ2TFF5h5EZ0WN9HyngQfsVPg_RngerG0,470
117
- brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py,sha256=tKtqvRY6sktp7z3yOnkUyrmCzpAUNzRCF0jJv-cJ5b4,16048
118
- brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json,sha256=yx5OSyNjXXG1AyZmQ7dArbCUlAu6IOrG5q7asqZFdwQ,535
119
- brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py,sha256=5h912UqK_Qg22n8l2epB7JF27IB4hKDf35dFk8j7nI8,1080
120
- brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.json,sha256=anyqIlBTW4725Y4N4FkMYohgp8uXwB0HDgnfgHziC0g,899
121
- brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.py,sha256=9nIbiVr240Zj2_JlpwmNxw8YV5QCeZM8lJh-sQcmuUw,1040
122
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json,sha256=FrVUTTXMa7kLr_qaHSniVPUCV5-GKgiDIGWo8CaXtIY,372
123
- brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py,sha256=X6pJ1eENkthN6FOFWIBZEBK5JeXjUneeaEDyM2fWEz0,26748
124
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json,sha256=G3liMtVsDrhZ4Erh3HGWEzm9sSDYCaQhKX8gEBffLNI,554
125
- brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py,sha256=1cMvI3u_GbKuFhXutqEqXaE4CjhYCCXGlSqOs5mLmSQ,1130
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=542lbdC6VhIZwi3POm_qody_GDs6AmFigfMianIXZ70,12926
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=qNqVWboeLvjEsmqpGqLPNl7qNdepoJcL9MnWSykatnQ,684
109
+ brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py,sha256=-6xD62fea6YJiz-i5UzClOmlNsRxutOcxoduh0az6b0,1062
110
+ brg_certificate/tests/energy2400/output_power_test/output_power_test.json,sha256=452r2nrI4b5YCTemhQxhO2QYf-QEy5_N1xv5UHHQduY,699
111
+ brg_certificate/tests/energy2400/output_power_test/output_power_test.py,sha256=7VecRCR7sz4-i9GEMU44yKum8_i2MRpjLNb1oG4lEOs,1065
112
+ brg_certificate/tests/energy2400/pattern_test/pattern_test.json,sha256=xZLpZnDZDohZeG4_Sy1vx0MR-VHoKHAPWtFZdDSWSwI,866
113
+ brg_certificate/tests/energy2400/pattern_test/pattern_test.py,sha256=tmi_7KEPq2JB9E0pRjTBF7XanhRwYuftJsnnPUKfkco,1083
114
+ brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.json,sha256=DeB9TLGtr-3OIwNRqCJCxPl_TP__7AMVacuNeF8GC4M,1409
115
+ brg_certificate/tests/energy2400/signal_indicator_ble5_10_250k_test/signal_indicator_ble5_10_250k_test.py,sha256=sw1YKCTW4Lr-z-LO5i2Zj3f1wnsLw2SPZlhZQDm5JH0,21178
116
+ brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.json,sha256=GJ9NJwcDTuH4FT0aDSQPYqtcUdlGsPvPga7J_UJUEJ0,1403
117
+ brg_certificate/tests/energy2400/signal_indicator_ble5_10_500k_test/signal_indicator_ble5_10_500k_test.py,sha256=12jPuCBitnCyMkGXKmjgsl64kza8v49kiUoWLugdqEk,21178
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=BElluG9ftRkA8mbU0tbS4yl5UfJuyZvgAeT_QM46gGU,7905
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=CM6CFV8htBmHNERKRKiO7XoTqnHkugjpdyVDTBEbYws,19015
122
+ brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json,sha256=F_FFiXMlrUboMp25JZLxGnfHf70kbHAuHcqw3DADv7Q,713
123
+ brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py,sha256=idBW1ymtdYeqOih1gZPeKU90hpqvUrTYlVmtfM8imxk,1082
124
+ brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.json,sha256=982h0NXKuWBPBrZ_IN6L_p-07jX5D1srcOrwKo44nQk,1183
125
+ brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.py,sha256=nVeNCQnM3FKXzUDryl3x8SUXucDdsVANbuBWG6DhF_k,1042
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=z-13k3BwBFZoUTw8kw5QE3mlrrBu8qlGuS1xD1KD74o,26151
128
+ brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json,sha256=2LuVIAus3DfDkJhLjPf4VeGW6s18SSC4NGiktUDQWwk,746
129
+ brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py,sha256=Btq3_Wx5Q5GA-MTpF6SYbXIM1htQmKxvkZ-IN7kvjHI,1132
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=2t2Y3OsfIqOyYqfN-R8D6cQof2OKpgMSKdUQ4y8j-cA,3790
132
+ brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.json,sha256=pDn-FPg2XpDY07y8SLBtizUXevbhhR15To8k_XGgtmE,1864
133
+ brg_certificate/tests/sensors/ext_sensor_test/ext_sensor_test.py,sha256=QlIEdi0wtrSJeWQlVb0SqjFJN7D3HqTa9SqN7F2Gz28,13021
126
134
  common/wlt_logo.png,sha256=21DEhCEOOBU7Zt7ocwVIKU_CKUoHXScc3ej5VAzVsjM,132154
127
135
  gw_certificate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
- gw_certificate/cert_results.py,sha256=DzE41XZ0Xlp6ZG36XWRMlwuIsINjoEp56WybT7QcsGY,8349
129
- gw_certificate/gw_certificate.py,sha256=BYdXcxC5VWST-JVjAtS8riQXQQrUHlDxPTq-ITVl0uE,6903
130
- gw_certificate/gw_certificate_cli.py,sha256=CuVW04d2SzLKjGJYIUDXSmTsmXc2zIGz6YbjW0zbDW0,4677
136
+ gw_certificate/cert_results.py,sha256=y299oQ3TW4xYp0aM20txqvt7ufsUXSunqg2HN3M5emQ,8856
137
+ gw_certificate/gw_certificate.py,sha256=lPpKDnObS8P8UMmMk7tuNhbHeQ2DHmsGJ1xw9-mqtI0,6781
138
+ gw_certificate/gw_certificate_cli.py,sha256=VkdnksioNwSLcPdvRtreVw8f8bE9zDVwYIXY-3VUsGI,4720
131
139
  gw_certificate/ag/ut_defines.py,sha256=HgrljTmPpKyxj6zYbnrLz1oVdSiAI4voG24d5diSQXc,16892
132
140
  gw_certificate/ag/wlt_types.py,sha256=WFiRPs0E0fN5f-9a9l0y8zjDNAR4Xfmon2k8n7rqODk,3637
133
141
  gw_certificate/ag/wlt_types_ag.py,sha256=xEk9_8m12x0_Tu8zeTV_7v6OY52dWdENHnjM61re-5I,246870
@@ -170,21 +178,21 @@ gw_certificate/interface/nrfutil-linux,sha256=9Fzy9VLSzL5dwEWh4HJUFdfmXH69gTrUVV
170
178
  gw_certificate/interface/nrfutil-mac,sha256=YG-iPLwnYUFjwYriqaGaFtYuIj-0T4TkeSWkJ638HWQ,15839744
171
179
  gw_certificate/interface/nrfutil.exe,sha256=_uOu7RhDpL_8CCdHzqYNwHKSnrNuZ9Ysij_XRx4NyS0,16155851
172
180
  gw_certificate/interface/pkt_generator.py,sha256=pBl8lihLSgVRYaPqz0iazSwg-JkZML5-zhJ7cVo2g88,24029
173
- gw_certificate/interface/uart_if.py,sha256=Mbb_5IBwYx4AxSyrfIBL8ZV_DUZSGTkLqip9aXu1jmA,9662
181
+ gw_certificate/interface/uart_if.py,sha256=ABWJ1V52SvSfmsnxa3qB1VqJrtye_CYEL3LtO_jKqWw,9669
174
182
  gw_certificate/interface/uart_ports.py,sha256=HOIdrkr8OtALhoorT51k_tvSh6VYholR2ey4_WwcIAk,547
175
183
  gw_certificate/templates/results.html,sha256=w3kqslWDpHb1oYKSbY10RMDZe9HeI-O-GRP15oQIijA,12694
176
184
  gw_certificate/templates/stage.html,sha256=o89N0DWCIs2foA9YzommBZ09EPPN7lytiEsHoXD6fWU,1009
177
185
  gw_certificate/templates/table.html,sha256=PPUf0St1OPT0fB_6OK0SQlsRST-brUJ99x9-Rxwan1Y,201
178
186
  gw_certificate/templates/test.html,sha256=lpwibyrmGXNyNxpxNbQNoT2b5oCq5WHUYZrF0oDnLSA,2062
179
187
  gw_certificate/tests/__init__.py,sha256=6XWYuJ1urHGCUTPQ6bbn25lDd32ZyB2dIDr2A_mkvTg,468
180
- gw_certificate/tests/actions.py,sha256=IgCRpcrlZu3SleEyuG75r8EJUIKAaAuiKQ8iIvnPUa8,12563
188
+ gw_certificate/tests/actions.py,sha256=h4Q9Nz6gnU7eX71wvOP_qi8FAzjpoLuNLHlA6PmAuPw,13062
181
189
  gw_certificate/tests/bad_crc_to_PER_quantization.csv,sha256=2V1_7HV7pKEKddA429rp4tTn-je9G3Xi2tMvDhqvGhc,357
182
190
  gw_certificate/tests/connection.py,sha256=6UvcOfNBOMFY1ICJc9-MtTKMtpsihrBtO-1nfRkbqZI,9581
183
191
  gw_certificate/tests/downlink.py,sha256=RhgOZgyOhwwbj_gZziRlzOENgqT6fc00T7fCLaj2Igo,8823
184
192
  gw_certificate/tests/generic.py,sha256=SQds-xr074q79RpTxRjAg-d4_OMVCpyzhaBlwJ6Ulrg,8349
185
- gw_certificate/tests/registration.py,sha256=UvTCL_gZthoP6rtKcDDlxA7JydEFQGaIZAae94f3Svg,16096
193
+ gw_certificate/tests/registration.py,sha256=KJtdugD7WkBqHBZz4XNBd22BxyLTUZacsgVgDvIECpc,16149
186
194
  gw_certificate/tests/throughput.py,sha256=wYaeyHLUleS1cTpsapnBb9fOQP9qBes5OItIHQDtFDg,11103
187
- gw_certificate/tests/uplink.py,sha256=2CsNLeDV4xMvkQsPZSY4ItxhrCLX0Zd5C1xr488xFdA,33163
195
+ gw_certificate/tests/uplink.py,sha256=ADCZOuCrDZqoSQ3ozcQKZRSzpVh3HIxrvIpi2wEJvGo,32600
188
196
  gw_certificate/tests/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
197
  gw_certificate/tests/static/connection_defines.py,sha256=RZbqvGNjUN-ST5378VZpleRB_b3_6IwME-j0CFnWmgE,309
190
198
  gw_certificate/tests/static/downlink_defines.py,sha256=gjzQff_70Rn8m6pmfGciFwEC7efYQGEM9yNwl-8zRCs,340
@@ -192,9 +200,9 @@ gw_certificate/tests/static/generated_packet_table.py,sha256=er-hcv6hfJB2TVDUILV
192
200
  gw_certificate/tests/static/packet_table.csv,sha256=ZnM6-D_67pDdlo4UW35kAfZi2-XpM0UvCh-P1YBT8u0,3938393
193
201
  gw_certificate/tests/static/references.py,sha256=vVVaoC_3nEdu2OMtfr_XKxZLvnJmbDeK2pEDFkAzNtU,384
194
202
  gw_certificate/tests/static/uplink_defines.py,sha256=bNcCOYRuKLhCYjv-n6rJ4PM8YpZOg4h4Kt6PBhReZf4,354
195
- wiliot_certificate-1.5.0a1.dist-info/LICENSE,sha256=OL5ajUNVx888yC2ogol0BKwPRLdQAF1noGuQ7WrYiAA,1068
196
- wiliot_certificate-1.5.0a1.dist-info/METADATA,sha256=UKSKALwZicB9Tfq6UGjq1xDVkPzItkfqYt5G09k7sgM,6767
197
- wiliot_certificate-1.5.0a1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
198
- wiliot_certificate-1.5.0a1.dist-info/entry_points.txt,sha256=19YeTHY3PnN1wbi7BcgZB0zSgRrp9bvahIX-dIMX3Sg,127
199
- wiliot_certificate-1.5.0a1.dist-info/top_level.txt,sha256=wN_MwxdcfgPP5-WN6sRhmZnGXNbZmXalxwYdh3nb2RA,38
200
- wiliot_certificate-1.5.0a1.dist-info/RECORD,,
203
+ wiliot_certificate-1.5.2a1.dist-info/licenses/LICENSE,sha256=OL5ajUNVx888yC2ogol0BKwPRLdQAF1noGuQ7WrYiAA,1068
204
+ wiliot_certificate-1.5.2a1.dist-info/METADATA,sha256=adckm1TWkRlVGhFru98cjfr0NcMdXdsP-s7JoFJ-sPE,7307
205
+ wiliot_certificate-1.5.2a1.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
206
+ wiliot_certificate-1.5.2a1.dist-info/entry_points.txt,sha256=19YeTHY3PnN1wbi7BcgZB0zSgRrp9bvahIX-dIMX3Sg,127
207
+ wiliot_certificate-1.5.2a1.dist-info/top_level.txt,sha256=wN_MwxdcfgPP5-WN6sRhmZnGXNbZmXalxwYdh3nb2RA,38
208
+ wiliot_certificate-1.5.2a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,13 +0,0 @@
1
- {
2
- "name": "adaptive_pacer_algo_test",
3
- "module": "datapath",
4
- "purpose": "Test the adaptive pacer algorithm",
5
- "documentaion": "<TEST_DOCUMENTATION_LINK>",
6
- "initialCondition": "Bridge configured to defaults",
7
- "procedure": ["Test prolog", "Turn on adaptive pacer and configure bridge to encourage adaptive pacer algorithm activation", "Wait for tx repetition algorithm to work and then activate pacing algorithm", "Check effective pacer incrementation is stable", "Test actual tags pacing interval", "Test epilog and revert to defaults"],
8
- "expectedOutcome": "All configurations completed successfully and adaptive pacing works as expected",
9
- "mandatory": 0,
10
- "multiBridgeTest": 0,
11
- "gwOnlyTest": 0,
12
- "allSupportedValues": []
13
- }