You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `tsapython` library, as it is avilable on PyPI is structured as follows:
157
+
The `tsapython` library, as it is available on PyPI is structured as follows:
158
158
159
159
```python
160
160
@@ -256,7 +256,7 @@ Some error checking includes:
256
256
257
257
* Frequencies can be specified using an integer optionally postfixed with a the letter 'k' for kilo 'M' for Mega or 'G' for Giga. E.g. 0.1M (100kHz), 500k (0.5MHz) or 12000000 (12MHz)
258
258
* Levels are specified in dB(m) and can be specified using a floating point notation. E.g. 10 or 2.5
259
-
* Time is specified in seconds optionally postfixed with the letters 'm' for mili or 'u' for micro. E.g. 1 (1 second), 2.5 (2.5 seconds), 120m (120 milliseconds)
259
+
* Time is specified in seconds optionally postfixed with the letters 'm' for milli or 'u' for micro. E.g. 1 (1 second), 2.5 (2.5 seconds), 120m (120 milliseconds)
260
260
261
261
## Example Implementations
262
262
@@ -910,7 +910,7 @@ else: # if port found and connected, then complete task(s) and disconnect
910
910
911
911
# PROCESS SCANRAW into an array & reuse the FREQ_ARR value
912
912
# remove the intro curly brace ({)
913
-
bin_scanraw = scanraw_data_bytes[1:] #skip the first char because it's the raminaing curly brace
913
+
bin_scanraw = scanraw_data_bytes[1:] #skip the first char because it's the remaining curly brace
914
914
# use struct.unpack() because of the repeating pattern
915
915
# <: indicates little-endian byte order, meaning the least significant byte is stored first
916
916
# 'xH'*pts: a repetition of the format 'xH' once per point.
@@ -2394,7 +2394,7 @@ Marker levels will use the selected unit Marker peak will activate the marker (i
2394
2394
***Alias Functions:**
2395
2395
* None
2396
2396
***CLI Wrapper Usage:**
2397
-
***Notes:** the time specified may end in a letter where m=mili and u=micro
2397
+
***Notes:** the time specified may end in a letter where m=milli and u=micro
2398
2398
2399
2399
### **temperature**
2400
2400
***Description:** Get the temperature from the device
@@ -2710,7 +2710,7 @@ aka “what am I looking at and did I buy the right thing?”
2710
2710
Some tips:
2711
2711
* The cable MUST be connected between the two ports BEFORE starting the calibration.
2712
2712
* The cable should be finger tight. If the connector will not turn, there's a high risk of cross threading if it's forced. It's better to try again than to need to buy and install new connectors.
2713
-
* If you have any RF equipment nearby (including hand-held radios), avoid transmiting during calibration or self-tests. Depending on the signal strength, this could cause issues with the results.
2713
+
* If you have any RF equipment nearby (including hand-held radios), avoid transmitting during calibration or self-tests. Depending on the signal strength, this could cause issues with the results.
0 commit comments