-
Notifications
You must be signed in to change notification settings - Fork 891
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default NRZi decoder configured incorrectly #775
Comments
Thanks for the hint, i just fixed it! |
* Change NRZ-I decoding from invert to differential encoding (see e.g. https://en.wikipedia.org/wiki/Non-return-to-zero). Fix #775 * skip bugged cython version * Remove "Non Return To Zero Inverted (NRZ-I)" due to contradictory definitions in literature. Co-authored-by: jopohl <Johannes.Pohl90@gmail.com>
I Guess this is also another way to fix :) While I'm here I must say this is an incredible piece of software, for my current project i'm using virtually ALL OF THE PROGRAM FEATURES! without writing single line of code. (Except for maybe auto-analyze) |
Yes, we discussed it internally and found several resources with different NRZ-I definitions. We think, it is the best solution to avoid the name NRZ-I to not confuse anyone. |
Expected Behavior
NRZ-i Decoder should perform NRZ-i (or NRZi) decoding, I.E. A change from x->!x is 1, else 0
0100011110 should translate into
110010001
Actual Behavior
Instead it just inverts the data (
Invert stock decoding
)Additional info:
It seems that the stock software decoder for NRZi is configured as
invert
and not asdifferential encoding
The text was updated successfully, but these errors were encountered: