Mr-Markus / ZigbeeNet

A .NET Standard library for working with ZigBee
Eclipse Public License 1.0
131 stars 47 forks source link

Fix reader thread code to fit the CC protocol #19

Closed eiaro closed 5 years ago

eiaro commented 6 years ago

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.

Mr-Markus commented 6 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

eiaro commented 6 years ago

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.

Mr-Markus commented 6 years ago

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.

eiaro commented 6 years ago

I get it working using Z-Stack 3.0.1. 3.0.2 does not work (so far).

Mr-Markus commented 6 years ago

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.

eiaro commented 6 years ago

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...?

Mr-Markus commented 6 years ago

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

eiaro commented 6 years ago

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?

Mr-Markus commented 6 years ago

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)

eiaro commented 6 years ago

There should be an event thread running to enumerate the node info. It should also handle any subscription to nodes.

Mr-Markus commented 6 years ago

Maybe one event thread per device / node^^

eiaro commented 6 years ago

Sounds like a lot of work getting thread safe to no real advantage.

Mr-Markus commented 6 years ago

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...

eiaro commented 6 years ago

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.

Mr-Markus commented 6 years ago

And what did you mean with:

It should also handle any subscription to nodes.

eiaro commented 6 years ago
var ep = node.GetEndpoint<ZCLOnOff>[0]();
ep.Changed += (_,e) => DoSomething(e);