Conversation
…moved here The remote fork of TinyDTLS is now used solely for RIOT instead of Linux and Contiki. Also, all the dependencies that are static for TinyDTLs were moved from the examples/dtls-echo/Makefile to pkg/tinydtls/Makefile.dep .
|
Question, I just saw that the recently commit 59cc590 modified Do you want that I upload a third commit adding them back? Or I do the commit, and then squashed with the last one and then |
|
Do you know why they were removed? It was a mistake? |
|
A mistake from my part. |
|
Something seems wrong with this PR... Can you try to rebase? |
Main changes: - README.md has references for -ack_req (Crucial for good performance) - ECC is disabled by default. - Main Makefile only concerns about the application, not the package (ab6c232) - The idle time after sending packets is removed. - DEBUG is used instead of puts or printf (Except with errors) - Useless variables are removed. - Comments were upgraded.
4db2ad3 to
3d68e91
Compare
|
Squashing the fix for the override conflict seems to be the solution. |
pkg/tinydtls/Makefile
Outdated
| PKG_URL=https://github.com/rfuentess/TinyDTLS.git | ||
| # PKG_VERSION=RIOT-OS | ||
| PKG_VERSION=d06ad84d3e8bd3e86f7557faee34b68d5f8c0129 | ||
| PKG_VERSION=master |
There was a problem hiding this comment.
Do you want to actually use the HEAD of the master branch?
We use fixed commits or tags to ensure proper rebuilds.
There was a problem hiding this comment.
My idea behind using the master branch instead of a specific commit was to be able to be working with the package TinyDTLS without requiring to do a PR to RIOT. As the TinyDTLS package can still be improved for RIOT. This is why there was an extra commented line for a testing branch.
However, if this is a very bad course of action for RIOT. Then, I'll modify it to original approach.
Please don't. Currently, every commit in RIOT compiles exactly the same codebase, including packages. Changing a package to use a random branch HEAD, this property is lost. |
|
Please rename the PR. "pkg: tinydtls: " |
|
Changes done. |
|
Can you explain a bit why this is closed? I read the reference on #7177 but I cannot see why such PR deprecates this one. |
|
The commit for the Also, the client and server for the dtls-echo were upgraded in the new PR for supporting CoAP spoofed messages which also impacted in the |
Hi people!
I have been working on my TinyDTLS branch on the last days.
This PR brings 3 things:
I have been speaking with @kYc0o about what is next and for now is increasing the stability for ECC. But probably, that will be reflected only on my TinyDTLS fork. After that, I'll try again with
sock.This PR is free of the merge conflict of #6319