sv1bds
sv1bds
[DVBS2RX.PDF](https://github.com/igorauad/gr-dvbs2rx/files/8805766/DVBS2RX.PDF)  A simplified block is attached and the result screen. Thanks
Hi Igor, Thanks for your valuable information! To update code I just overide it? I prefer to write my own code as I write Python in my job. Your code...
I try this : dvbs2-rx --source rtl --gui --sym-rate 1.5M --samp-rate 3M --modcod QPSK4/5 --rolloff 0.25 --pilots auto -f 741500000 --rtl-gain 20 -d 3 /usr/local/bin/dvbs2-rx:16: DeprecationWarning: The distutils package is...
Hi, These are d 3 debuga data from a personal flowchart using Pluto for Rx. I am unsure for short or normal FEC setting. Can you determine the short/normal from...
Hi again, There is a bug in QO100 beacon and output is broken. I have to verify first proper beacon operation before testing your software... Thanks
Hi, Yes you are right! It loose data. It can receive to about 2400 max.
Model: "sequential" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= dense (Dense) (None, 32) 224 dense_1 (Dense) (None, 32) 1056 dense_2 (Dense) (None, 4) 132 ================================================================= Total params: 1412 (5.52...
int[] activations = {SIGMOID, SIGMOID, SIGMOID} //Activations for each layer excluding the input layer it must be so? int activations[] = {SIGMOID, SIGMOID, SIGMOID}; //Activations for each layer excluding the...
void activate(int l, double* z, int activation) { double sum = 0.0; if (activation == SOFTMAX) { for (int j = 0; j < l; j++) { sum += exp(z[j]);...
The snake model works fine on STM32!!! The SOFTMAX is verified. It uses 56% of memory. If you need more info please tell me. Thanks