Skip to content

Commit c2256fe

Browse files
committed
spell check
1 parent 8e62195 commit c2256fe

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Several usage examples are provided in the [Example Implementations](#example-im
8383
### PyPI Install
8484

8585

86-
The `tsapython` library (from PyPI at [https://pypi.org/project/tsapython/2.0.0/](https://pypi.org/project/tsapython/2.0.0/)) can be installed with:
86+
The `tsapython` package (from PyPI at [https://pypi.org/project/tsapython/2.0.0/](https://pypi.org/project/tsapython/2.0.0/)) can be installed with:
8787

8888
```python
8989

@@ -107,11 +107,11 @@ This is a summarized version of the instructions at [https://www.sarahglasmacher
107107
# install UV
108108
pip install uv
109109

110-
# navigate to the tsapyhon directory
110+
# navigate to the tsapython directory
111111
cd .\tsapython
112112

113113
# build the package
114-
# a 'dist' directory should be created in tapython
114+
# a 'dist' directory should be created in tsapython
115115
uv build
116116

117117
# install the package locally
@@ -154,7 +154,7 @@ pip install pyserial numpy pandas matplotlib pillow pyQt5
154154

155155
## Structure
156156

157-
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:
158158

159159
```python
160160

@@ -256,7 +256,7 @@ Some error checking includes:
256256

257257
* 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)
258258
* 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)
260260

261261
## Example Implementations
262262

@@ -910,7 +910,7 @@ else: # if port found and connected, then complete task(s) and disconnect
910910

911911
# PROCESS SCANRAW into an array & reuse the FREQ_ARR value
912912
# 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
914914
# use struct.unpack() because of the repeating pattern
915915
# <: indicates little-endian byte order, meaning the least significant byte is stored first
916916
# '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
23942394
* **Alias Functions:**
23952395
* None
23962396
* **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
23982398

23992399
### **temperature**
24002400
* **Description:** Get the temperature from the device
@@ -2710,7 +2710,7 @@ aka “what am I looking at and did I buy the right thing?”
27102710
Some tips:
27112711
* The cable MUST be connected between the two ports BEFORE starting the calibration.
27122712
* 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.
27142714

27152715

27162716
### Some General tinySA Notes

tsapython/examples/plotting_scanraw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def convert_data_to_arrays(start, stop, pts, data):
102102

103103
# PROCESS SCANRAW into an array & reuse the FREQ_ARR value
104104
# remove the intro curly brace ({)
105-
bin_scanraw = scanraw_data_bytes[1:] #skip the first char because it's the raminaing curly brace
105+
bin_scanraw = scanraw_data_bytes[1:] #skip the first char because it's the remaining curly brace
106106
# use struct.unpack() because of the repeating pattern
107107
# <: indicates little-endian byte order, meaning the least significant byte is stored first
108108
# 'xH'*pts: a repetition of the format 'xH' once per point.

0 commit comments

Comments
 (0)