wiliot-certificate 1.3.0a1__py3-none-any.whl → 1.4.0a2__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 (184) hide show
  1. brg_certificate/__init__.py +0 -0
  2. brg_certificate/ag/energous_v0_defines.py +925 -0
  3. brg_certificate/ag/energous_v1_defines.py +931 -0
  4. brg_certificate/ag/energous_v2_defines.py +925 -0
  5. brg_certificate/ag/energous_v3_defines.py +925 -0
  6. brg_certificate/ag/energous_v4_defines.py +925 -0
  7. brg_certificate/ag/fanstel_lan_v0_defines.py +925 -0
  8. brg_certificate/ag/fanstel_lte_v0_defines.py +925 -0
  9. brg_certificate/ag/fanstel_wifi_v0_defines.py +925 -0
  10. brg_certificate/ag/minew_lte_v0_defines.py +925 -0
  11. brg_certificate/ag/wlt_cmd_if.html +102 -0
  12. brg_certificate/ag/wlt_types.html +6114 -0
  13. brg_certificate/ag/wlt_types_ag.py +7840 -0
  14. brg_certificate/ag/wlt_types_ag_jsons/brg2brg_ota.json +142 -0
  15. brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb.json +785 -0
  16. brg_certificate/ag/wlt_types_ag_jsons/brg2gw_hb_sleep.json +139 -0
  17. brg_certificate/ag/wlt_types_ag_jsons/calibration.json +394 -0
  18. brg_certificate/ag/wlt_types_ag_jsons/custom.json +515 -0
  19. brg_certificate/ag/wlt_types_ag_jsons/datapath.json +672 -0
  20. brg_certificate/ag/wlt_types_ag_jsons/energy2400.json +550 -0
  21. brg_certificate/ag/wlt_types_ag_jsons/energySub1g.json +595 -0
  22. brg_certificate/ag/wlt_types_ag_jsons/externalSensor.json +598 -0
  23. brg_certificate/ag/wlt_types_ag_jsons/interface.json +938 -0
  24. brg_certificate/ag/wlt_types_ag_jsons/powerManagement.json +1234 -0
  25. brg_certificate/ag/wlt_types_ag_jsons/side_info_sensor.json +105 -0
  26. brg_certificate/ag/wlt_types_ag_jsons/signal_indicator_data.json +77 -0
  27. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_ext_pkt.json +61 -0
  28. brg_certificate/ag/wlt_types_ag_jsons/unified_echo_pkt.json +110 -0
  29. brg_certificate/brg_certificate.py +191 -0
  30. brg_certificate/brg_certificate_cli.py +47 -0
  31. brg_certificate/cert_common.py +828 -0
  32. brg_certificate/cert_config.py +395 -0
  33. brg_certificate/cert_data_sim.py +188 -0
  34. brg_certificate/cert_defines.py +337 -0
  35. brg_certificate/cert_gw_sim.py +285 -0
  36. brg_certificate/cert_mqtt.py +373 -0
  37. brg_certificate/cert_prints.py +181 -0
  38. brg_certificate/cert_protobuf.py +88 -0
  39. brg_certificate/cert_results.py +300 -0
  40. brg_certificate/cert_utils.py +358 -0
  41. brg_certificate/certificate_sanity_test_list.txt +36 -0
  42. brg_certificate/certificate_test_list.txt +43 -0
  43. brg_certificate/config/eclipse.json +10 -0
  44. brg_certificate/config/hivemq.json +10 -0
  45. brg_certificate/config/mosquitto.json +10 -0
  46. brg_certificate/config/mosquitto.md +95 -0
  47. brg_certificate/config/wiliot-dev.json +10 -0
  48. brg_certificate/restore_brg.py +59 -0
  49. brg_certificate/tests/calibration/interval_test/interval_test.json +13 -0
  50. brg_certificate/tests/calibration/interval_test/interval_test.py +28 -0
  51. brg_certificate/tests/calibration/output_power_test/output_power_test.json +13 -0
  52. brg_certificate/tests/calibration/output_power_test/output_power_test.py +28 -0
  53. brg_certificate/tests/calibration/pattern_test/pattern_test.json +13 -0
  54. brg_certificate/tests/calibration/pattern_test/pattern_test.py +70 -0
  55. brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.json +13 -0
  56. brg_certificate/tests/datapath/adaptive_pacer_algo_test/adaptive_pacer_algo_test.py +76 -0
  57. brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.json +13 -0
  58. brg_certificate/tests/datapath/num_of_tags_test/num_of_tags_test.py +83 -0
  59. brg_certificate/tests/datapath/output_power_test/output_power_test.json +13 -0
  60. brg_certificate/tests/datapath/output_power_test/output_power_test.py +27 -0
  61. brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.json +13 -0
  62. brg_certificate/tests/datapath/pacer_interval_ble5_test/pacer_interval_ble5_test.py +43 -0
  63. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.json +13 -0
  64. brg_certificate/tests/datapath/pacer_interval_tags_count_test/pacer_interval_tags_count_test.py +63 -0
  65. brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.json +13 -0
  66. brg_certificate/tests/datapath/pacer_interval_test/pacer_interval_test.py +50 -0
  67. brg_certificate/tests/datapath/pattern_test/pattern_test.json +13 -0
  68. brg_certificate/tests/datapath/pattern_test/pattern_test.py +28 -0
  69. brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.json +13 -0
  70. brg_certificate/tests/datapath/pkt_filter_ble5_test/pkt_filter_ble5_test.py +51 -0
  71. brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.json +13 -0
  72. brg_certificate/tests/datapath/pkt_filter_gen3_test/pkt_filter_gen3_test.py +54 -0
  73. brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.json +13 -0
  74. brg_certificate/tests/datapath/pkt_filter_test/pkt_filter_test.py +55 -0
  75. brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.json +13 -0
  76. brg_certificate/tests/datapath/rssi_threshold_test/rssi_threshold_test.py +73 -0
  77. brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.json +13 -0
  78. brg_certificate/tests/datapath/rx_channel_test/rx_channel_test.py +41 -0
  79. brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.json +21 -0
  80. brg_certificate/tests/datapath/rx_rate_gen2_test/rx_rate_gen2_test.py +184 -0
  81. brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.json +21 -0
  82. brg_certificate/tests/datapath/rx_rate_gen3_test/rx_rate_gen3_test.py +210 -0
  83. brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.json +30 -0
  84. brg_certificate/tests/datapath/stress_gen3_test/stress_gen3_test.py +203 -0
  85. brg_certificate/tests/datapath/stress_test/stress_test.json +30 -0
  86. brg_certificate/tests/datapath/stress_test/stress_test.py +210 -0
  87. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.json +13 -0
  88. brg_certificate/tests/datapath/tx_repetition_algo_test/tx_repetition_algo_test.py +113 -0
  89. brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.json +13 -0
  90. brg_certificate/tests/datapath/tx_repetition_test/tx_repetition_test.py +79 -0
  91. brg_certificate/tests/edge_mgmt/actions_test/actions_test.json +13 -0
  92. brg_certificate/tests/edge_mgmt/actions_test/actions_test.py +432 -0
  93. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.json +13 -0
  94. brg_certificate/tests/edge_mgmt/brg2brg_ota_ble5_test/brg2brg_ota_ble5_test.py +94 -0
  95. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.json +13 -0
  96. brg_certificate/tests/edge_mgmt/brg2brg_ota_test/brg2brg_ota_test.py +87 -0
  97. brg_certificate/tests/edge_mgmt/leds_test/leds_test.json +13 -0
  98. brg_certificate/tests/edge_mgmt/leds_test/leds_test.py +210 -0
  99. brg_certificate/tests/edge_mgmt/ota_test/ota_test.json +13 -0
  100. brg_certificate/tests/edge_mgmt/ota_test/ota_test.py +83 -0
  101. brg_certificate/tests/edge_mgmt/stat_test/stat_test.json +13 -0
  102. brg_certificate/tests/edge_mgmt/stat_test/stat_test.py +48 -0
  103. brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.json +13 -0
  104. brg_certificate/tests/energy2400/duty_cycle_test/duty_cycle_test.py +26 -0
  105. brg_certificate/tests/energy2400/output_power_test/output_power_test.json +13 -0
  106. brg_certificate/tests/energy2400/output_power_test/output_power_test.py +27 -0
  107. brg_certificate/tests/energy2400/pattern_test/pattern_test.json +13 -0
  108. brg_certificate/tests/energy2400/pattern_test/pattern_test.py +28 -0
  109. brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.json +13 -0
  110. brg_certificate/tests/energy2400/signal_indicator_ble5_test/signal_indicator_ble5_test.py +398 -0
  111. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.json +13 -0
  112. brg_certificate/tests/energy2400/signal_indicator_sub1g_2_4_test/signal_indicator_sub1g_2_4_test.py +153 -0
  113. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.json +13 -0
  114. brg_certificate/tests/energy2400/signal_indicator_test/signal_indicator_test.py +264 -0
  115. brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.json +13 -0
  116. brg_certificate/tests/energy_sub1g/duty_cycle_test/duty_cycle_test.py +27 -0
  117. brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.json +13 -0
  118. brg_certificate/tests/energy_sub1g/pattern_test/pattern_test.py +26 -0
  119. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.json +13 -0
  120. brg_certificate/tests/energy_sub1g/signal_indicator_functionality_test/signal_indicator_functionality_test.py +397 -0
  121. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.json +13 -0
  122. brg_certificate/tests/energy_sub1g/signal_indicator_test/signal_indicator_test.py +27 -0
  123. brg_certificate/wltPb_pb2.py +72 -0
  124. brg_certificate/wltPb_pb2.pyi +227 -0
  125. brg_certificate/wlt_types.py +114 -0
  126. gw_certificate/api/extended_api.py +7 -1531
  127. gw_certificate/api_if/200/data.json +106 -0
  128. gw_certificate/api_if/200/logs.json +12 -0
  129. gw_certificate/api_if/200/status.json +47 -0
  130. gw_certificate/api_if/201/data.json +98 -0
  131. gw_certificate/api_if/201/logs.json +12 -0
  132. gw_certificate/api_if/201/status.json +53 -0
  133. gw_certificate/api_if/202/data.json +83 -0
  134. gw_certificate/api_if/202/logs.json +12 -0
  135. gw_certificate/api_if/202/status.json +60 -0
  136. gw_certificate/api_if/203/data.json +85 -0
  137. gw_certificate/api_if/203/logs.json +12 -0
  138. gw_certificate/api_if/203/status.json +63 -0
  139. gw_certificate/api_if/204/data.json +85 -0
  140. gw_certificate/api_if/204/logs.json +12 -0
  141. gw_certificate/api_if/204/status.json +63 -0
  142. gw_certificate/api_if/205/data.json +85 -0
  143. gw_certificate/api_if/205/logs.json +12 -0
  144. gw_certificate/api_if/205/status.json +63 -0
  145. gw_certificate/api_if/api_validation.py +0 -2
  146. gw_certificate/common/analysis_data_bricks.py +18 -1413
  147. gw_certificate/common/debug.py +0 -21
  148. gw_certificate/common/utils.py +1 -212
  149. gw_certificate/common/utils_defines.py +0 -87
  150. gw_certificate/gw_certificate.py +9 -7
  151. gw_certificate/gw_certificate_cli.py +39 -23
  152. gw_certificate/interface/4.4.52_app.zip +0 -0
  153. gw_certificate/interface/4.4.52_sd_bl_app.zip +0 -0
  154. gw_certificate/interface/ble_simulator.py +0 -32
  155. gw_certificate/interface/if_defines.py +1 -0
  156. gw_certificate/interface/mqtt.py +96 -19
  157. gw_certificate/interface/nrfutil-linux +0 -0
  158. gw_certificate/interface/nrfutil-mac +0 -0
  159. gw_certificate/interface/nrfutil.exe +0 -0
  160. gw_certificate/interface/pkt_generator.py +0 -82
  161. gw_certificate/interface/uart_if.py +73 -43
  162. gw_certificate/templates/results.html +1 -1
  163. gw_certificate/tests/__init__.py +1 -2
  164. gw_certificate/tests/actions.py +134 -9
  165. gw_certificate/tests/connection.py +10 -5
  166. gw_certificate/tests/downlink.py +2 -4
  167. gw_certificate/tests/generic.py +62 -12
  168. gw_certificate/tests/registration.py +78 -27
  169. gw_certificate/tests/static/generated_packet_table.py +12 -48
  170. gw_certificate/tests/static/packet_table.csv +10048 -10048
  171. gw_certificate/tests/static/references.py +2 -1
  172. gw_certificate/tests/static/uplink_defines.py +0 -7
  173. gw_certificate/tests/throughput.py +7 -12
  174. gw_certificate/tests/uplink.py +83 -43
  175. {wiliot_certificate-1.3.0a1.dist-info → wiliot_certificate-1.4.0a2.dist-info}/METADATA +59 -8
  176. wiliot_certificate-1.4.0a2.dist-info/RECORD +198 -0
  177. {wiliot_certificate-1.3.0a1.dist-info → wiliot_certificate-1.4.0a2.dist-info}/WHEEL +1 -1
  178. wiliot_certificate-1.4.0a2.dist-info/entry_points.txt +3 -0
  179. wiliot_certificate-1.4.0a2.dist-info/top_level.txt +2 -0
  180. gw_certificate/interface/packet_error.py +0 -22
  181. wiliot_certificate-1.3.0a1.dist-info/RECORD +0 -51
  182. wiliot_certificate-1.3.0a1.dist-info/entry_points.txt +0 -2
  183. wiliot_certificate-1.3.0a1.dist-info/top_level.txt +0 -1
  184. {wiliot_certificate-1.3.0a1.dist-info → wiliot_certificate-1.4.0a2.dist-info}/LICENSE +0 -0
