Closed eiaro closed 5 years ago
I have some ideas and already tried to implement it in a local branch. I will further work on it and update the status in this Issue
Nice. I think if the Read part is corrected with your knowledge of the protocol, we would jump light years ahead the next days.
I still struggle getting my CC2531 working. When I use a old ZNP hex I get a warning in Z Tool, but with the current ZNP hex it dosn't find my device at all.
I think so, too
Which Z-Stack version so you use? 3.0.2 is the latest. And you have to execute about 3 or 4 commands to find your device.
If you could explain the steps you are doing in Z-Tool I can help you.
I get it working using Z-Stack 3.0.1. 3.0.2 does not work (so far).
I also used 3.0.1 and it worked with it. Today I wanted to update it to the latest version, but there was no time for it. Luckily :-)
There is already another Cc2531 stick on its way to me. Then I would wait for it and flash latest firmware on that stick, so that I do not break my current hardware.
To me this looks like SREQ is the command and SRSP is the response, and AREQ is messages sent that isn't expected replies for the "user" sent from devices, nor does it expect a reply if sent from "user".
I don't see any commands where you send a SREQ and receives a SRSP, and then need to wait for AREQ...?
Following from Z-Stack docs:
So if i understanding it corrext an AREQ can be a callback function. And this mapping between an SREQ and an AREQ callback is done in zdo_ReqRspMap.json
Yes, but not the kind of callback you would wait for. Say you send a discovery to see what nodes is on, when would you return to the user? On the first node reply, or until you time out waiting for a unknown number of callbacks?
Ok i understand. And how do you think we should handle this?
One explicit example is the ZDO_SIMPLE_DESC_REQ which has an callback with ZDO_NODE_DESC_RSP. So if an SREQ is send it awaits an SRSP and also have an Event with that AREQ callback.
So... is it can be correct to queue it in the eventQueue like other AREQ. And the EventBridge class handles it (e.g. find device in the device list or database and enrich it's data)
There should be an event thread running to enumerate the node info. It should also handle any subscription to nodes.
Maybe one event thread per device / node^^
Sounds like a lot of work getting thread safe to no real advantage.
Yes, lot of work. But what if e.g. 100 devices are sending messages on network startup at the same time? Then processing AREQ Messages can improve usability.
But this could be an improvment after first stable version...
I'm sure 1 thread can manage that. Those 100 threads would block the queue, and the feeder thread would be unable to input data and you would easily get a dead lock.
And what did you mean with:
It should also handle any subscription to nodes.
var ep = node.GetEndpoint<ZCLOnOff>[0]();
ep.Changed += (_,e) => DoSomething(e);
This code need to be fixed so the CC protocol is implemented correct. My assumptions when writing it was more than slightly off, but should be a good basis.
Reading and parsing https://github.com/Mr-Markus/ZigbeeNet/blob/0d06cf9d5b402de25a95c8ea38ce89e1ff84090e/ZigbeeNet/CC/CCZnp.cs#L386-L412
Sending and waiting for response https://github.com/Mr-Markus/ZigbeeNet/blob/0d06cf9d5b402de25a95c8ea38ce89e1ff84090e/ZigbeeNet/CC/CCZnp.cs#L509-L514
Code does now allow the Cmd1 https://github.com/Mr-Markus/ZigbeeNet/blob/0d06cf9d5b402de25a95c8ea38ce89e1ff84090e/ZigbeeNet/CC/CCZnp.cs#L494-L507