Added node comms

This commit is contained in:
Zachary Sunforge
2024-06-22 22:49:15 -07:00
parent a95cb64941
commit 9e6acfee70
7 changed files with 66 additions and 6 deletions

View File

@ -19,8 +19,5 @@ The main concepts of Physical are:
* Node: A node hosts peripherals. A node can have a commander but does not need one. A node can ignore or even override
commands from the commander. In a complex system, nodes are intended to be kept simple, less likely to
encounter an error than the commander, and in some cases should check for obvious problems in commands from the
commander.
* Commander: A commander hosts nodes. It is possible for a device to be both a node and a commander at the same time,
although it may not be the best idea to make such a setup. There is no concept of nesting commanders built into
Physical. If some kind of abstraction for a computer that commands multiple commanders, which command nodes, is
necessary, it should be made for that specific application.
commander. Node can also communicate with other nodes.
* Commander: A commander hosts nodes. It performs long running computations and directs nodes based on the results.