@kvell007/embed-labs-cli 0.1.0-alpha.24 → 0.1.0-alpha.25

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.
package/README.md CHANGED
@@ -118,7 +118,13 @@ For local hardware access:
118
118
  embed bridge start
119
119
  embed device list
120
120
  embed tool call wifi.scan --input-json '{"host":"198.19.77.2","user":"root"}'
121
+ embed tool call rp2350.monitor.capabilities --json
122
+ embed tool call rp2350.monitor.gpio.read --input-json '{"pins":[16,17],"pull":"none"}' --approve
121
123
  embed tool call rp2350.monitor.spi.transfer --input-json '{"hex":"a55a3cc3"}' --approve
124
+ embed tool call rp2350.monitor.uart.write --input-json '{"baud":115200,"text":"hello","line_ending":"lf"}' --approve
125
+ embed tool call rp2350.monitor.i2c.transfer --input-json '{"address":"0x50","write":"00","read_len":4}' --approve
126
+ embed tool call rp2350.monitor.wifi.manage --input-json '{"action":"scan"}' --approve
127
+ embed tool call rp2350.monitor.probe.debug --input-json '{"action":"status"}' --approve
122
128
  embed tool call chip.temperature --input-json '{"host":"198.19.77.2","user":"root"}'
123
129
  embed flash plan --board <rp2350|taishanpi> --artifact ./artifact.bin
124
130
  ```
@@ -199,7 +205,14 @@ embed tool call chip.cpu.frequency --input-json '{"host":"198.19.77.2","user":"r
199
205
  embed tool call chip.temperature --input-json '{"host":"198.19.77.2","user":"root"}' [--json]
200
206
  embed tool call qml.runtime.status --input-json '{"host":"198.19.77.2","user":"root","port":18130}' [--json]
201
207
  embed tool call qml.runtime.start --input-json '{"host":"198.19.77.2","user":"root","port":18130}' [--json]
208
+ embed tool call rp2350.monitor.capabilities [--json]
209
+ embed tool call rp2350.monitor.gpio.read --input-json '{"pins":[16,17]}' --approve [--json]
202
210
  embed tool call rp2350.monitor.spi.transfer --input-json '{"hex":"a55a3cc3"}' --approve [--json]
211
+ embed tool call rp2350.monitor.uart.write --input-json '{"baud":115200,"text":"hello","line_ending":"lf"}' --approve [--json]
212
+ embed tool call rp2350.monitor.i2c.transfer --input-json '{"address":"0x50","write":"00","read_len":4}' --approve [--json]
213
+ embed tool call rp2350.monitor.wifi.manage --input-json '{"action":"scan"}' --approve [--json]
214
+ embed tool call rp2350.monitor.probe.debug --input-json '{"action":"status"}' --approve [--json]
215
+ embed tool call rp2350.monitor.operation --input-json '{"action":"logic.stop","params":{}}' --approve [--json]
203
216
 
204
217
  embed serial list [--json]
205
218
  embed serial capture --path <port> [--baud 115200] [--duration 5] [--json]
package/dist/index.js CHANGED
@@ -7876,10 +7876,18 @@ Usage:
7876
7876
  embed tool call chip.temperature --input-json '{"host":"198.19.77.2","user":"root"}' [--json]
7877
7877
  embed tool call qml.runtime.status --input-json '{"host":"198.19.77.2","user":"root","port":18130}' [--json]
7878
7878
  embed tool call qml.runtime.start --input-json '{"host":"198.19.77.2","user":"root","port":18130}' [--json]
7879
+ embed tool call rp2350.monitor.capabilities [--json]
7879
7880
  embed tool call rp2350.monitor.status [--json]
7880
- embed tool call rp2350.monitor.logic.capture --input-json '{"pin_base":16,"pin_count":4,"sample_rate":1000000,"samples":4096}' [--json]
7881
+ embed tool call rp2350.monitor.gpio.read --input-json '{"pins":[16,17]}' --approve [--json]
7882
+ embed tool call rp2350.monitor.gpio.write --input-json '{"pin":16,"level":true}' --approve [--json]
7883
+ embed tool call rp2350.monitor.uart.write --input-json '{"baud":115200,"text":"hello","line_ending":"lf"}' --approve [--json]
7884
+ embed tool call rp2350.monitor.i2c.transfer --input-json '{"address":"0x50","write":"00","read_len":4}' --approve [--json]
7881
7885
  embed tool call rp2350.monitor.spi.transfer --input-json '{"hex":"a55a3cc3"}' --approve [--json]
7886
+ embed tool call rp2350.monitor.logic.capture --input-json '{"pin_base":16,"pin_count":4,"sample_rate":1000000,"samples":4096}' --approve [--json]
7882
7887
  embed tool call rp2350.monitor.logic.decode --input-json '{"input_path":".embed-labs/rp2350-monitor/captures/logic.jsonl","decoder":"summary"}' [--json]
7888
+ embed tool call rp2350.monitor.wifi.manage --input-json '{"action":"scan"}' --approve [--json]
7889
+ embed tool call rp2350.monitor.probe.debug --input-json '{"action":"status"}' --approve [--json]
7890
+ embed tool call rp2350.monitor.operation --input-json '{"action":"logic.stop","params":{}}' --approve [--json]
7883
7891
  embed deploy taishanpi --host <ip> --artifact <local_file> --approve [--remote-path /userdata/embed-labs/apps/app] [--run] [--json]
7884
7892
  embed board deploy taishanpi --host <ip> --artifact <local_file> --approve [--remote-path /userdata/embed-labs/apps/app] [--run] [--json]
7885
7893
  embed device list [--json]