Jean-Sébastien Dominique

Results 12 comments of Jean-Sébastien Dominique

Normally, the FEC is performed on the frame data, not on a continuous stream. When streaming, you usually end up cutting up your data into chunks. It's not impossible though,...

With a constraint length of K, your convolutional encoder has K-1 memory states, so you need K-1 known bits to flush it out (we use zeros by convention). This is...

The more I think about it, the continuous FEC solution I gave is wrong. The internal state will most likely be wrong, even if you go back by a few...

`C:/Users/Path2bladerf/` seems like a misconfigured path.

This would be an issue with GitKraken, unrelated to bladeRF. To do a pull request on GitHub, fork the project (top right button), make some changes on your version of...

I face the same issue in implementing the same behavior. It renders this library useless, especially since there are no compiler warnings despite marking my class member function `const`. A...

Issue still exists in 1.78: https://www.boost.org/doc/libs/1_78_0/doc/html/boost_asio/reference/ip__address/make_address.html Same problem with `operator

This is an issue in Doxygen, not in Asio. I was able to reproduce it and thus opened an issue with them: https://github.com/doxygen/doxygen/issues/9083

After discussion with Doxygen developer, the issue is the use of the `\relates` command. We should be using `\relatesalso` instead, as that would not modify the namespace.

As many have mentioned, this would be a very useful feature. I have some errors that are soft failures with a fallback, but I still want to log them. Here's...