samples/net: Add KNOWN_ISSUES file for NATS and DNS sample apps
The KNOWN_ISSUES file describes issues and workarounds for the NATS and DNS sample applications. Change-Id: I9a33a82073707dbdd4109e0740108b99c42ad772 Signed-off-by: Flavio Santes <flavio.santes@intel.com>
This commit is contained in:
parent
8c55291e83
commit
e288040b7b
2 changed files with 51 additions and 0 deletions
17
samples/net/dns_client/KNOWN_ISSUES
Normal file
17
samples/net/dns_client/KNOWN_ISSUES
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
Issues
|
||||||
|
------
|
||||||
|
|
||||||
|
- RX or TX error:
|
||||||
|
Caused by:
|
||||||
|
net_send error, see:
|
||||||
|
https://jira.zephyrproject.org/browse/ZEP-428
|
||||||
|
https://jira.zephyrproject.org/browse/ZEP-676
|
||||||
|
|
||||||
|
Workaround:
|
||||||
|
Wait until the IP stack is "activated"
|
||||||
|
or reset the board.
|
||||||
|
|
||||||
|
Limitations
|
||||||
|
-----------
|
||||||
|
|
||||||
|
See the ./README_API file.
|
34
samples/net/nats_clients/KNOWN_ISSUES
Normal file
34
samples/net/nats_clients/KNOWN_ISSUES
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
Issues
|
||||||
|
------
|
||||||
|
|
||||||
|
- Unable to connect
|
||||||
|
Caused by:
|
||||||
|
Incorrect TCP flags handling from the Zephyr IP Stack.
|
||||||
|
Workaround:
|
||||||
|
Reset the board.
|
||||||
|
|
||||||
|
- Publisher or Subscriber error
|
||||||
|
Caused by:
|
||||||
|
The NATS server will send the PING message at configurable
|
||||||
|
intervals. If the PING message is not handled by the
|
||||||
|
client, the server will close the connection.
|
||||||
|
|
||||||
|
The NATS applications are synchronous, so if the PING
|
||||||
|
message arrives when the application is processing
|
||||||
|
another message (i.e. verbose = 1), the PING message
|
||||||
|
will be ignored and the server will close the connection.
|
||||||
|
Workaround:
|
||||||
|
Codify a routine similar to handle_msg (see main.c) to
|
||||||
|
handle all the incoming messages.
|
||||||
|
|
||||||
|
- RX or TX error
|
||||||
|
Caused by:
|
||||||
|
Perhaps the rx/tx timeouts are too short for the LAN.
|
||||||
|
Workaround:
|
||||||
|
Increase the rx or tx timeout.
|
||||||
|
See: publisher/src/netz.c, struct netz_ctx_t.
|
||||||
|
|
||||||
|
Limitations
|
||||||
|
-----------
|
||||||
|
|
||||||
|
See the ./README file.
|
Loading…
Add table
Add a link
Reference in a new issue