-
Notifications
You must be signed in to change notification settings - Fork 394
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
Support for MSK,GMSK. #35
Comments
You didn't mention whether you mean SX127x or SX126x series, but the answer is pretty much the same for both: What's the source of that information? (G)MSK is only mentioned in passing, and as far as I can tell, there's no way to actually use it. |
https://www.semtech.com/products/wireless-rf/lora-transceivers/sx1268 |
Features section isn't docs - it's advertising. Judging by the actual docs (i.e. datasheet), SX126x either can't do MSK at all, or it is completely undocumented. |
Minimum frequency-shift keying or minimum-shift keying (MSK) is a particular spectrally efficient form of coherent FSK. In MSK, the difference between the higher and lower frequency is identical to half the bit rate. Consequently, the waveforms that represent a 0 and a 1 bit differ by exactly half a carrier period. The maximum frequency deviation is δ = 0.25 fm, where fm is the maximum modulating frequency. As a result, the modulation index m is 0.5. This is the smallest FSK modulation index that can be chosen such that the waveforms for 0 and 1 are orthogonal. |
So I guess a function beginMSK could be added which in turn can call befinFSK to set the deviation 0.25 times that of bitrate... Later the shaping filter value is already known to set gaussian filter... So GMSk is also solved |
Is there a reason to add it then? Since MSK is just a special case of FSK, I don't see any advantage in implementing a new |
At least one can add note somewhere in the examples or wiki, regarding this.
…On Fri, 27 Mar, 2020, 1:02 AM Jan Gromeš, ***@***.***> wrote:
Is there a reason to add it then? Since MSK is just a special case of FSK,
I don't see any advantage in implementing a new beginMSK method - it
would likely confuse users more than anything.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#35 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AETWPIEFOR2WFZ6DZXFWK23RJOUVZANCNFSM4IMAUZEQ>
.
|
Again - I'm not sure it's really beneficial. Users that need MSK in their application probably know how to achieve it. Users that don't need it or don't know what it is will only get confused, much like I was at the start of this issue. |
Docs claim that Semetech chips have capabilities for MSK and GMSK. Can those be invoked using some settings in code?
The text was updated successfully, but these errors were encountered: