Skip to content

Commit 71f3ac7

Browse files
rangulisilseva
authored andcommitted
Fix typos in documentation
1 parent a21c1f2 commit 71f3ac7

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

NVM.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Each nvmDescriptor contains a name, a pointer to an nvmDevice, a base address us
1616
It also implements the following functions defined in interfaces/nvmem.h
1717
* the nvm_init, nvm_terminate that initialize or terminate the nvm subsystem. It initializes all the NVM devices used by the platform.
1818
* the nvm_getDesc that returns an nvmDescriptor given a device number
19-
* the nvm_readCalib that populates a given buffer with the cailbration data
19+
* the nvm_readCalib that populates a given buffer with the calibration data
2020
* the nvm_readHwInfo that populates a hwInfo_t structure using data stored in nvm devices
2121
* int nvm_readVFOChannelData that reads the last saved VFO state
2222
* nvm_readSettings/nvm_writeSettings that reads/writes the device settings (callsign, accessibility settings, ...)
@@ -44,4 +44,4 @@ The info structure is defined in interfaces/nvmem.h as nvmInfo and contains:
4444

4545
## Low-level driver
4646

47-
This layer implements the low-level drivers required to use the memory device. Those drivers are often not exclusive to the NVM sybsystem. This can be an SPI driver, I2C driver, ... . Those should be initialized in the init function of the memory device.
47+
This layer implements the low-level drivers required to use the memory device. Those drivers are often not exclusive to the NVM subsystem. This can be an SPI driver, I2C driver, ... . Those should be initialized in the init function of the memory device.

compiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To flash the firmware on the *Module 17* and *CS7000-M17* (non Plus) platforms,
114114

115115
#### MacOS toolchain setup
116116

117-
The MacOS toolchain setup is similar to that for Linux. Currently, the Zephyr-based tagets can't be built on MacOS.
117+
The MacOS toolchain setup is similar to that for Linux. Currently, the Zephyr-based targets can't be built on MacOS.
118118

119119
To install the basic tools required to compile both the Linux emulator and the firmware images, you can use [Homebrew](https://brew.sh/). Most developers will already have it installed, otherwise follow the instructions at the link. Git and the Xcode tools are automatically installed during the Homebrew installation process, while `meson` needs to be installed separately with the following command:
120120

linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ In this example, a receive screen with callsign OPNRTX is expected.
3838

3939
### Going Further
4040

41-
In theory, you could create a named pipe at `/tmp/baseband.raw` and write to it useing GNU Radio. Something like a source, with resampling to 24kHz if required, then float to short, then a file sink should work.
41+
In theory, you could create a named pipe at `/tmp/baseband.raw` and write to it using GNU Radio. Something like a source, with resampling to 24kHz if required, then float to short, then a file sink should work.

rtxlink.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This page describes `rtxlink`, the communication protocol used by the OpenRTX fi
1212

1313
The physical layer of the rtxlink protocol is a serial communication, which may either be based on a physical link (UART) or a Virtual COM over USB.
1414
In case a physical link is used, its configuration is 8 data bits, no parity and either EIA hardware flow control, or CLOCAL mode (3-wire null-modem).
15-
The default baud rate is 115200 bit per second but the change to a different datarate can be requested by the client device. The support for datarates
15+
The default baud rate is 115200 bit per second but the change to a different data rate can be requested by the client device. The support for data rates
1616
other than the default one is not mandatory, although an rtxlink host must support at least 115200 bit per second. The protocol tolerates buffering and
1717
fragmentation of the transmitted data.
1818

@@ -29,7 +29,7 @@ The frames format is the following:
2929
| END | ProtoID | Data | CRCL | CRCH | END |
3030

3131
After the start of frame marker, the first byte of each frame is a protocol identifier describing the frame content. After the payload data and preceding the frame end marker, the frame contains the
32-
CRC-16 of the protocol identifier and data fields: the CRC is computed using the CCITT polynomial 0x1021 (CCITT CRC-16 polynomial) and transmittend in little-endian format.
32+
CRC-16 of the protocol identifier and data fields: the CRC is computed using the CCITT polynomial 0x1021 (CCITT CRC-16 polynomial) and transmitted in little-endian format.
3333

3434
The recognized protocol IDs are the following:
3535

0 commit comments

Comments
 (0)