Skip to content

Commit

Permalink
Fix captions and remove old notes
Browse files Browse the repository at this point in the history
  • Loading branch information
carlesfernandez committed Jan 30, 2024
1 parent 780a551 commit f477964
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 57 deletions.
104 changes: 52 additions & 52 deletions _sp-blocks/04-data-type-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ real samples) at its output.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Byte_To_Short` | Mandatory |
|-------
| **Parameter** | **Description** | **Required** |
| :--------------: | :-------------- | :----------: |
| -------------- |
| `implementation` | `Byte_To_Short` | Mandatory |
| ------- |

_Signal Conditioner implementation:_ **`Byte_To_Short`**.
_Data Type Adapter implementation:_ **`Byte_To_Short`**.
{: style="text-align: center;"}

Example:
Expand All @@ -114,14 +114,14 @@ rate by two.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Ibyte_To_Cbyte` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
|-------

_Signal Conditioner implementation:_ **`Ibyte_To_Cbyte`**.
| **Parameter** | **Description** | **Required** |
| :-----------------: | :--------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Ibyte_To_Cbyte` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Ibyte_To_Cbyte`**.
{: style="text-align: center;"}

Example:
Expand All @@ -146,14 +146,14 @@ the sample rate by two.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Ibyte_To_Cshort` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
|-------

_Signal Conditioner implementation:_ **`Ibyte_To_Cshort`**.
| **Parameter** | **Description** | **Required** |
| :-----------------: | :--------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Ibyte_To_Cshort` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Ibyte_To_Cshort`**.
{: style="text-align: center;"}

Example:
Expand All @@ -178,14 +178,14 @@ rate by two.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Ibyte_To_Complex` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
|-------

_Signal Conditioner implementation:_ **`Ibyte_To_Complex`**.
| **Parameter** | **Description** | **Required** |
| :-----------------: | :--------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Ibyte_To_Complex` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Ibyte_To_Complex`**.
{: style="text-align: center;"}

Example:
Expand All @@ -209,14 +209,14 @@ the sample rate by two.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Ishort_To_Cshort` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
|-------

_Signal Conditioner implementation:_ **`Ishort_To_Cshort`**.
| **Parameter** | **Description** | **Required** |
| :-----------------: | :--------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Ishort_To_Cshort` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Ishort_To_Cshort`**.
{: style="text-align: center;"}

Example:
Expand All @@ -240,14 +240,14 @@ rate by two.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Ishort_To_Complex` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
|-------

_Signal Conditioner implementation:_ **`Ishort_To_Complex`**.
| **Parameter** | **Description** | **Required** |
| :-----------------: | :--------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Ishort_To_Complex` | Mandatory |
| `inverted_spectrum` | [`true`, `false`]: If set to `true`, it performs a spectrum inversion. It defaults to `false`. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Ishort_To_Complex`**.
{: style="text-align: center;"}

Example:
Expand All @@ -264,12 +264,12 @@ This implementation copies samples from its input to its output.
It accepts the following parameters:

|----------
| **Parameter** | **Description** | **Required** |
|:-:|:--|:-:|
|--------------
| `implementation` | `Pass_Through` | Mandatory |
| `item_type` | [<abbr id="data-type" title="Complex samples with real and imaginary parts of type 32-bit floating point. C++ name: std::complex<float>">`gr_complex`</abbr>, <abbr id="data-type" title="Complex samples with real and imaginary parts of type signed 16-bit integer. C++ name: lv_16sc_t (custom definition of std::complex<int16_t>)">`cshort`</abbr>, <abbr id="data-type" title="Complex samples with real and imaginary parts of type signed 8-bit integer. C++ name: lv_8sc_t (custom definition of std::complex<int8_t>)">`cbyte`</abbr>]: Format of data samples. It defaults to <abbr id="data-type" title="Complex samples with real and imaginary parts of type 32-bit floating point. C++ name: std::complex<float>">`gr_complex`</abbr>. | Optional |
|-------
| **Parameter** | **Description** | **Required** |
| :--------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------: |
| -------------- |
| `implementation` | `Pass_Through` | Mandatory |
| `item_type` | [<abbr id="data-type" title="Complex samples with real and imaginary parts of type 32-bit floating point. C++ name: std::complex<float>">`gr_complex`</abbr>, <abbr id="data-type" title="Complex samples with real and imaginary parts of type signed 16-bit integer. C++ name: lv_16sc_t (custom definition of std::complex<int16_t>)">`cshort`</abbr>, <abbr id="data-type" title="Complex samples with real and imaginary parts of type signed 8-bit integer. C++ name: lv_8sc_t (custom definition of std::complex<int8_t>)">`cbyte`</abbr>]: Format of data samples. It defaults to <abbr id="data-type" title="Complex samples with real and imaginary parts of type 32-bit floating point. C++ name: std::complex<float>">`gr_complex`</abbr>. | Optional |
| ------- |

_Data Type Adapter implementation:_ **`Pass_Through`**.
{: style="text-align: center;"}
Expand Down
5 changes: 0 additions & 5 deletions _sp-blocks/07-channels.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,6 @@ Then, eleven parameters can be set: `Channels_1G.count`, `Channels_1C.count`,
`Channels_5X.count`, `Channels_7X.count` and `Channels_L5.count`, all of them
defaulting to $$ 0 $$.

**NOTE:** The E6 receiver chain (that is, `Channels_E6.count`) is only available
from the `next` branch of the upstream repository. This feature will be
available in the next stable release.
{: .notice--warning}

In addition, the GNSS-SDR flow graph allows setting the number of channels that
will be executing signal acquisition (which is known to require a high
computational load) concurrently. This is controlled by the parameter
Expand Down

0 comments on commit f477964

Please sign in to comment.