-
Notifications
You must be signed in to change notification settings - Fork 28
R&D NORM Groupchat #989
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
Open
DJ2LS
wants to merge
86
commits into
develop
Choose a base branch
from
ls-norm
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
R&D NORM Groupchat #989
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was
linked to
issues
Jun 23, 2025
Owner
Author
|
Basic message handling via GUI is now possible. This should make development easier. |
Owner
Author
|
Stuff to think about: How do we handle start of repeating messages?
|
Owner
Author
|
Options: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is for R&D for working on a NORM ( NACK Oriented Reliable Multicast https://en.wikipedia.org/wiki/NACK-Oriented_Reliable_Multicast ) Groupchat and for getting a feeling about the needs for database structure and the protocol itself.
This Pull Request is under active development.
Please do not use or merge unless you are directly contributing to this feature.
Goal is, working constantly on this one, while we keep up2date with latest code in
developbranch. This PR is considered to be a midterm work package.Because of the limited nature of RF transmissions, we can't implement NORM 1:1, but we can let us inspire.
How it should work:
Station A sends data "Hello World....^snip^". This data will be split into bursts of fixed sizes. In this case we talk about 3 bursts, but up to 15 are possible
Every burst contains the full message header
Station X receives burst 1 and 3
Station Y receives burst 1 and 2
Station X and Y requesting retransmission of burst 2 ( X ) and 3 ( Y ) via broadcast request
Station A receives the request of Station X and sends burst 2
Station X receives the request of station Y and sends burst 3
Station X and Y both receiving the corresponding data and all data can be assembled internally - success
Meanwhile Station Z also heard the burst retransmissions and continues with the same requesting procedure ....
Todos: