There isn't; the general intent is that interfaces are typed, so that you get compile-time checking. E.g., if you use a general Write interface, then someone could more easily connect components incorrectly. Take a look at CC2420Config, for example. It's a specific interface because its operations are CC2420 specific.
There are general sensing interfaces because there are sensor-independent libraries one wants to be able to put on top of them, such as buffering, storage, etc. But control/configuration doesn't generally fall into this category. Phil On Apr 22, 2014, at 4:39 AM, Matthias May <[email protected]> wrote: > Hello, > > is there a standard interface for split-phase write operations (a > counterpart to the Read interface)? I can only find the Set interface > for writing values backed by memory but I need to set configuration > parameters in an external chip and I prefer using standardized interfaces. > > Regards, > > Matthias > > _______________________________________________ > Tinyos-help mailing list > [email protected] > https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help _______________________________________________ Tinyos-help mailing list [email protected] https://www.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
