Code Monkey home page Code Monkey logo

Comments (16)

Mr-Markus avatar Mr-Markus commented on June 5, 2024

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

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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.

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

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.

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

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.

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

Following from Z-Stack docs:

  • 0: POLL. A POLL command is used to retrieve queued data. This command is only applicable to SPI transport. For a POLL command the subsystem and Id are set to zero and data length is zero.
  • 1: SREQ: A synchronous request that requires an immediate response. For example, a function call with a return value would use an SREQ command.
  • 2: AREQ: An asynchronous request. For example, a callback event or a function call with no return value would use an AREQ command. 
  • 3: SRSP: A synchronous response. This type of command is only sent in response to a SREQ command. For an SRSP command the subsystem and Id are set to the same values as the corresponding SREQ. The length of an SRSP is generally nonzero, so an SRSP with length=0 can be used to indicate an error.

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

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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?

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

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)

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

Maybe one event thread per device / node^^

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

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

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024

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.

from zigbeenet.

Mr-Markus avatar Mr-Markus commented on June 5, 2024

And what did you mean with:

It should also handle any subscription to nodes.

from zigbeenet.

eiaro avatar eiaro commented on June 5, 2024
var ep = node.GetEndpoint<ZCLOnOff>[0]();
ep.Changed += (_,e) => DoSomething(e);

from zigbeenet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.