@@ -0,0 +1,102 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html>
4
+
5
+ <style>
6
+ table, th, td {
7
+ border: 1px solid black;
8
+ border-collapse: collapse;
9
+ text-align: center;
10
+ }
11
+ th, td {
12
+ padding: 10px;
13
+ }
14
+ th {
15
+ background-color: #009999;
16
+ }
17
+ tr:nth-child(even) {
18
+ background-color: #b3cccc;
19
+ }
20
+ tr:nth-child(odd) {
21
+ background-color: #F0FFFF;
22
+ }
23
+ </style>
24
+
25
+ <body>
26
+ <table>
27
+ <tr><th>Name</th><th>Shortcut</th><th>Num of Arguments</th><th>Description</th><th>Example</th></tr>
28
+ <tr><td>energous</td><td>NONE</td><td>SKIP_ARGS_VALIDATION</td><td></td><td></td></tr>
29
+ <tr><td>ant_sel_mode_set</td><td>asms</td><td>1</td><td>set antenna polarity mode, whereas 0 = random_toggle, 1 = clear, 2 = set, 3 = toggle</td><td>!ant_sel_mode_set 1</td></tr>
30
+ <tr><td>ant_sel_set</td><td>ass</td><td>1</td><td>Set the antenna select pin to be 0 or 1</td><td>!ant_sel_set 1</td></tr>
31
+ <tr><td>pwr_cal_set</td><td>pcs</td><td>2</td><td>Set power calibration value (used by Energous during production line)</td><td>!pwr_cal_set 127 124</td></tr>
32
+ <tr><td>sensor_set</td><td>sc</td><td>5</td><td>Format: (sensor idx) (sensor_ad_type) (sensor_uuid_msb) (sensor_uuid_lsb) (sensor_scramble). Provides Instructions for the bridge on how to handle a specified External sensor. (sensor idx) - The index of in the sensors table sized 2 , (ad_type) + (uuid_msb) + (uuid_lsb) - The external sensor identifier , (scramble) - Indicates whether the bridge should apply data scrambling to incoming data from the specified sensor. Relevant only for ADD action</td><td>!sc 0 FF 76 54 1</td></tr>
33
+ <tr><td>sensor_get</td><td>sg</td><td>0</td><td>Request the bridge to provide information regarding all of its associated external sensors</td><td>!sensor_get</td></tr>
34
+ <tr><td>gw_wifi_connected</td><td>NONE</td><td>0</td><td>Indicates the ESP is connected to Wi-Fi</td><td>!gw_wifi_connected</td></tr>
35
+ <tr><td>gw_wifi_disconnected</td><td>NONE</td><td>1</td><td>Indicates the ESP is not connected to Wi-Fi. Also sets leds pre-state on/off</td><td>!gw_wifi_disconnected 1</td></tr>
36
+ <tr><td>gw_on</td><td>NONE</td><td>0</td><td>Indicates the ESP has started working</td><td>!gw_on</td></tr>
37
+ <tr><td>ap_ready</td><td>NONE</td><td>0</td><td>Indicates the ESP has successfully started it's access point for provisioning</td><td>!ap_ready</td></tr>
38
+ <tr><td>sntp_success</td><td>NONE</td><td>0</td><td>Indicates the ESP has successfully received time via SNTP</td><td>!sntp_success</td></tr>
39
+ <tr><td>device_auth_success</td><td>NONE</td><td>0</td><td>Indicates the ESP has successfully performed device authorization</td><td>!device_auth_success</td></tr>
40
+ <tr><td>reg_success</td><td>NONE</td><td>0</td><td>Indicates the ESP has successfully registered device to the cloud</td><td>!reg_success</td></tr>
41
+ <tr><td>gw_mqtt_status</td><td>NONE</td><td>1</td><td>Indicates the ESP is connected to MQTT in case arg = 1 or disconnected in case arg = 0</td><td>!gw_mqtt_status 1</td></tr>
42
+ <tr><td>ota_in_progress</td><td>NONE</td><td>1</td><td>Indicates the GW has started an OTA to itself or to a connected BRG. arg = 1 ota in progress, arg = 0 ota finished</td><td>!ota_in_progress 1</td></tr>
43
+ <tr><td>send_msg_to_brg</td><td>NONE</td><td>2</td><td>Transmits a packet towards a BRG. arg1 = BRG mac address, arg2 = BLE packet to transmit</td><td></td></tr>
44
+ <tr><td>set_logger_mode</td><td>NONE</td><td>2</td><td>Configure sniffer: (sniffer_mode) (rx_channel). Sniffer mode options: 0 - No Sniffer, 1 - Standard Sniffer (Data only), 2 - Extended Sniffer (AdvA+Data+RSSI)</td><td>!set_logger_mode 1 39</td></tr>
45
+ <tr><td>get_logger_counters</td><td>glc</td><td>0</td><td>Get the counters of wiliot, non-wiliot and bad CRC packets</td><td>!get_logger_counters</td></tr>
46
+ <tr><td>set_power_mgmt</td><td>spm</td><td>3,6</td><td>Configures the power management parameters as follows: !set_power_mgmt (mode) (sleep_duration) (on_duration) [keep_alive_period] [keep_alive_scan_duration] [led]</td><td>!spm 1 120 30 15 300 0, !spm 0 120 30</td></tr>
47
+ <tr><td>get_power_mgmt</td><td>gpm</td><td>1</td><td>Get static or dynamic powr managment configuration from the bridge as follows: IDLE, ON, KA_PERIOD, KA_SCAN, LEDS</td><td>!get_power_mgmt</td></tr>
48
+ <tr><td>send_pkt</td><td>sp</td><td>1, 2</td><td>Transmit a ble pkt. Optional - add an extra argument, specifying the number of repetitions for transmission. The default repetitions value is set to 8. BLE5 case - the packet must be of size 47 or 39 bytes</td><td>!send_pkt 04CBA011902C1E16AFFD0200002929B0FFF98DB104FA68BD5491456B55CC18AADBC230A83E 3</td></tr>
49
+ <tr><td>ble_sim</td><td>bs</td><td>5, 6</td><td>Format: !ble_sim (pkt) (duplicates) (output power) (frequency/channel) (delay) (optional - radio mode), (pkt) - BLE packet , (duplicates) - the number of times to send the same packet , (output power) - the output power in dBm before PA , (frequency) - 2402/2403/... or channel 37/38/39 , (delay) - the delay between the transmission of the current packet and the one after it, in milliseconds, (radio mode) - optional, for BLE5 transmission, could be 1 or 2, indicates if the transmission will be in 1Mbps or 2Mbps</td><td>!ble_sim 04CBA011902C1E16AFFD0200002929B0FFF98DB104FA68BD5491456B55CC18AADBC230A83E 10 2 2402 100 2</td></tr>
50
+ <tr><td>ble_sim_init</td><td>NONE</td><td>1</td><td>Initiate the GW to be in simulator mode</td><td>!ble_sim_init 1 !ble_sim_init 0</td></tr>
51
+ <tr><td>gateway_app</td><td>s</td><td>0</td><td>Initiates the GW application</td><td>!gateway_app</td></tr>
52
+ <tr><td>pl_gw_config</td><td>NONE</td><td>1</td><td>Set production Line Status to enable (1) or disable (0)</td><td>!pl_gw_config 1</td></tr>
53
+ <tr><td>version</td><td>v</td><td>0</td><td>Request the FW version of the GW/BRG</td><td>!version</td></tr>
54
+ <tr><td>start_2_4_ghz_energizing</td><td>NONE</td><td>2</td><td></td><td></td></tr>
55
+ <tr><td>store_to_flash</td><td>NONE</td><td>0</td><td>Store the relevant parameters to the gw flash (after each reset, the gw is reconfigured with the flash parameters)</td><td>!store_to_flash</td></tr>
56
+ <tr><td>reset</td><td>r</td><td>0</td><td>Reset</td><td>!reset</td></tr>
57
+ <tr><td>move_to_bootloader</td><td>mtb</td><td>0</td><td>Stops the GW application and moves to bootloader in order to perform version update</td><td>!move_to_bootloader</td></tr>
58
+ <tr><td>restore_defaults</td><td>rd</td><td>0</td><td>Configure the default parameters for GW/BRG saved in flash.</td><td>!restore_defaults</td></tr>
59
+ <tr><td>print_config_extended</td><td>pce</td><td>0</td><td>Print all configured parameters of the GW/BRG</td><td>!print_config_extended</td></tr>
60
+ <tr><td>get_device_address</td><td>pda</td><td>0</td><td>Request for the MAC address of the GW/BRG</td><td>!get_device_address</td></tr>
61
+ <tr><td>dump_flash</td><td>df</td><td>0</td><td>Displays the configured parameters in flash</td><td>!dump_flash</td></tr>
62
+ <tr><td>cancel</td><td>c</td><td>0</td><td>Stop the gateway application, i.e. stops transmitting energy+beacons and stops receiving tags' packets.</td><td>!cancel</td></tr>
63
+ <tr><td>set_interface_id</td><td>sii</td><td>1</td><td></td><td></td></tr>
64
+ <tr><td>get_interface_id</td><td>gii</td><td>0</td><td></td><td>!get_interface_id</td></tr>
65
+ <tr><td>set_pkt_filter</td><td>pf</td><td>1</td><td>Sets the packet filter configuration according to the first argument without decode</td><td>!pf 0</td></tr>
66
+ <tr><td>set_accel_cfg</td><td>sac</td><td>1, 3</td><td>Sets the lis2dw12 accelerometer configuration - (state_threshold) (wake_up_duration) (sleep_duration)</td><td>!sdw12c 1 30 30</td></tr>
67
+ <tr><td>get_accel_cfg</td><td>gac</td><td>0</td><td>Request the bridge to provide the embedded lis2dw12 accelerometer configuration</td><td>!gdw12c</td></tr>
68
+ <tr><td>uart_sim</td><td>us</td><td>4</td><td>BLE chip sends pkts over the UART. Format: (amount of packets) (time interval in MS between packets) (packets origin [p6-pkt, p7-extended_pkt]) (packet data)</td><td>!us 1000 10 p0 1E16...</td></tr>
69
+ <tr><td>connectivity_status</td><td>cs</td><td>2</td><td>Reports on WiFi (first argument) and MQTT (second argument) connectivity status</td><td>!connectivity_status 1 1</td></tr>
70
+ <tr><td>blink</td><td></td><td>0</td><td>Blink Leds</td><td>!blink</td></tr>
71
+ <tr><td>stop_advertising</td><td>sa</td><td>0</td><td>Disables soft device and nus</td><td>!sa</td></tr>
72
+ <tr><td>deduplication_pkts</td><td>dp</td><td>1</td><td>Set new configuration for packets deduplication, options are 0 to disable and 1 to enable</td><td>!dp 1</td></tr>
73
+ <tr><td>sub1g_duty_cycle_set</td><td>sdcs</td><td>1</td><td>Set duty cycle in percentage for Sub1GHz energizing. Min = 0, Max = 100. (for dual-band bridges only)</td><td>!sdcs 30</td></tr>
74
+ <tr><td>sub1g_ep_set</td><td>seps</td><td>1</td><td>Set energy pattern for Sub1GHz radio. {0: No energizing, 1: Single tone 915MHz, 2: Hopping, 3: Japan1W, 4: Japan350mW, 5: Korea, 6: Single tone 916300MHz, 7: Single tone 917500MHz, 8: Australia, 9: Israel, 10: NZ (Hopping)}. (for dual-band bridges only)</td><td>!sub1g_ep_set 1</td></tr>
75
+ <tr><td>output_power</td><td>op</td><td>2</td><td>Set output power [dBm], for either energizing, calibration, or communication. The type is determined by the first argument given ('e' for energizing, 'ca' for calibration, 'cm' for communication). </td><td>!output_power e pos8dBm \n !output_power ca -40</td></tr>
76
+ <tr><td>2_4_duty_cycle_set</td><td>24dcs</td><td>1</td><td>Set duty cycle in percentage for 2400 energizing. Min = 0, Max = 100.</td><td>!24dcs 30</td></tr>
77
+ <tr><td>2_4_ep_set</td><td>24eps</td><td>1</td><td>Set energy pattern for 2400 radio. {0:No energizing, 1:channel 37, 2:channel 38, 3:channel 39, 4:2450MHz, 5:2454MHz, 6:Hopping 1}.</td><td>!2_4_ep_set 1</td></tr>
78
+ <tr><td>move_to_slip</td><td>NONE</td><td>0</td><td>BLE starts using UART SLIP protocol</td><td>!move_to_slip</td></tr>
79
+ <tr><td>move_to_ascii</td><td>NONE</td><td>0</td><td>BLE starts using UART ASCII</td><td>!move_to_ascii</td></tr>
80
+ <tr><td>file_start</td><td>NONE</td><td>2</td><td>ESP signal to start file sending,. Format: (file type) (file total length)</td><td>!file_start 0 141</td></tr>
81
+ <tr><td>file_crc</td><td>NONE</td><td>1</td><td>Compares saved crc to the one received and answers status back to ESP</td><td>!file_crc CBAFA</td></tr>
82
+ <tr><td>is_file_saved</td><td>NONE</td><td>2</td><td>Checks for saved version of BRG OTA file. Format: (version) (is BL)</td><td>!is_file_saved 3.14.64 0</td></tr>
83
+ <tr><td>file_saved_details</td><td>NONE</td><td>2</td><td>Saves details of the last saved file for BRG OTA. Format: (version) (is BL)</td><td>!file_saved_details 3.14.64 0</td></tr>
84
+ <tr><td>set_tags_rssi_threshold</td><td>strt</td><td>1</td><td>Set new configuration for Tags RSSI Threshold, options are 0 to 127 (0 disables feature)</td><td>!strt 20</td></tr>
85
+ <tr><td>set_sensors_rssi_threshold</td><td>ssrt</td><td>1</td><td>Set new configuration for Sensors RSSI Threshold, options are 0 to 127 (0 disables feature)</td><td>!ssrt 20</td></tr>
86
+ <tr><td>set_sub1g_rssi_threshold</td><td>sgrt</td><td>1</td><td>Set new configuration for Sub1G RSSI Threshold, options are 0 to 127 (0 disables feature)</td><td>!sgrt 20</td></tr>
87
+ <tr><td>set_pacer_interval</td><td>pi</td><td>1</td><td>Set the mean interval between transmissions of a single tag [seconds]</td><td></td></tr>
88
+ <tr><td>set_datapath_pattern</td><td>scp</td><td>1</td><td>Set new configuration for communicatiom pattern, could be - {0: 'Standard beaconing', 1: 'No beacons on channel 37', 2: 'EU pattern', 3: 'Disable communication beaconing'}</td><td>!scp 2</td></tr>
89
+ <tr><td>set_rx_channel</td><td>src</td><td>1</td><td>Set new configuration for rx channel or frequency, could be - [37, 38, 39, 10] or any other valid channel or frequency</td><td>!src 10</td></tr>
90
+ <tr><td>set_radio_mode</td><td>srm</td><td>1</td><td>Set new configuration for radio mode (rx rate), could be [1Mbps, 2Mbps E2/E3 Pixels, 2Mbps E4 Pixels] - [0, 1, 2]</td><td>!srm 1</td></tr>
91
+ <tr><td>calib_interval</td><td>ci</td><td>1</td><td>Set new configuration for Calibration Interval, the actual interval is 20msec*(calib_interval)</td><td>!ci 10</td></tr>
92
+ <tr><td>calib_pattern</td><td>cp</td><td>1</td><td>Set new configuration for Calibration Pattern, could be - {0: 'Standard beaconing', 1: 'No beacons on channel 37', 2: 'EU pattern', 3: 'Disable communication beaconing'}</td><td>!cp 0</td></tr>
93
+ <tr><td>signal_indicator_2_4_set</td><td>si24</td><td>2</td><td>Set a new configuration for 2.4GHz signal_indicator packets cycle. The cycle is the duration in seconds between transmission of signal indicator packets. Min - 0 , Max - 16383. 0 - disable the transmission. When the 'Signal Indicator Cycle' is 0 repetitions value is irrelevant. repetitions Min - 1, Max - 4</td><td>!si24 60 4</td></tr>
94
+ <tr><td>signal_indicator_sub1g_set</td><td>sis</td><td>2</td><td>Set a new configuration for sub1g signal_indicator packets cycle and repetition. The cycle is the duration in seconds between transmission of signal indicator packets. Min - 0 , Max - 16383. 0 - disable the transmission. When the 'Signal Indicator Cycle' is 0 repetitions value is irrelevant. repetitions Min - 1, Max - 4</td><td>!sis 60 4</td></tr>
95
+ <tr><td>test_mode_2_4_set</td><td>tm24</td><td>3</td><td>Test mode for the 2.4Ghz radio, Frequency [2400-2480 MHz]; Power (before PA that can add ~20) [+8 dBm to -12 dBm]; Test Duration [Seconds]</td><td>!tm24 2400 2 20</td></tr>
96
+ <tr><td>test_mode_sub1g_set</td><td>tms</td><td>5</td><td>Test mode for the Sub1G radio, Frequency [905000-920000 kHz], Output Power (before PA that can add ~20) ,On time [milliseconds], Off time [milliseconds]; Test Duration[Seconds]</td><td>!tms 905000 4 20 60 20</td></tr>
97
+ <tr><td>test_mode_operational_2_4_set</td><td>tmo24</td><td>3</td><td>Test mode for various 2.4Ghz operational modes: Pattern [0=Beacons 37/38/39, 1=Beacons 38/38/39, 2=EU pattern]; Power [+8 dBm to -12 dBm , before PA that can add ~20 [dBm]]; Test Duration[Seconds]</td><td>!tmo24 0 2</td></tr>
98
+ <tr><td>test_mode_operational_sub1g_set</td><td>tmos</td><td>3</td><td>Test mode for various sub1G operational modes: Pattern [0=No energy, 1=Single one 915M, 2=FCC Hopping, 3=Japan_1W, 4=Jappan_350mW, 5=Korea, 6=916.3 MHz, 7=917.5 mHz,8=Australia, 9=Israel, 10=NZ Hopping; Output Power (before PA that can add ~20); Test Duration[Seconds]</td><td>!tmos 2 4 60</td></tr>
99
+
100
+ </table>
101
+ </body>
102
+ </html>