mirror of https://github.com/OpenIPC/wiki.git
formatting changes
parent
acbc83c487
commit
e8df36f647
|
@ -1,81 +1,81 @@
|
|||
# Acronyms and Definitions
|
||||
|
||||
BEC - BEC stands for Battery Eliminator Circuit. It is used to provide a stable voltage supply to components in a device, often in place of a battery.
|
||||
* BEC - BEC stands for Battery Eliminator Circuit. It is used to provide a stable voltage supply to components in a device, often in place of a battery.
|
||||
|
||||
Channel - A Wi-Fi channel is a specific range of frequencies used for communication between wireless devices. Wi-Fi networks typically divide these frequencies into 14 channels in the 2.4 GHz band, 34 channels in the 5 GHz band, and up to 59 channels in the 6 GHz band.
|
||||
* Channel - A Wi-Fi channel is a specific range of frequencies used for communication between wireless devices. Wi-Fi networks typically divide these frequencies into 14 channels in the 2.4 GHz band, 34 channels in the 5 GHz band, and up to 59 channels in the 6 GHz band.
|
||||
|
||||
[Configurator](https://github.com/OpenIPC/configurator) OpenIPC controller for setting up FPV and URLLC devices
|
||||
* [Configurator](https://github.com/OpenIPC/configurator) OpenIPC controller for setting up FPV and URLLC devices
|
||||
|
||||
Datalink - Datalink is oncerned with managing data communication links and ensuring reliable data transfer between the device and external systems.
|
||||
* Datalink - Datalink is oncerned with managing data communication links and ensuring reliable data transfer between the device and external systems.
|
||||
|
||||
### FEC_K and FEC_N
|
||||
* FEC_K and FEC_N
|
||||
|
||||
FEC_K and FEC_N are parameters used in Forward Error Correction (FEC) to define the structure and efficiency of error correction codes.
|
||||
FEC_K and FEC_N are parameters used in Forward Error Correction (FEC) to define the structure and efficiency of error correction codes.
|
||||
|
||||
#### FEC_K
|
||||
#### FEC_K
|
||||
|
||||
K refers to the number of information (or data) bits in a block before error correction encoding is applied.
|
||||
This is the actual data that needs to be transmitted without any redundancy added for error correction.
|
||||
K refers to the number of information (or data) bits in a block before error correction encoding is applied.
|
||||
This is the actual data that needs to be transmitted without any redundancy added for error correction.
|
||||
|
||||
#### FEC_N
|
||||
#### FEC_N
|
||||
|
||||
N refers to the total number of bits after error correction encoding has been applied.
|
||||
N refers to the total number of bits after error correction encoding has been applied.
|
||||
|
||||
This includes both the original data bits (K) and the redundant bits that are added for error detection and correction.
|
||||
Relationship Between FEC_K and FEC_N
|
||||
This includes both the original data bits (K) and the redundant bits that are added for error detection and correction.
|
||||
Relationship Between FEC_K and FEC_N
|
||||
|
||||
The difference between N and K represents the redundancy added by the error correction code. In other words, the redundant bits are used to detect and correct errors in the transmitted data.
|
||||
The difference between N and K represents the redundancy added by the error correction code. In other words, the redundant bits are used to detect and correct errors in the transmitted data.
|
||||
|
||||
```mathematica
|
||||
N = K + Number of Redundant Bits
|
||||
```
|
||||
```mathematica
|
||||
N = K + Number of Redundant Bits
|
||||
```
|
||||
|
||||
Example
|
||||
Example
|
||||
|
||||
If FEC_K = 1000 and FEC_N = 1200, this means 200 redundant bits were added to the original 1000 data bits, creating a total of 1200 transmitted bits.
|
||||
If FEC_K = 1000 and FEC_N = 1200, this means 200 redundant bits were added to the original 1000 data bits, creating a total of 1200 transmitted bits.
|
||||
|
||||
Code Rate
|
||||
Code Rate
|
||||
|
||||
The ratio of information bits (K) to the total bits (N) is called the code rate:
|
||||
The ratio of information bits (K) to the total bits (N) is called the code rate:
|
||||
|
||||
```mathematica
|
||||
Code Rate = K / N
|
||||
```
|
||||
```mathematica
|
||||
Code Rate = K / N
|
||||
```
|
||||
|
||||
For example, if K = 1000 and N = 1200, the code rate would be:
|
||||
For example, if K = 1000 and N = 1200, the code rate would be:
|
||||
|
||||
```yaml
|
||||
```yaml
|
||||
|
||||
Code Rate = 1000 / 1200 = 0.833
|
||||
```
|
||||
This means that 83.3% of the transmitted bits are actual data, and 16.7% are used for error correction.
|
||||
Code Rate = 1000 / 1200 = 0.833
|
||||
```
|
||||
This means that 83.3% of the transmitted bits are actual data, and 16.7% are used for error correction.
|
||||
|
||||
|
||||
#### Usage in Communication Systems
|
||||
#### Usage in Communication Systems
|
||||
|
||||
FEC_K and FEC_N are commonly used to describe how data is handled in wireless communication standards such as Wi-Fi, 5G, satellite communication, and broadcast systems.
|
||||
FEC_K and FEC_N are commonly used to describe how data is handled in wireless communication standards such as Wi-Fi, 5G, satellite communication, and broadcast systems.
|
||||
|
||||
The values of K and N determine how much error correction is added to the data, impacting both the transmission reliability and bandwidth efficiency.
|
||||
The values of K and N determine how much error correction is added to the data, impacting both the transmission reliability and bandwidth efficiency.
|
||||
|
||||
FPV - FPV stands for First-Person View, a technology that allows users to experience a live video feed from a camera mounted on a drone or other remote-controlled device as if they were in the pilot's seat. FPV provides a real-time, immersive perspective, enhancing control and situational awareness during flight or remote operation.
|
||||
* FPV - FPV stands for First-Person View, a technology that allows users to experience a live video feed from a camera mounted on a drone or other remote-controlled device as if they were in the pilot's seat. FPV provides a real-time, immersive perspective, enhancing control and situational awareness during flight or remote operation.
|
||||
|
||||
Frequency - Wi-Fi transmits data between your device and a router using radio waves over specific frequencies. Depending on the amount of data being transferred, it can use one of two frequencies: 2.4 gigahertz or 5 gigahertz.
|
||||
* Frequency - Wi-Fi transmits data between your device and a router using radio waves over specific frequencies. Depending on the amount of data being transferred, it can use one of two frequencies: 2.4 gigahertz or 5 gigahertz.
|
||||
|
||||
LDPC - LDPC stands for Low-Density Parity-Check code, which is an advanced error-correcting code used in digital communication systems to improve the reliability of data transmission over noisy channels. LDPC codes are designed to detect and correct errors that occur during data transmission, allowing for more efficient and robust communication.
|
||||
* LDPC - LDPC stands for Low-Density Parity-Check code, which is an advanced error-correcting code used in digital communication systems to improve the reliability of data transmission over noisy channels. LDPC codes are designed to detect and correct errors that occur during data transmission, allowing for more efficient and robust communication.
|
||||
|
||||
[Majestic](https://github.com/OpenIPC/majestic-webui) - Provides web interface for OpenIPC Firmware, and is available on port 80 of your camera. It used for managing and configuring various aspects of the system. It is also a command-line tool.
|
||||
* [Majestic](https://github.com/OpenIPC/majestic-webui) - Provides web interface for OpenIPC Firmware, and is available on port 80 of your camera. It used for managing and configuring various aspects of the system. It is also a command-line tool.
|
||||
|
||||
MCS Index - The Modulation Coding Scheme (MCS) index is a standard industry metric that reflects various factors in a Wi-Fi connection between a client device and a wireless access point, such as data rate, channel width, and the number of antennas or spatial streams in the device.
|
||||
* MCS Index - The Modulation Coding Scheme (MCS) index is a standard industry metric that reflects various factors in a Wi-Fi connection between a client device and a wireless access point, such as data rate, channel width, and the number of antennas or spatial streams in the device.
|
||||
|
||||
[MSPOSD](https://github.com/OpenIPC/msposd) - OpenIPC implementation of MSP Displayport OSD for INAV/Betaflight/ArduPilot
|
||||
* [MSPOSD](https://github.com/OpenIPC/msposd) - OpenIPC implementation of MSP Displayport OSD for INAV/Betaflight/ArduPilot
|
||||
|
||||
[PixelPilot](https://github.com/OpenIPC/PixelPilot) - PixelPilot is an Android app packaging multiple pieces together to decode an H264/H265 video feed broadcast by wfb-ng over the air.
|
||||
* [PixelPilot](https://github.com/OpenIPC/PixelPilot) - PixelPilot is an Android app packaging multiple pieces together to decode an H264/H265 video feed broadcast by wfb-ng over the air.
|
||||
|
||||
[PixelPilot_rk](https://github.com/OpenIPC/PixelPilot_rk) - Application that decodes an RTP Video Stream and displays it on screen, for Rockchip devices (aka Radxa).
|
||||
* [PixelPilot_rk](https://github.com/OpenIPC/PixelPilot_rk) - Application that decodes an RTP Video Stream and displays it on screen, for Rockchip devices (aka Radxa).
|
||||
|
||||
STBC - STBC stands for Space-Time Block Coding, which is a technique used in wireless communication systems to improve signal reliability and data transmission performance, particularly in environments with interference or signal fading.
|
||||
* STBC - STBC stands for Space-Time Block Coding, which is a technique used in wireless communication systems to improve signal reliability and data transmission performance, particularly in environments with interference or signal fading.
|
||||
|
||||
WFB - Wireless Framebuffer (WFB) is a component that enables remote display and control of a device’s graphical interface over a wireless network.
|
||||
* WFB - Wireless Framebuffer (WFB) is a component that enables remote display and control of a device’s graphical interface over a wireless network.
|
||||
|
||||
## Filesystem
|
||||
|
||||
|
|
Loading…
Reference in New Issue