Method and apparatus for storing interface information in a computer system

Information

  • Patent Grant
  • 5579482
  • Patent Number
    5,579,482
  • Date Filed
    Wednesday, July 26, 1995
    29 years ago
  • Date Issued
    Tuesday, November 26, 1996
    27 years ago
Abstract
An interface file structure for allowing transfer of information between nodes in a network and a binding process for configuring nodes in the network. The interface offers an advantageous format designed to provide for minimal reading and writing of records while requiring minimal storage space per record. Further, an advantageous format for storing numeric information is disclosed in which information providing the number of buffers allocated and the size of such buffers is stored in a single nibble thus reducing required storage space.
Description

BACKGROUND OF THE INVENTION
1. Field of the Invention
The present invention relates to the field of systems for distributed computing, communication and control and, more specifically, communication of information between devices in a distributed computing environment.
2. Description of the Related Art
In distributed computer systems it is necessary to provide for communication of information between nodes in the system. A number of methods for providing such communication are known in the art.
These methods include message passing techniques in which messages are passed, over a medium, from one node to another in a network. In message passing techniques, messages are built by a sender node and sent to one or more receiver nodes. The message is then parsed by the receiver node in order to correctly interpret the data. Message passing allows the advantage of passing large amounts of data in an expected format. Of course, over time the format of the message may be required to change to support new applications or features. This typically leads to compatibility issues between nodes on the network.
A second technique involves remote procedure calls in which a first node, requiring data which exists on a second node, calls a procedure executing on the second node where the data exists and requests the procedure to manipulate the data and provide a result to the first node. Remote procedure calls are typically suited to passing small mounts of data; however, a separate procedure call is typically required for each interchange. Therefore, it is likely in any networking system that over time additional procedure calls will be required in the network as new functions are carried out by the network. The addition of new procedure calls to certain nodes of the network leads to incompatibility between nodes, because the existing nodes do not know of and cannot execute the new remote procedure calls.
A third technique for communication of data in a network involves data sharing. Bal, Henri E., Steiner, Jennifer G., and Tanenbaum, Andrew S., Programming Languages for Distributed Computing Systems, ACM Computing Surveys, Vol. 21, No. 3, September, 1989, pp. 261-322 (hereinafter Bal et al.) describes certain data sharing techniques. A discussion of data sharing may be found in the Bal et al. article at pages 280, et seq. (It should also be noted that a discussion of messaging may be found in the Bat et al. article at pages 276, et seq. along with a general overview of interprocess communication and synchronization.)
Bal et al. describes how parts of a distributed program can communicate and synchronize through use of shared data. Bal et al, states that, if two processes have access to the same variable, communication can take place by one processor setting the variable and the other processor reading the variable. This communication is described as being allowed to take place whether the two processors are both running on a host where the shared data is stored and thus can manipulate the shared data directly, or if the processes are running on different hosts and access to the shared data is accomplished by sending a message to the host on which the shared data resides.
Two types of shared data are described: (1) shared logical variables; and (2) distributed data structures. Briefly, shared logical variables are described as facilitating a communication channel between processes through a "single-assignment" property. Initially, a shared logical variable is unbound, but once a value is assigned to the variable the variable is considered to be bound. An example is provided in which the three goals of conjunction:
goal.sub.-- 1 (X, Y), goal.sub.-- 2 (X, Y), and goal.sub.-- 3 (X)
are assumed and solved in parallel by processes P1, P2 and P3. The variable X is initially unbound and represents a communication channel between the three processes. If any of the processes binds X to a value, the other processes can use this value. Likewise, Y is a channel between P1 and P2. Processes synchronize by suspending on unbound variables. For example, if Y is to be used to communicate information from P1 to P2, then P2 may suspend until Y is bound by P1.
It should be emphasized that in the described concept of shared logical variables, the term binding is used to describe a process of assigning a value to a variable. As will be seen below, the term binding is also used to describe the present invention, however, the meaning of the term is significantly different and the reader is cautioned to avoid confusion between the concepts represented by these two uses of this term. Generally, in the present invention, the term binding is used to indicate a process of associating a variable of one node with a variable of at least one other node. It is not necessary that the variable of either node has yet been assigned a data value.
Distributed data structures are data structures which may be manipulated simultaneously by several processes. In concept, all processes share one global memory termed "tuple space" or TS. The elements of TS are ordered sequences of values, similar to records in a language such as Pascal. Three operations may take place on TS: (1) "OUT" adds a tuple to TS; (2) "READ" reads a tuple from TS; and (3) "IN" reads a tuple from TS and deletes it from TS. Thus, in order to change the value of a tuple in TS it is necessary to first perform an IN operation, then to manipulate the data, and then perform an OUT operation. The requirement that a tuple must first be removed by the IN operation makes it possible to build distributed systems without conflict between accesses by the various processes.
Bal et al. contrasts distributed data structures with interprocess communication techniques noting that communication accomplished by distributed data structures is anonymous. A process reading a tuple from TS does not know or care which other process inserted the tuple. Further, a process executing an OUT does not specify which process the tuple is intended to be read by.
Bal et al. states that in concept distributed data structures utilizing the tuple space implement conceptually a shared memory, although in implementation a physical shared memory is not required. However, as can be seen, in a system utilizing such distributed data structures a single copy of the data is stored in tuple space whether or not such tuple space is implemented as a single physical shared memory. Separate copies of the data are not maintained for the various processes or on the various hosts. In fact, maintaining separate copies would lead to data conflict possibilities as the various nodes attempted to coordinate updates of the variable between the various process and hosts. Thus, the reason for requiring use of the IN command to delete a tuple before allowing manipulation of the data represented by the tuple.
The present invention discloses a networked communication system which is perhaps closest in certain concepts to the described distributed data structures. However, it can, of course, be appreciated that certain advantages may be gained from development of a system which utilizes certain features of distributed data structures while retaining flexibility in allowing multiple copies of a data value to be stored on the various nodes.
The present invention discloses certain improved programming language and data structure support for communication, sensing and control as may be used by nodes of the present invention. It is known in the art to allow for scheduling of tasks through use of a programming statement such as a "when" clause or the like. However, in known systems such tasks may only be scheduled to be executed on the occurrence of a predefined event such as may be defined by the compiler writer. Examples of such events typically include expiration of a timer or input pin state changes. Such known systems do not allow for definitions of events, other than such predefined events. It has been discovered that it is useful to provide for definition of events as any valid programming language statement which may be evaluated to a true or false condition.
Of course, any number of known systems allow for declaration of variables and when declaring such variables certain parameters may be specified which may be set to a state indicative of a desired characteristic of the variable. For example, a variable may be declared as input or output, as a given variable type (e.g., boolean, numeric, etc.). However, once declared such characteristics are static and may only be changed by changing the source program which declares the variables. It has been discovered that it would be useful to provide for a system in which the state of at least certain parameters may be changed during system configuration allowing for greater flexibility in optimizing the system of the preferred embodiment.
Finally, in known systems it is necessary to call certain I/O library procedures to declare and use I/O devices. Such calls to I/O procedures may be quite complex and require significant skill on the part of the programmer to properly code and utilize the routines. The present invention discloses a system having improved methods for declaration and use of I/O devices.
OBJECTS OF THE PRESENT INVENTION
It is a primary object of the present invention to provide for improved communication of information between nodes of a distributed network.
It is more specifically an object of the present invention to provide for improved communication of information in a highly distributed computer system in which a problem may be broken down into small units in which each node accomplishes a small part of the entire application. In such a system, data communication may be typically accomplished in relatively small units of data--however, significant communication of data between nodes of the network is required.
It is further an object of the present invention to provide for improved communication of information in a distributed computing system by allowing for standard communication techniques between nodes.
It is still further an object of the present invention to provide for improved communication of information by providing certain facilities, structures and tools for such communication.
It is also an object of the present invention to provide improved data structures and programming language support for communication and other aspects of the present invention.
As one aspect of providing such improved data structures and programming language support, it is one aspect of the present invention to provide for declaration of variables having configurable parameters leading to improved ability to maintain and optimize networks of the present invention.
As another aspect of providing such improved data structures and programming language support, it is desired to provide for increased ease in declaring and communicating with I/O devices of the present invention.
As still another aspect of providing such improved data structures and programming language support, it is desired to provide for improved scheduling functions allowing for use of programmer-defined or predefined events in scheduling of tasks to be executed.
It is also an object of the present invention to provide simplified installation and network maintenance. Such an objective may be accomplished by storing in each node the node's application interface such that nodes may identify themselves and their application requirements to a network management node at installation time and when it is necessary to recover the complete network database.
To accomplish such a simplified installation and maintenance objective, it is a further objective of the present invention to define an interface file format which may efficiently store and allow retrieval of such identification and application requirement information.
These and other objects of the present invention will be better understood with reference to the Detailed Description of the Preferred Embodiment, the accompanying drawings, and the claims.
SUMMARY OF THE INVENTION
A network for communicating information having at least a first and second node is described in which each node includes data storage for storing data presenting a variable V and further includes a processor coupled with the data storage. In the case of the first node, the processor may manipulate and write to new values to the variable V. After having updated the variable V with a new value, the processor then assembles and communicates a packet for transmission on the network. The packet includes the new data value for the variable V. The second node then receives the packet and stores the new value for the variable V in its data storage.
In particular, during programming of the first node, it is declared as a writer of the variable V and likewise during programming of the second node, it is declared as a reader of the variable V. During configuration of the network, a communication connection between the first node and the second node is defined and during later communication of message packets, addressing of message packets between the various nodes is accomplished through use of address tables based on the definition of such connections.
Further, it is disclosed to utilize a standardized set of variable types in accomplishing such communication. Use of a standardized set of variable types leads to increased compatibility between nodes of different manufacture as well as increased ease in configuring networks.
Finally, certain extensions are provided to standard programming languages to provide for increased ease of use of the data communication features of the present invention.





These and other aspects of the present invention will be apparent to one of ordinary skill in the art with further reference to the below Detailed Description of the Preferred Embodiment and the accompanying drawings.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 is a logical view of a configuration of devices as may be networked using methods and apparatus of the present invention.
FIG. 2 is a diagram illustrating an embodiment of the network of FIG. 1 as may be accomplished by the present invention.
FIG. 3(a) is a diagram illustrating a second embodiment of the network of FIG. 1 as may be accomplished by the present invention.
FIG. 3(b) is a second diagram illustrating the second embodiment of FIG. 3(a) and including a logical view of certain connections of nodes of the network.
FIG. 4 is an overall block diagram of a single node of the present invention coupled with a communication medium.
FIG. 5 is an overall flow diagram illustrating a method of programming and configuring a network as may be accomplished by the present invention.
FIG. 6 is a flow diagram illustrating a method for defining hardware requirements of a node as may be utilized by the present invention.
FIG. 7 is a flow diagram illustrating a method for defining network and logical parameters of a node as may be utilized by the present invention.
FIG. 8(a) is a flow diagram illustrating a method for defining connections among network variables as may be utilized by the present invention.
FIG. 8(b) is a flow diagram illustrating a method for binding network variables as may be utilized by the present invention.
FIG. 9 is an illustration of certain data structures which may be utilized by the present invention.
FIG. 10 is a flow diagram illustrating a method of configuring a network using standard network variable types, as may be utilized by the present invention.
FIG. 11 is a flow diagram illustrating a method of declaring and configuring a network variable as may be used by the present invention.
FIG. 12 is a flow diagram illustrating a method of declaring and accessing I/O devices as may be utilized by the present invention.





For ease of reference, it might be pointed out that reference numerals in all of the accompanying drawings typically are in the form "drawing number" followed by two digits, xx; for example, reference numerals on FIG. 1 may be numbered 1xx; on FIG. 9, reference numerals may be numbered 9xx. In certain cases, a reference numeral may be introduced on one drawing, e.g., reference numeral 201 illustrating a communication medium, and the same reference numeral may be utilized on other drawings to refer to the same item.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT
An improved computer network including facility for communication of information between nodes in the network is described. In the following description, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be obvious, however, to one skilled in the art that the present invention may be practiced without these specific details. In other instances, well-known circuits, structures and techniques have not been shown in detail in order not to unnecessarily obscure the present invention.
OVERVIEW OF THE NETWORK OF THE PRESENT INVENTION
The network of the preferred embodiment is of the type which provides for sensing, control and communication. The network of the present invention and nodes utilized within the network of the present invention are described in greater detail with reference to U.S. Pat. No. 4,918,690 Markkula et al. titled "Network and intelligent cell for providing sensing, bi-directional communications and control", which patent is assigned to the assignee of the present invention (referred to herein as the '690 patent).
In an exemplary network, the network of the present invention may provide for sensing of current environmental factors and control of apparatus affecting the environmental factors. Further, the network may allow for communication of information packets providing information on the environmental factors between nodes in the network. The present application will utilize, as an example, a network for control of fans based on sensing and communicating information regarding temperature in different zones in a controlled environment.
It might be worthwhile noting that in an expected scenario, various manufacturers will include a node of the type defined by the present invention in their products. For example, a thermostat manufacturer may include such a node in its thermostats. A fan manufacturer may include such a node in its fans. The various nodes may be programmed for specific applications by their respective manufacturers and, when configured in an environmental control system, are useful for communication, sensing and control between various components of the system. A node of the preferred embodiment is illustrated in block diagram form with reference to FIG. 4. Such nodes may be programmed, for example, using the "C" computer programming language. As one aspect of the present invention, certain extensions have been provided to the "C" language to facilitate network communications.
As a further and important aspect of the present invention, network variables are described which provide for communication of information between nodes of the network. A network variable may be thought of as a data object shared by multiple nodes where some nodes are "readers" and some nodes are "writers" of the object. This will be discussed in greater detail below.
A Network as may be Implemented Utilizing the Present Invention
Referring now to FIG. 1, a logical view of a network as may utilize the present invention is shown. The network may, for example, include three separate temperature sensors 115-117 located in three separate zones of a building for sensing and communicating temperature information. The network may further include two control cells 101 and 121 coupled to receive temperature information from the sensors 115-117 and to control two fans 131-132 (by turning the fans 131-132 on and off).
In the exemplary network, network variable temp.sub.-- out 151 is coupled to a first network variable temperature input 102 of control cell 101. Network variable temp.sub.-- out 152 is coupled with a second network variable temperature input 104 of control cell 101. In the illustrated embodiment, a third network variable temperature input 103 is not utilized. On/Off control network variable 105 of control cell 101 is coupled to control an input network variable, On/Off, of a fan 131. Thus, in this embodiment, sensing a temperature above a given level in the zone of the building sensed by temperature sensor 115 or by temperature sensor 116 will cause fan 131 to be turned on. Likewise, when the temperature in these zones is again lowered below a given level, the fan 131 may be turned off.
Network variable temp.sub.-- out 152 is also coupled to a first temperature input network variable 122 of control cell 121. In addition, network variable temp.sub.-- out 153 is coupled to a second temperature input network variable 123 of control cell 121. A third temperature input 124 of control cell 121 is not utilized in this embodiment. Control cell 121 is coupled through an On/Off control output network variable 125 to control fan 132. Thus, sensing a temperature above a given level in the zone of the building sensed by temperature sensor 116 or by temperature sensor 117 will cause fan 132 to be turned on. Likewise, when the temperature in these zones is again lowered below a given level, the fan 132 may be turned off. As is appreciated, in the described configuration, when temperature sensor 116 detects a high temperature, both fan 131 and fan 132 are turned on.
FIG. 1 has been labeled to illustrate logical connections between the various components. Connection 141 is illustrated as the connection between temperature sensor 115 and control cell 101. Connection 142 is illustrated as the connection including temperature sensor 116, control cell 101 and control cell 121. Connection 143 is illustrated as the connection between control cell 101 and fan 131. Connection 144 is illustrated as the connection between sensor 117 and control cell 121. Connection 145 is illustrated as the connection between control cell 121 and fan 132. The connection of network variables will be discussed in greater detail below. However, it may now be useful to introduce three new terms: network variables, readers, and writers. In addition, general definitions for certain other terms used in this specification may be found with reference to Table XV.
As one important aspect of the present invention, the present invention provides for allocation and use of network variables by processes running on nodes in a network. As stated above, network variables may be thought of as a data object shared by multiple nodes where some nodes are "readers" of the object and other nodes are "writers" of the object. Additionally, a node may be both a reader and a writer with "turnaround". Writing with turnaround is discussed in greater detail below. Although the data object may be thought of as being shared by multiple nodes, as will be understood from the discussion below, the network variable of the preferred embodiment is not stored in shared memory but rather separate memory is provided in each of the multiple nodes to store a copy of the data object. A writer node may modify the value of the data object and all reader nodes of that network variable have their memories updated to reflect the change. Thus, for example, each of the temperature sensors 115-117 may run a process which declares a data object as follows:
network output boolean temp.sub.-- high.
Each of the controller cells 101 and 121 may declare data objects as follows:
network input boolean temp.sub.-- high
network output boolean fan.sub.-- on.
Each of the fans 131-132 may declare a data object as follows:
network input boolean fan.sub.-- on.
The complete syntax for declaration of network variables in the system of the preferred embodiment is given in Table VIII. The keyword "network" indicates the data object is a network variable. A network variable declared as output will result in transmission of the new value of the network variable on the network when the program stores the variable--thus, nodes having declared an output network variable are considered writer nodes for that variable. For example, each time a process running on temperature sensor 115 stores the variable temp.sub.-- high, a network message is generated communicating the new value of temp.sub.-- high. The message is communicated to all reader nodes connected in connection.sub.-- 1 141, i.e., to control cell 101. In the case of temperature sensor 116 changing the value of its temp.sub.-- high variable, a message is generated and transmitted to all nodes connected in connection.sub.-- 2 142, i.e., to both control cell 101 and to control cell 121. The process for configuring connections as disclosed by the present invention will be discussed in greater detail below.
Although the preferred embodiment declares nodes as either writers or readers of network variables, it should be noted that in an alternative embodiment a node may be declared as a both a reader and writer of a particular variable. Such an embodiment may be envisioned without departure from the spirit and scope of the present invention.
It might be that the present invention in its preferred embodiment allows an output network variable to be initialized using an initialization command without causing a message to be transmitted on the network. Using this command, a node may be initially configured or reset without affecting other nodes on the network.
Network variables declared as input may change values asynchronously with program execution--this declaration is used for "reader" nodes. In the preferred embodiment, input network variables may also change values at program initialization or at other points under program control; however, the changed value will not be transmitted on the network.
At anytime, a reader node may force an update of its input network variables utilizing a polling function of the present invention. When this function is called, the specified network variables are updated by requesting over the network the current value from the writer node or nodes. This facility may be useful, for example, after a node reset to allow the node to determine the current value of network variables without need to wait until the next time the writer nodes update the value of those variables.
Thus, temperature sensors 115-117 are writer nodes of the variable temp.sub.-- high. Control cells 101 and 121 are reader nodes of the variable temp.sub.-- high and also are writer nodes of the variable fan.sub.-- on. Fans 131-132 are reader nodes of the variable fan.sub.-- on.
Of course, many other applications and configurations are within the scope of the teachings of the present invention and the network described with reference to FIG. 1 is merely exemplary.
It should be noted that multiple readers and multiple writers may be provided within a single connection without departure from the spirit and scope of the present invention. Multiple readers are illustrated with reference to connection.sub.-- 2 142. Multiple writers have not been illustrated by FIG. 1. However, variation in which multiple writers are employed will be readily apparent to one of ordinary skill in the art.
Turning to FIG. 2, an embodiment of the network of FIG. 1 is illustrated in which each of cell 101, cell 121, temperature sensor 115, temperature sensor 116, temperature sensor 117, fan 131 and fan 132 are each coupled to communicate over common communication medium 201. The communication medium 201 may be, for example, twisted pair wiring, radio frequency, power lines, or other communication channels or multiple physical channels connected together with bridges and/or routers. In this embodiment, and in order to accomplish the connections illustrated by FIG. 1, temperature sensor 115 must be configured to address and communicate with cell 101; temperature sensor 116 must be configured to address and communicate with cell 101 and cell 121; temperature sensor 117 must be configured to address and communicate with cell 121; control cell 101 must be configured to address and communicate with fan 131; and control cell 121 must be configured to address and communicate with fan 132.
Of course, providing for such addressing may be and typically is a significant task. It is appreciated that each of control cells 101 and 121, temperature sensors 115-117 and fans 131-132 may be engineered, programmed and/or manufactured by different sources. Further, although the exemplary network is, in itself, complicated having 5 separate connections, 141-145, it can of course be imagined that other networks may be substantially more complicated having even hundreds or more connections. Therefore, the present invention implements methods and apparatus which allow for straightforward and efficient configuration of nodes in a network.
Turning now to FIG. 3(a), a modified embodiment of the configuration of FIG. 2 is illustrated. In this embodiment, controller cells 101 and 121 have been removed from the configuration and each of temperature sensors 115-117 and fans 131-132 are illustrated as comprising nodes 301-305, respectively. These nodes are preferably of the type which are capable of sensing, communicating and controlling as have been described in the '690 patent and which are shown in greater detail with reference to FIG. 4. Thus, these nodes 301-305 are capable of replacing certain control functions of the control cells 101 and 121, eliminating the need for separate control cells in the described embodiment. In the embodiment of FIG. 3(a), and in order to accomplish the logical connections illustrated by FIG. 1, node 301 must be configured to communicate with node 304; node 302 must be configured to communicate with nodes 304 and 305; and node 303 must be configured to communicate with node 305. Again it is important to note that the temperature sensors 115-117 and fans 131-132 may be manufactured by different sources. It is preferable that the manufacturing sources are not required to have prior knowledge as to what devices their products will communicate with in a network. Thus, the manufacturer of temperature sensor 115 is preferably not required to be aware, during programming and manufacture of temperature sensor 115, whether temperature sensor 115 will be configured in a network to communicate with a controller cell, such as controller cell 101 (as shown in FIG. 2), or to communicate directly with a fan, such as fan 131 (as shown in FIG. 3(a)), or even with some other device (perhaps a heater, air conditioner, fire extinguishing equipment, etc.). Likewise, it is preferable that the manufacturer of fans 131-132 are similarly allowed to manufacture devices without requirement of prior knowledge as to the eventual uses of those devices in a network.
In order to allow for such flexibility in configuring networks and to allow for efficient communication between nodes in a network, the present invention provides network variables which may be used to facilitate standards of communication between nodes in the network.
Table I illustrates a temperature sensor control program as may be used to program nodes 301-303 coupled with temperature sensors 115-117. As can be seen, the program of Table I is written to communicate onto the medium 201 a network variable indicative of the state of temp.sub.-- in. The value of this variable may be, for example, used by a control program running on a control cell, such as control cell 101 or 121, or used directly by a control program running on a fan, such as fans 131-132.
Table II illustrates a fan control program which may be used for controlling a fan such as fans 131-132 by turning the fan on and off responsive to receiving changes in state of a network variable on.sub.-- off. As can be seen, the program of Table II is written to allow receiving from the medium 201 the network variable on.sub.-- off as a binary network variable regardless of the some (e.g., whether from a control cell such as control cell 101 or 121, or directly from a temperature sensor, such as temperature sensor 115-117).
Table III illustrates a binding set which connects temperature sensors 115-117 with fans 131-132 as illustrated by FIG. 3(a). FIG. 3(b) is provided to further an understanding of the binding set. As can be seen, the binding set provides for three connections illustrated as temp1.sub.-- controls 321, temp2.sub.-- controls 322, and temp3.sub.-- controls 323 of FIG. 3(b). The connection temp1.sub.-- controls connects the output variable temp.sub.-- high of temperature sensor 115 with the input variable fan.sub.-- on of fan.sub.-- 1 131. The connection temp2.sub.-- controls connects the output variable temp.sub.-- high of temperature sensor 116 with the input variable fan.sub.-- on of both fan.sub.-- 1 131 and fan.sub.-- 2 132. Finally, the connection temp3.sub.-- controls connects the output variable temp.sub.-- high of temperature sensor 117 with the input variable fan.sub.-- on of fan.sub.-- 2 132.
It should be noted that although tables I, II and III illustrate programs which are useful for illustrative concepts of the present invention, an attempt has not been made to ensure these programs are syntactically correct. Rather, these programs are provided for the exemplary teaching of concepts of the present invention. It is understood from an examination of the programs of tables I and II that the program of Table I may write the variable temp.sub.-- high without regard to the eventual recipient of the variable and likewise the program of Table II may read the variable fan.sub.-- on without regard to the writer node of the variable. Thus, these programs work equally well in a network such as illustrated by FIG. 2 including separate control cells 101 and 121 or in a network such as illustrated by FIG. 3(a) which does not include such control cells. The binding set illustrated by Table III determines the relationship between the various nodes of the network. Table IV illustrates a binding set which may be used to establish connections in a network such as illustrated by FIG. 2.
A Node of the Present Invention
FIG. 4 illustrates a block diagram of a node such as nodes 301-305 as may be utilized by the present invention. The node 421 is coupled in communication with medium 201 through control 411, clock and timer circuitry 412, and communication port 408. In addition, the node provides a general purpose I/O port 407 allowing for communication with various external devices. The node further comprises three separate processors 404-406, a read only memory (ROM) 403, a random access memory 402, and an EEPROM 401. The processors 404-406 are useful for executing programs such as the programs illustrated in Tables I and II, as well as other communication, control and operating programs. The ROM 403 may be useful for storing such programs. As will be seen, the EEPROM 401 may be useful for storing certain data values which, although configurable, are not subject to frequent changes in value. Each of the processors 404-406, ROM 403, RAM 402, EEPROM 401, control 411, clock 412, I/O port 407, and communication port 408 are coupled in communication through internal address bus 410, internal data bus 420 and timing and control lines 430.
PROGRAMMING AND CONFIGURING A NETWORK OF THE PRESENT INVENTION
Turning now to FIG. 5, steps for programming and configuring a network of the present invention are illustrated. It should be noted that steps illustrated by FIG. 5 are implemented in a development system which allows for development and management of networks such as may be implemented by the present invention. However, certain of these steps may also take place outside of the development environment (e.g., connection of network variables and binding). The development system is an integrated hardware and software environment that operates in conjunction with a host computer, an IBM PC/AT compatible in the currently preferred embodiment, allowing a manufacturer or other party to design and build components compatible for communication with a network of the present invention.
The development system includes an IBM PC/AT-compatible computer having an interface adapter card for coupling with a control processor located in a separate card cage. In addition to the control processor, the card cage may hold other cards designed to emulate routing functions in a network and transceiver evaluation boards allowing evaluation of the physical interface with various media, e.g., twisted pair, power line, or radio frequency.
Initially certain hardware parameters are defined for each node in the network, block 501. This step includes naming or otherwise identifying the node, block 601. A node type is specified, block 602. In the development environment, the node type may be specified as the control processor, an emulator board, or a custom node type. The location of the node is then specified--the location specifies whether or not the node resides in a card cage and, if the node resides in a card cage, the card cage number and slot number, block 603. Next, the channel to which the node is connected is specified, block 604, and the channel's priority is specified, block 605. If the node has been assigned the priority privilege, then the node's priority is set at this time. Finally, certain hardware properties may be specified, block 606. Hardware properties may include model numbers for the node, clock rates, operating system revision levels, ROM size, RAM size, EEPROM size, RAM start address, and EEPROM start address. Finally, the hardware definitions are downloaded to the node, block 607.
Next, network and certain logical parameters are specified for each node, block 502. Currently, this step involves specifying a node name, block 701, and then specifying a program file, block 702, selecting a logical network location of the node, block 703, and hardware device name, block 704 associated with the node. Hardware names were specified above in step 601. Program files will be discussed in greater detail below in connection with block 503. The definition of the node is then saved, block 705.
The development environment provides an editor for developing and editing program code, block 503, such as the code illustrated in tables I and II. The preferred embodiment allows programming in the "C" language and, further, provides certain extensions to the "C" language which will be discussed in greater detail below. After developing program code, the programs are compiled, linked and loaded as executable programs, block 504, onto the nodes specified in definition of network and logical parameters, block 502.
Connections are then specified for the network, block 505. This step is better illustrated with reference to FIG. 8(a). Initially, a connection name is entered (for example, the connection names specified in the binder script of Table III are temp1.sub.-- controls, temp2.sub.-- controls and temp3.sub.-- controls), block 801. In the preferred embodiment, the connection name is entered as a unique name having from one to 16 characters consisting of letters, numbers and underscores; no spaces are allowed.
Next, a node name is selected, block 802. In the preferred embodiment, a list of defined nodes (i.e., nodes which have been previously defined as described in connection with block 502) is displayed and a valid node name may be selected from the displayed list. For example, the node temp.sub.-- sensor.sub.-- 1 may be selected. After selecting a node name, block 802, a network variable name is selected, block 803. Again, a list of network variable names for the selected node are preferably displayed and a network variable name is selected from the displayed list. For example, the network variable temp.sub.-- high may be selected.
After completing this process for a first node, a second node may be selected, block 804. Again, a node list is preferably displayed and the second node is selected from the displayed node list. For example, the node fan.sub.-- 1 may be selected. A network variable associated with the second node is then selected, block 805, again preferably from a displayed list. Continuing the example, the selected network variable may be fan.sub.-- on.
Finally, certain parameters may be set, block 806. In the preferred embodiment, settable parameters include the retry count set to the maximum number of times the message will be sent, the retry timer for acknowledged services, and the repeat timer for unacknowledged/repeated messages. This aspect of the present invention will be discussed in greater detail below.
The connection is then added to a connection list using an add function, block 807. It is noted that if additional nodes are to be connected in the connection, they are specified in a similar manner to the fast and second nodes after having specified the fast and second nodes. An example of such a connection is illustrated in Table III as temp2.sub.-- controls which includes three nodes: temp.sub.-- sensor.sub.-- 2, fan.sub.-- 1 and fan.sub.-- 2.
The process of FIG. 8(a) is repeated for each desired connection. In the case of the binding set of Table III, the process is repeated three times: (1) once for the connection named temp1.sub.-- controls; (2) once for the connection named temp2.sub.-- controls; and (3) once for the connection named temp3.sub.-- controls. In the case of the binding set of Table IV, the process is repeated five times, once for each of connection.sub.-- 1, connection.sub.-- 2, connection.sub.-- 3, connection.sub.-- 4, and connection.sub.-- 5.
In the preferred embodiment, the output of the connection process is a binary script file that provides commands to drive the subsequent binding process. In order to provide a textual version of what this binary file looks like, Table III and Table IV have been provided.
It is also within the power of one of ordinary skill in the art to develop a graphical user interface for drawing the connections between iconic representations of the nodes and creating a binder script based on such drawings.
Finally, the network variables are bound, block 506, to their respective nodes in order to allow communication within the connections defined during execution of the steps of FIG. 8(a). The preferred method of binding network variables is described in greater detail with reference to FIG. 8(b).
Initially, the list of connections developed during execution of the steps of FIG. 8(a) is read, block 821. Then, certain type checking and message constraint checking is performed for each connection, block 822. The type and message constraint checking includes the following checks:
(1) Ensure that there are at least two members in each connection;
(2) Ensure that there is at least one output member and one input member for each connection;
(3) In the preferred embodiment, no more than one input and one output network variable from the same node may appear in the same connection;
(4) A warning is given if polled output variables are not attached to at least one polled input;
(5) An estimate for message rates may be declared for network variables; a warning is given if the estimated message rates do not match for all members of a connection;
(6) Network variables may be synchronized or non-synchronized--a warning message is provided if synchronized variables are bound to non-synchronized variables;
(7) Network variables may be sent as authenticated--a warning is provided if some, but not all, members of a connection are declared as authenticated; and
(8) Variable types are checked field-by-field for size and sign type matching and for type definition matching. The currently preferred list of type definitions are provided in Table V.
After completing type and message rate constraint checking, the addressing mode for the network variable is determined, block 824. If there is only one destination (e.g., temp1.sub.-- controls), subnet-node addressing is used using the subnetnode structure given below to create an entry in address table 901. Address table 901 will be discussed in greater detail below. The address entered in the address table 901 is the address of the destination node (e.g., in the case of temp1.sub.-- controls, the address of fan.sub.-- 1 is entered in the address table of temp.sub.-- sensor.sub.-- 1; conversely, the address of temp.sub.-- sensor.sub.-- 1 is entered in the address table of fan.sub.-- 1 to allow for such functions as polling of the current status of the network variable). The address table index entry 912 is set to correspond to the location in the address table 901 corresponding with the address entered in the address table 901. For example, in the case of the bind set of Table III, if the address of FAN.sub.-- 1 is entered as a network address 913 in the address table 901 at entry 001, the address table index entry 912 of the network variable table 903 corresponding to the network variable id assigned to the connection temp1.sub.-- controls is written with the address 001. In this way, whenever messages are sent on the network by temp.sub.-- sensor.sub.-- 1 indicating the value of temp.sub.-- high has been updated, the address table index is used to lookup the address of the destination node of such a message. A message is then sent, addressed to the destination node, including the network variable id and the new value. The destination node then receives the message and is able to update the value of its corresponding network variable "fan.sub.-- on".
If there is more than one destination node (e.g., temp2.sub.-- controls), group addressing is used using the above group address structure to create an entry in the address table 901. In the case of group addressing, a set of sender and destinations for the network variable is constructed. For example, in the case of the connection temp2.sub.-- controls, the set of sender and destinations includes temp.sub.-- sensor.sub.-- 2, fan.sub.-- 1 and fan.sub.-- 2.
Other optimization steps are also provided by the binder of the preferred embodiment and are described in further detail below.
After determining an addressing mode, for each unique set of sender and destinations (unique without respect to which nodes are senders and which nodes are receivers), a group address is assigned to the set, block 825. The group address is propagated to the address table of each of the nodes in the set and stored in their respective address tables 901. The address table index value 912 for the entry corresponding to the group address is updated to index the address table 901 at the new entry. For example, group1 is defined to include temp.sub.-- sensor.sub.-- 2, fan.sub.-- 1 and fan.sub.-- 2 and the group address is stored at entry 002 of the address table 901. Then, the address table index 912 for each of the three nodes temp.sub.-- sensor.sub.-- 2, fan.sub.-- 1 and fan.sub.-- 2 is updated to point to the new address table entry.
For group address table entries, as described above, only the output network variable nodes actually set their network variable table entries to index the address table. The nodes with input network variables will not index the address table. This allows the same network variable to reside in several network variable connections, and many network variable groups. When an incoming message arrives for one of these input network variables, the correct network variable table entry is found using the network variable ID (the software matches the network variable ID in the message to one in the table).
This "intersecting connection" ability makes the network variable concept more powerful by allowing the same variable to be updated by several groups, thus reducing both the overall network traffic and reducing network variable table space by sharing the same table entry among several connections.
Finally, a single network variable identification number (netvar.sub.-- ID) is assigned to each network variable in the connection, block 823. This may be better understood with reference to FIG. 9 which illustrates a network variable table 902 having a network variable identification field 911 and an address table index field 912. Further, an address table 901 is illustrated having a network address field 913. It should be noted that these tables preferably reside in each individual node's EEPROM 401 and have additional fields in the preferred embodiment. However, for simplicity only the above-mentioned fields are illustrated in FIG. 9. The network variable table is preferably of a structure as follows:
______________________________________struct nv.sub.-- table{ unsigned priority:1; /*1=priority network variable, 0=non- priority nv*/ unsigned dir:1; /*direction 0=input, 1=output*/ unsigned idhi:6; /*network variable id, most significant bits*/ unsigned idlo; /*network variable id, least significant bits*/ unsigned ta:1; /*turnaround: 1=turnaround*/ unsigned st:2: /*service*/ unsigned auth:1; /*authenticated: 1=authenticated*/ unsigned addr:4 /*address table index*/};______________________________________
where the priority field indicates whether messages to update the network variable are to be sent as priority or non-priority messages; direction indicates the direction of the target ID, for example, a network variable update going from an output variable to an input variable would have the direction bit set to a 0; the network variable id is a 14 bit identification number allowing for a maximum of 16,384 unique network variables per domain in the network and corresponds to the network variable id 911 of FIG. 9; turnaround indicates an output network variable may be connected to an input network variable of the same node; service indicates whether acknowledged or unacknowledged services is utilized; auth indicates whether message are authenticated prior to being accepted and processed by identifying the sender node through an authentication process; priority indicates whether messages are transmitted as priority or normal messages; and the address table index corresponds to address table index 912 and is an index into the address table 901.
The Address Table preferably follows one of two formats given below; the first format is for group address table entries and the second format is for single destination node address table entries:
______________________________________struct group{ unsigned type:1; /*indicates whether the structure is for a group or single node*/ unsigned size:7; /*group size (0 for groups > 128 members*/ unsigned domain:1; /*domain reference*/ unsigned member:7; /*node's member # (0 for groups > 128 members*/ unsigned rpttimer:4; /*unacknowledged message service repeat timer*/ unsigned retry:4; /*retry count*/ unsigned rcvtimer:4; /*receive timer index*/ unsigned tx.sub.-- timer:4; /*transmit timer index*/ int group; /*group id*/struct subnetnode{ unsigned type; /*indicates whether the structure is for a group or single node*/ unsigned domain:1; /*domain reference*/ unsigned node:7; /*node's #*/ unsigned rpttimer:4; /*unacknowledged message service repeat timer*/ unsigned retry:4; /*retry count*/ unsigned rsvd:4; /*reserved*/ unsigned tx.sub.-- timer:4; /*transmit timer index*/ int subnet; /*subnet*/}______________________________________
It should be noted here that many of the present invention's concepts of groups, domains, subnets, acknowledged messages, etc. are described in greater detail with reference to U.S. patent application Ser. No. 07/621,737 filed Dec. 3, 1990 titled Network Communication Protocol (the '737 application) which is assigned to the assignee of the present invention and which is incorporated herein by reference.
Continuing with the description of assigning a network variable id to a connection, block 823, the first unassigned network id is assigned to the connection and the network variable id is written to the network variable table 902 for each node using the network. Thus, in the above example, the network variable id 00000000000000.sub.2 may be assigned to the connection temp1.sub.-- controls of Table III; the network variable id 00000000000001.sub.2 may be assigned to the connection temp2.sub.-- controls of Table III; and the network variable id 00000000000010.sub.2 may be assigned to the connection temp3.sub.-- controls of Table III. It should be noted that network variable ids need not be unique domain wide, but only need be unambiguous within the nodes involved.
Certain advantages gained through use of network variables have now been described such as the ability to automatically generate network addressing schemes from application level connections. In addition to allowing for such ease of use, network variables lead to generally smaller and less complicated application programs over other forms of network communication, such as prior art messaging techniques. Tables V and VI better illustrate differences between and certain advantages of use of the present invention's techniques over, for example, prior messaging techniques. Table V is a program written using network variables of the present invention. Table VI is a functionally equivalent program written using prior art messaging techniques. It is useful to note the comparative program statistics at the end of each program listing in which it is shown that the message program requires 626 bytes of ROM; 177 bytes of EEPROM; and 1314 bytes of RAM. By way of comparison, the network variables program requires only 335 bytes of ROM while using 231 bytes of EEPROM and only 1126 bytes of RAM.
SELF-IDENTIFYING STANDARD NETWORK VARIABLE TYPES
It is desirable to provide for interoperability between nodes in a network. To provide for such interoperability, it is necessary to assure compatibility between network variables in the various nodes of a network. To facilitate such compatibility, as one feature of the present invention, a list of standard network variable types is provided by the assignee of the present invention. The currently preferred list of standard network variable types is provided as Table VII. By utilizing the list of standard network variable types, nodes in the network may be interrogated for information on the network variables employed by the node and the network may then be configured based on this information. This process is better illustrated with reference to FIG. 10.
Initially, a node which must be configured is coupled to the network medium, block 1001. After the node is coupled to the medium, an address of the node may be determined through any number of methods. At least one of such methods is described with reference to the '737 application. After having determined an address for the node, messages may be communicated to the node over the medium. In the preferred embodiment, a network management node is coupled to the medium which is useful for configuring the network. The network management node may communicate a command to the new node requesting its information on the network variables employed by the node, block 1002, or may alternatively read such information from a file which has already been placed in the network management node's memory.
In the preferred embodiment, in order to allow for the information to be stored in the network management node's memory, such information is made available for importation into the network management node via a binder interface file (BIF). The BIF file is a byproduct of the compilation process for each node, and contains all the information necessary to install the node on the network. This information is also referred to as the exposed interface of the node.
The BIF file for a new node may by provided to the network management node prior to installation of the new node on the network in order to allow a complete network database to be constructed in advance of, and separate from, the physical installation of the new node on the network. For example, the BIF file may be supplied to the network management node on diskette, over phone lines, or on through other computer readable media.
Information equivalent to the information stored in the BIF file is also preferably stored in the memory of the node. In this case the preferred embodiment confines the application writer to use of a list of standard network variable types when developing an application program designed to run on the node. The list of standard network variable types used by the system of the preferred embodiment is enumerated in Table VII. Use of the list of standard network variables minimizes the required space for storing the exposed interface in the node's memory. Storing the exposed interface in the node's memory offers the advantage of allowing the information to be retrieved without need for the network management node to include a floppy disk drive or other device for receiving externally communicated computer readable information. However, absent the option of providing the BIF file over such an external interface, the node must be physically connected on the same network with the network management node prior to construction of the network database. In the preferred embodiment, both options are available and the choice of how the exported interface is imported into the network management node is left up to the node designer.
The file layout for the BIF file of the preferred embodiment is given in Table IX. An example of a BIF file is given in Table X. This exemplary BIF file has been generated for the program given in Table V.
As was mentioned, in the preferred embodiment nodes may utilize the standard network variable types in declaration of network variables. The information describing its network variables is communicated (or exposed) by the node to the network management node, block 1003, using standard messaging features of the network. It will be understood that in alternative embodiments, information describing other, non-standard variable types may also be communicated in a manner similar to communicating the information on standard network variables.
The network management node receives the exposed network variable information, block 1004, and may then use information, including the network variable type, in verifying valid connections and in the binding process. Only network variables of identical types may be bound together in a single connection--thus, use of standard network variable types facilitates interoperability of nodes in the network as well as facilitating identification of network variables when a command is issued to expose the network variables of a node.
As one extension to the concept of self-identifying standard network types as just described, it is possible to include in the information transmitted responsive to receiving the command to expose network variable's text strings and even graphical icons to the network management node. Such information would make the nodes largely self-documenting.
EXTENSIONS TO THE "C" LANGUAGE
The present invention has implemented certain extensions and features to the "C" programming languages to support use of network variables--these extensions include (1) the already disclosed declarations of variables as network variables and the ability to declare such variables as standard network variable types; (2) declaration and use of I/O objects; and (3) scheduling clauses. Each of these extensions will be discussed in greater detail below. It should be noted that although the extensions have been preferably implemented in the "C" programming language, the idea and concepts of these extensions are not limited to use in this programming language and, in fact, these ideas and concepts may readily be extended to other programming languages.
Network Variable Declarations
As has been discussed, the present invention provides for declaration of network variables in C programs. Importantly, the declaration of network variables allows for declaring certain information for use by the above-described binding process. This process is better understood with reference to FIG. 11. Initially, a network variable is declared in a computer program intended to run on a node of the network of the present invention, block 1101. The preferred format for the declaration may be found with reference to Table VIII, below. As can be seen with reference to Table VIII, the declaration format preferably includes a set of parameters called bind.sub.-- info. These parameters allow the network variable to be declared with an initial specification of protocol services. When the program is compiled, this initial information is output as part of the BIF file. The format of the BIF file may be found with reference to Table IX. As one option in declaring network variables, these parameters may be declared as configurable or non-configurable, block 1102. In this way, a programmer programming a node may make an initial determination as to the state the parameter should normally be set to. For example, the programmer may determine in a typical configuration, a particular network variable should use acknowledged message services. However, the programmer may also allow a network administrator flexibility in configuring and optimizing the network by declaring the acknowledged parameter as configurable. The program is then compiled and a compiled output is produced in the conventional manner. In addition to producing the conventional outputs of a compiler, e.g., object code, the compiler of the present invention produces the above-mentioned BIF file which includes information on the declared network variables such as the state of parameters and whether or not such parameters are configurable, block 1103.
During configuration of the network of the present invention, the state of these configurable parameters may be modified by the network administrator, block 1104. In the above-discussed example, the network administrator may determine the network will be optimally configured if the variable declared as acknowledged is actually configured as unacknowledged and repeated. It is worthwhile to again refer to FIG. 8(a) which illustrates, in addition to other steps in the connection process, the step of setting parameters for the connection, block 806. The parameters which are settable in this step of the configuration process are those parameters declared as configurable in the network variable declarations. These parameters are displayed on a display screen during the configuration process and may be modified by changing the state of the parameters on the display screen. For example, one of three states may be set to tell the network the type of service to be used for a network variable--unacknowledged, unacknowledged and repeated, and acknowledged. The authentication feature may be set to an on state in which message authentication is used or to an off state in which message authentication is not used. Also, network variable may be set to a priority state or a non-priority state indicating whether messages associated with the variable are to be sent as priority messages or as normal messages.
Declaration and use of Objects
Each node of the present invention comprises its own scheduler, timers, and logical I/O devices. The "C" programming language employed by the present invention provides access to these devices through use of predefined objects; namely, an event scheduler which handles task scheduling for the node, timer objects which provide both millisecond and second timers, and I/O objects which provide for declaration of a number of logical I/O devices. Importantly, once declared a logical link is created between the object name and the physical device and references may be made to the object name to gain access to the physical device.
Declaration and use of objects will be discussed in greater detail by referring to declaration of I/O objects. Each node of the network of the present invention has a number of built-in electrical interface options for performing input and output. Prior to performing input or output, a program must declare an I/O object which interfaces with one of eleven I/O pins on the node; three serial pins 441 and eight parallel pins 445. The eleven pins are referred to with the reserved pin names: IO.sub.-- 0, IO.sub.-- 1, IO.sub.-- 2, IO.sub.-- 3, IO.sub.-- 4, IO.sub.-- 5, IO.sub.-- 6, IO.sub.-- 7, IO.sub.-- 8, IO.sub.-- 9, and IO.sub.-- 10. The declaration syntax for an I/O object and use of the eleven pins in the present invention is discussed further with reference to Table XI.
It is worthwhile to turn to FIG. 12 to discuss this concept in somewhat greater detail. Initially, a program statement is coded to declare an I/O device giving a pin designation, a device type and a device name; when the program is compiled the declaration statement causes declaration of the I/O device, block 1201. Other parameters and the format of the declaration for an I/O device in the preferred embodiment may be found with reference to Table XI. Responsive to declaring the I/O device, the pins are configured to perform the function specified by the device type, block 1202. The device types of the preferred embodiment may be found with reference to Table XI.
This process is further illustrated with reference to the exemplary network variable program of Table V and the associated assembly language code resulting from a compile of the program given in Table XIV. As can be seen with reference to the program source code in Table V, two I/O devices are declared, IO.sub.-- 0 as a bit output named MotorCtrl and IO.sub.-- 5 as a pulsecount input named pulseamps.
The specified device name is logically associated with the specified device to perform the designated I/O, block 1204. In this way, a reference may be simply made to the device name to accomplish the designated I/O with necessity of continued reference to specific pins and without need for special coding to implement the desired device types. As can be seen with reference to Table XII, built-in functions are provided to allow communication with the I/O devices. One of the built-in functions may be used to perform the built-in function referring to the desired device name to specify a hardware device, block 1204. The desired I/O is then performed in accordance with the device type specified in the device declaration, block 1205.
Scheduling
Scheduling on a node in the present invention is event driven. When a given condition becomes true, a body of code termed a task associated with that condition is executed. In the preferred embodiment, scheduling is accomplished through "when" statements. The syntax of a when statement of the preferred embodiment is given in Table XIII. An example of a when statement is given below:
______________________________________when (timer.sub.-- expires (led.sub.-- timer)) /* This line is the when clause */ io.sub.-- out (led, OFF); /* This is the task - turn the led off */}______________________________________
In the above example, when the application timer led.sub.-- timer expires, the body of code following the when statement is executed (and the LED is turned off). When statements provide for execution of a task (the bracketed code) when the condition specified (e.g., the led.sub.-- timer expires) evaluates to true. It is known in the art to provide structures in programming languages which allow for conditional execution of a task when a statement evaluates to true. However, in known systems which include a scheduling statement (a when statement or the equivalent), the event which is evaluated is a predefined event. As is noted in Table XIII, the present invention provides for use of predetermined events in scheduling statements. However, as one important aspect of the present invention, events may also be any valid C expression. For example, the following statement may be coded in a system of the present invention:
______________________________________when (x == 3) /* This line is the when clause */ io.sub.-- out (led, OFF); /* This is the task - turn the led off */}______________________________________
In this case, whenever the event x==3 occurs, the LED is turned off. Of course, significantly more complicated C programming statements may be envisioned to define an event. As will be understood by one of ordinary skill in the art, allowing evaluation of any valid language expression to define an event offers significant flexibility over known systems. The present invention further allows for use of multiple when statements to be associated with a single task. For example:
______________________________________when (powerup) /* This line is one when clause */when (reset) /* This line is another when clause */when /* This line is another when clause */(io.sub.-- changes(io.sub.-- switch))when (x = 3) /* This line is another when clause */ io.sub.-- out (led, OFF); /* This is the task - turn the led off */}______________________________________
In this case, when any of the above events evaluates to true, the task is executed--e.g., the LED is turned off.
Importantly, as one aspect of the present invention, I/O objects may be referred to in an event clause allowing improved ease of programming of the system of the present invention. For example, two methods may be used to determine if an input value is new: (1) the io.sub.-- update.sub.-- occurs event may be used, referring to the desired device in a when statement or the io.sub.-- in function may be used. The below two programs accomplish the same goal.
______________________________________PROGRAM 1______________________________________IO.sub.-- 5 input pulsecount dev;when (io.sub.-- update.sub.-- occurs (dev)) { /* perform the desired function */ }______________________________________
______________________________________PROGRAM 2______________________________________stimer t;IO.sub.-- 5 input pulsecount dev;when (timer.sub.-- expires(t)) { io.sub.-- in (dev); if (input.sub.-- is.sub.-- new) { /* perform the desired function */ } }______________________________________
The particular method chosen will depend on the individual case; however, the above is exemplary of the flexibility and ease of use of the system of the present invention.
Further, as an additional feature of the present invention and as is described with reference to Table VIII, the present invention provides for two levels of when clauses, priority when clauses and normal when clauses. Using this feature, it is possible to handle events which must be dealt with on a priority basis.
PERFORMANCE OPTIMIZATIONS PERFORMED BY THE BINDER OF THE PREFERRED EMBODIMENT
As was discussed above, when more than two nodes are used in a connection, the nodes may be recognized as a group and a group address may be assigned to the group of nodes.
The preferred embodiment also carries out other performance optimization routines to achieve minimal network traffic with resulting optimized response time. For example, the binder determines optimal protocol service class and addressing allocation at the time of binding variables in order. Illustrative of this, with reference to FIG. 3(b), three separate connections are shown, 321-323. Although this represents a typical optimal configuration, these three connections could be combined by the binder into a single group resulting in nodes sometimes receiving messages about network variable updates which are not used by those nodes. In such a configuration, although there are additional messages received by the nodes, no effect is seen by the application running on the node because the network variable messages include a 14-bit network variable identification. Therefore, nodes which have no need for a variable sent to them simply discard and, in the case of acknowledged service, acknowledge the message.
An advantage of grouping many nodes in a single group in the system of the preferred embodiment is that such grouping simplifies tasks for the binder process and further uses only one group address (the preferred embodiment is limited to 255 group addresses per domain).
Further, the binder of the present invention dynamically selects an optimal protocol class of service at the time of binding. This is done by first computing the number of messages it would take to complete a transaction on the first using acknowledged service (including the original message and the acknowledgements). (Note that this number is the group size which is known by the network variable binder process at the beginning of the connection process). Second, this number is compared with the repeat count for repeating message. If the repeat count is less than the group size, and none of the programs require acknowledged services (each program allows the config option for its network variables), then the binder dynamically converts the service from acknowledged to unacknowledged repeat. This reduces network traffic, thus improving response time.
Thus, an improved communication network having capability for communication of information between nodes in the network is described.
TABLE I__________________________________________________________________________/**********************************************************************//****//** Temperature sensor control program writes an output network variable**//** temp.sub.-- high responsive to changes in temperature sensed by athermostat **//****//**********************************************************************//** I/O Declarations **/IO.sub.-- 1 input bit temp.sub.-- in;/** Network variables declaration **/network output boolean temp.sub.-- high;/** working variables declarations and initializations **/int on.sub.-- threshold = 72;int off.sub.-- threshold = 68;/**********************************************************************//****//** Event driven code; update temp.sub.-- high responsive to changes intemperature **//** input to the program by temp.sub.-- in**//****//**********************************************************************/when (powerup)when (reset) { io.sub.-- change.sub.-- init (temp.sub.-- in); }when (io.sub.-- changes(temp.sub.-- in)) { if (temp.sub.-- in > on.sub.-- threshold) temp.sub.-- high = true; if (temp.sub.-- in < off.sub.-- threshold) temp.sub.-- high = false; }__________________________________________________________________________
TABLE II__________________________________________________________________________/************************************************************************//****//** Fan control program reads an input network variable fan.sub.-- on tocontrol **//** turning a fan on and off using output bit fan.sub.-- active. **//****//************************************************************************/1/** I/O Declarations **/IO.sub.-- 1 output bit fan.sub.-- active;/** Network variables declaration **/network input boolean fan.sub.-- on;/************************************************************************/2/****//** Event driven code; updates fan.sub.-- active each time a change instate occurs **//** for the network variable fan.sub.-- on **//****//************************************************************************/.when (nv.sub.-- update.sub.-- occurs(fan.sub.-- on)) { io.sub.-- out(fan.sub.-- active, fan.sub.-- on); }__________________________________________________________________________
TABLE III__________________________________________________________________________######################################################################## This connection associates the temperature sensor control outputvariables ## (temp.sub.-- high) to a fan control input variable (fan.sub.-- on).Specifically, temperature ## sensor 1 is connected to fan 1; temperature sensor 2 is connected tofan 1 and ## and fan 2; and temperature sensor 3 is connected to fan 2.########################################################################@N (temp1.sub.-- controls)temp.sub.-- sensor.sub.-- 1.temp.sub.-- high /** writer **/fan.sub.-- 1.fan.sub.-- on /** reader **/@N (temp2.sub.-- controls)temp.sub.-- sensor.sub.-- 2.temp.sub.-- high /** writer **/fan.sub.-- 1.fan.sub.-- on /** reader **/fan.sub.-- 2.fan.sub.-- on /** reader **/@N (temp3.sub.-- controls)temp.sub.-- sensor.sub.-- 3.temp.sub.-- high /** writer **/fan.sub.-- 2.fan.sub.-- on /** reader **/__________________________________________________________________________
TABLE IV__________________________________________________________________________###################################################################### This connection associates the temperature sensor control outputvariables ## (temp.sub.-- high) to a control cell; the control cell is connected tofan control ## input variable (fan.sub.-- on). Specifically, temperature sensor 1 isconnected to ## control cell 1; temperature sensor 2 is connected to control cell 1 andcontrol ## cell 2; temperature sensor 3 is connected to control cell 2; controlcell 1 is ## connected to fan 1; and control cell 2 is connected to fan 2 ######################################################################@N (connection.sub.-- 1)temp.sub.-- sensor.sub.-- 1.temp.sub.-- high /** writer **/cell.sub.-- 1.temp.sub.-- high /** reader **/@N (connection.sub.-- 2)temp.sub.-- sensor.sub.-- 2.temp.sub.-- high /** writer **/cell.sub.-- 1.temp.sub.-- high /** reader **/cell.sub.-- 2.temp.sub.-- high /** reader **/@N (connection.sub.-- 3)temp.sub.-- sensor.sub.-- 3.temp.sub.-- high /** writer **/cell.sub.-- 2.temp.sub.-- high /** reader **/@N (connection.sub.-- 4)cell.sub.-- 1.fan.sub.-- on /** writer **/fan.sub.-- 1.fan.sub.-- on /** reader **/@N (connection.sub.-- 5)cell.sub.-- 2.fan.sub.-- on /** writer **/fan.sub.-- 2.fan.sub.-- on /** reader **/__________________________________________________________________________
TABLE V__________________________________________________________________________NETWORK VARIABLE PROGRAM EXAMPLE__________________________________________________________________________#pragma receive.sub.-- trans.sub.-- count 8/* This example has all the setpoint configuration local to this node.*//* In this way, generic temperature and pressure sensors can be used *//* which have no knowledge of the setpoints. They only report new temp*//* values when the old one changes by a threshold value. Additionally,*//* the temperature value can be reported to many nodes which can each *//* use the temperature for their specific function -- even applying *//* different set points to the temperature value. In the old study, *//* actual temperature values were not sent on the network. Messages *//* were sent for above high setpoint, at setpoint & below low setpoint.*//* Since no temperature values were sent, the messages sent could only*//* be used by this node -- defeating the value of a networked approach*//* This division of function in the old study was done to save EEPROM *//* in this node since storing the setpoints takes EEPROM. */#define true 1#define false 0#define on true#define off falsetypedef signed int fahrenheit;typedef signed int PoundsPerSqIn;struct tempSetpoints { fahrenheit LowSet, HighSet; };struct pressureSetpoints { PoundsPerSqIn LowSet, HighSet; };/* EEPROM nodal configuration parameters: Minimum time the motor must *//* remain on, minimum time the motor must remain off. Temperature & *//* pressure setpoints. Location and device type, too!! */config network input signed long int MinOffTime, MinOnTime;config network input struct tempSetpoints OutletWater, CndnsrHead, CoolAir,config network input struct pressureSetpoints CmpressrInltGas;#pragma set.sub.-- id.sub.-- string "HVAComp"/* Network variable declarations for temperature & pressure inputs *//* used to decide when the motor should be turned on and off */network input fahrenheit OutletWaterTemp, CndnsrHeadTemp, CoolAirTemp;network input PoundsPerSqIn CmprssrGasPrssr;network input boolean BuildingCooling;/* Network variable declarations used to report status to the HVAC *//* system controller. Reported conditions are: node offline/online, *//* motor on/off, and motor overloaded/O.K. These conditions are only *//* reported when they change. */network output boolean MotorOn, MotorOverload, AmOnline;/* Definitions of the Neuron .RTM. I/O pins. The previous study used an*//* onchip AtoD to measure the current that the motor used. This version*//* uses a $.50 external AtoD to convert current to a number of pulses *//* over a 1 second interval. These pulses are accumulated via the on *//* chip timer/counter block to determine the current the motor uses */IO.sub.-- 0 output bit MotorCtrl;IO.sub.-- 5 input pulsecount PulseAmps;/* Timer declarations take no EEPROM space -- they are in RAM */stimer MinOffTimer, MinOn Timer, MotorMeasurementTimer;/* number of pulses that equal the maximum amount of current the motor*//* can draw. The cheap AtoD gives 0 to 255 pulses per second depending*//* on the analog current value. */const int CompressorMotorMaxDraw=180, MeasurementInterval=10;int strikes; /* motor overdraw counter *//* now for some real code! initialization for reset, powerup and online*//* events. Online means the node received a network management message*//* to go online. */void motor(boolean on.sub.-- off.sub.-- flag) MotorOn = on.sub.-- off.sub.-- flag; io out(MotorCtrl, on.sub.-- off.sub.-- flag); if (on.sub.-- off.sub.-- flag == on) MinOnTimer = MinOnTime; else MinOffTimer = MinOffTime;}void control.sub.-- action(){if (AmOnline && BuildingCooling && MinOffTimer == 0 && OutletWaterTemp > OutletWater.HighSet && CndnsrHeadTemp < CndnsrHead.LowSet && CmprssrGasPrssr < CmprssrInltGas.LowSet && CoolAirTemp > CoolAir.HighCet ) { motor(on); }else { if( BuildingCooling && MinOnTimer == 0 && OutletWaterTemp < OutletWater.LowSet && CndnsrHeadTemp > CndnsrHead.HighSet && CmprssrGasPrssr > CmprssrInltGas.HighSet && CoolAirTemp < CoolAir.LowSet ) { motor(off); { }}when (reset) { MotorOn = false; MotorOverload = false; AmOnline = true; motor(off); /* initialize all input variables so that other nodes */ /* don't have to all update this one before this one */ /* begins operation */ OutletWaterTemp = OutletWater.LowSet; CndnsrHeadTemp = CndnsrHead.LowSet; CoolAirTemp = CoolAir.LowSet; CmprssrGasPrssr = CmprssrInltGas.LowSet; strikes = 0; poll(BuildingCooling); /* ask the controller if AC is on */ }when (online) { AmOnline = true; motor(off); /* if the motor was overloaded & and we just came back online */ /* perhaps someone repaired it */ MotorOverload = false; }when(offline) { AmOnline = false; motor(off); }when (nv update occurs) { control action(); }when ( timer expires(MotorMeasurementTimer)) { MotorMeasurementTimer=MeasurementInterval; if (io.sub.-- in(PulseAmps) > CompressorMotorMaxDraw) { if(++strikes>=3) /* motor is really overloaded */ { motor(off); MotorOverload = true; } else strikes = 0 }Link Memory Usage Statistics:ROM Usage: User Code & Constant Data 335 bytesEEPROM Usage: (not necessarily in order of physical layout)System Data & Parameters 72 bytesDomain & Address Tables 105 bytesNetwork Variable Config Tables 42 bytesUser EEPROM Variables 12 bytesUser Code & Constant Data 0 bytesTotal EEPROM Usage 231 bytesRAM Usage: (not necessarily in order of physical layout)System Data & Parameters 549 bytesTransaction Control Blocks 132 bytesUser Timers & I/O Change Events 12 bytesNetwork & Application Buffers 424 bytesUser RAM Variables 9 bytesTotal RAM Usage 1126 bytesEnd of Link Statistics__________________________________________________________________________
TABLE VI__________________________________________________________________________MESSAGING PROGRAM EXAMPLE__________________________________________________________________________#pragma receive.sub.-- trans.sub.-- count 8/* This example has all the setpoint configuration local to this node.*//* In this way, generic temperature and pressure sensors can be used *//* which have no knowledge of the setpoints. They only report new temp*//* values when the old one changes by a threshold value. Additionally,*//* the temperature value can be reported to many nodes which can each *//* use the temperature for their specific function -- even applying *//* different set points to the temperature value. In the old study, *//* actual temperature values were not sent on the network. Messages *//* were sent for above high setpoint, at setpoint & below low setpoint.*//* Since no temperature values were sent, the messages sent could only*//* be used by this node -- defeating the value of a networked approach*//* This division of function in the old study was done to save EEPROM *//* in this node since storing the setpoints takes EEPROM. */#define true 1#define false 0#define on true#define off false/* Add In some message codes */#define CondensrTemp 0 /* net in condensor temp */#define CoolTemp 1 /* net in air temp */#define GasPress 2 /* net in gas pressure */#define BldCool 3 /* net in building cooling stat */#define MotOn 4 /* net out cmprsr mot on */#define MotOvld 5 /* net out cmprsr mot overload */#define NdOnline 6 /* net out online */#define Poll BldCool 7 /* poll building status */#define TimeMinOff.sub.-- c 8 /* Config Msg code for time off */#define TimeMinOn.sub.-- c 9 /* Config Msg code for time on */#define OutletH20 10 /* Net in H20 temperature */#define CndnsrHd.sub.-- c 11 /* cndsr head temp config */#define ColdAir.sub.-- c 12 /* Cold air temp config */#define CompGasPress.sub.-- c 13 /* gass pressure config */#define OutletH20.sub.-- c 14 /*Config Msg code for water tmp */typedef signed int fahrenheit;typedef signed int PoundsPerSqIn;struct tempSetpoints { fahrenheit LowSet; HighSet; };struct pressureSetpoints { PoundsPerSqIn LowSet, HighSet; };/* EEPROM nodal configuration parameters: Minimum time the motor must *//* remain on, minimum time the motor must remain off. Temperature & *//* pressure setpoints. Location and device type, too!! */signed long int MinOffTime, MinOnTime;struct tempSetpoints OutletWater, CndnsrHead, CoolAir,struct pressureSetpoints CmprssrInltGas;#pragma set.sub.-- id.sub.-- string "HVAComp"/* Network variable declarations for temperature & pressure inputs *//* used to decide when the motor should be turned on and off */fahrenheit OutletWaterTemp, CndnsrHeadTemp, CoolAirTemp;PoundsPerSqIn CmprssrGasPrssr;boolean BuildingCooling;/* Network variable declarations used to report status to the HVAC *//* system controller. Reported conditions are: node offline/online, *//* motor on/off, and motor overloaded/O.K. These conditions are only *//* reported when they change.*/boolean MotorOn, MotorOverload, AmOnline;/* Definitions of the Neuron .RTM. I/O pins. The previous study used an*//* onchip AtoD to measure the current that the motor used. This version*//* uses a $.50 external AtoD to convert current to an number of pulses*//* over a 1 second interval. These pulses are accumulated via the on *//* chip timer/counter block to determine the current the motor uses */IO.sub.-- 0 output bit MotorCtrl;IO.sub.-- 5 input pulsecount PulseAmps;/* Timer declarations */stimer MinOffTimer, MinOnTimer, MotorMeasurementTimer;/* number of pulses that equal the maximum amount of current the motor*//* can draw. The cheap AtoD gives 0 to 255 pulses per second depending*//* on the analog current value.*/const int CompressorMotorMaxDraw=180, MeasurementInterval=10;int strikes; /* motor overdraw counter*//* Define all the message tags */msg tag air.sub.-- temp.sub.-- in;msg tag gas.sub.-- press.sub.-- in;msg tag bldstate.sub.-- in;msg tag motIsOn.sub.-- out;msg tag motIsOvrld.sub.-- out;msg tag Im.sub.-- onln.sub.-- out;msg tag getBldState;msg tag config.sub.-- msg;msg tag water.sub.-- temp.sub.-- in;msg tag cndsr.sub.-- temp.sub.-- in;/* now for some real code! initialization for reset, powerup and online*//*events. Online means the node received a network management message *//* to go online. */void motor(boolean on.sub.-- off.sub.-- flag) { MotorOn =on.sub.-- off.sub.-- flag; io.sub.-- out(MotorCtrl, on.sub.-- off.sub.-- flag); msg.sub.-- out.tag = motIsOn.sub.-- out; msg.sub.-- out.code = MotOn; msg.sub.-- out.data[0] = MotorOn; msg.sub.-- send(); if(on.sub.-- off.sub.-- flag==on) MinOnTimer= MinOnTime; else MinOffTimer= MinOffTime; }void control.sub.-- action() { if( AmOnline && BuidlingCooling && MinOffTimer == 0 && OutletWaterTemp > OutletWater.HighSet && CndnsrHeadTemp < CndnsrHead.LowSet && CmprssrGasPrssr < CmprssrInltGas.LowSet && CoolAirTempt > CoolAir.HighSet ) { motor(on); } else { if( BuildingCooling && MinOnTimer == 0 && OutletWaterTemp < OutletWater.LowSet && CndnsrHeadTemp > CndnsrHead.HighSet && CmprssrGasPrssr > CmprssrInltGas.HighSet && CoolAirTemp < CoolAir.LowSet ) { motor(off); } }when (reset) { MotorOn = false; MotorOverload = false; AmOnline = true; msg.sub.-- out.tag = motIsOn.sub.-- out; msg.sub.-- out.code = MotOn; msg.sub.-- out.data[0] = MotorOn; msg.sub.-- send(); msg.sub.-- out.tag = motIsOvrld.sub.-- out; msg.sub.-- out.code = MotOvld; msg.sub.-- out.data[0] = MotorOverload; msg.sub.-- send(); msg.sub.-- out.tag = Im.sub.-- onln.sub.-- out; msg.sub.-- out.code = NdOnline; msg.sub.-- out.data[0] = AmOnline; msg.sub.-- send(); motor(off);/* initialize all input variables so that other nodes *//* don't have to all update this one before this one*//* begins operation.*/ OutletWaterTemp = OutletWater.LowSet; CndnsrHeadTemp = CndnsrHead.LowSet; CoolAirTemp = CoolAir.LowSet; CmprssrGasPrssr = Cmprssr.about.nlLGa.about...about.owSet; strikes = 0; msg.sub.-- out.tag = getBldState; msg.sub.-- out.code = Poll BldCool; msg.sub.-- out.service = REQUEST; msg.sub.-- send(); }when(online) { AmOnline = true; msg.sub.-- out.tag = Im.sub.-- onln.sub.-- out; msg.sub.-- out.code = NdOnline; msg.sub.-- out.data[0] = AmOnline; msg.sub.-- send(); motor(off); /* if the motor was overloaded & we just came back online */ /* perhaps someone repaired it*/ MotorOverload = false; msg.sub.-- out.tag = motIsOvrld.sub.-- out; msg.sub.-- out.code = MotOvld; msg.sub.-- out.data[0] = MotorOverload; msg.sub.-- send(); }when (offline) { AmOnline = false; msg.sub.-- out.tag = Im.sub.-- onln.sub.-- out; msg.sub.-- out.code = NdOnline; msg.sub.-- out.data[0] = AmOnline; msg.sub.-- send(); motor(off); }when (msg.sub.-- arrives(CondensrTemp)) { CndnsrHeadTemp = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; control.sub.-- action(); }when (msg.sub.-- arrives(CoolTemp)) { CoolAirTemp =(msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; control.sub.-- action(); }when (msg.sub.-- arrives(GasPress)) { CmprssrGasPrssr = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; control.sub.-- action(); }when (msg.sub.-- arrives(BldCool)) { BuildingCooling = (msg.sub.-- in.data[0]; control.sub.-- action(); }when (msg.sub.-- arrives(OutletH20)) { OutletWaterTemp = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; control.sub.-- action(); }when (msg arrives(TimeMinOff.sub.-- c)) { MinOffTime = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; }when (msg.sub.-- arrives(TimeMinOn.sub.-- c)) { MinOnTime = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; }when (msg.sub.-- arrives(CndnsrHd.sub.-- c)) { CndnsrHead.LowSet = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; CndnsrHead.HighSet = (msg.sub.-- in.data[2]<<8) + msg.sub.-- in.data[3]; }when (msg.sub.-- arrives(ColdAir.sub.-- c)) { CoolAir.LowSet = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; CoolAir.HighSet = (msg.sub.-- in.data[2]<<8) + msg.sub.-- in.data[3]; }when (msg.sub.-- arrives(CompGasPress.sub.-- c)) { CmprssrInltGas.LowSet = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; CmprssrInltGas.HighSet = (msg.sub.-- in.data[2]<<8) + msg.sub.-- in.data[3]; }when (msg.sub.-- arrives(OutletH20.sub.-- c)) { OutletWater.LowSet = (msg.sub.-- in.data[0]<<8) + msg.sub.-- in.data[1]; OutletWater.HighSet = (msg.sub.-- in.data[2]<<8) + msg.sub.-- in.data[3]; }when (timer.sub.-- expires(MotorMeasurementTimer)) { MotorMeasurementTimer = MeasurementInterval; if (io.sub.-- in(PulseAmps) > CompressorMotorMaxDraw) { if(++strikes>=3)/* motor is really overloaded */ motor(off); MotorOverload = true; msg.sub.-- out.tag = motIsOvrld out; msg.sub.-- out.code = MotOvld; msg.sub.-- out.data[0] = MotorOverload; msg.sub.-- send(); } else strikes = 0; }Link Memory Usage Statistics:ROM Usage: User Code & Constant Data 626 bytesEEPROM Usage: (not necessarily in order of physical layout)System Data & Parameters 72 bytesDomain & Address Tables 105 bytesNetwork Variable Config Tables 0 bytesUser EEPROM Variables 0 bytesUser Code & Constant Data 0 bytesTotal EEPROM Usage 177 bytesRAM Usage: (not necessarily in order of physical layout)System Data & Parameters 549 bytesTransaction Control Blocks 132 bytesUser Timers & I/O Change Events 12 bytesNetwork & Application Buffers 600 bytesUser RAM Variables 21 bytesTotal RAM Usage 1314 bytesEnd of Link Statistics__________________________________________________________________________
TABLE VII__________________________________________________________________________STANDARD NETWORK VARIABLE TYPES# Name Quantity Units Range Bits Resolution__________________________________________________________________________1 SNVT.sub.-- amp current amps -3,276-3276 16 0.1 ampere2 SNVT.sub.-- amp.sub.-- mil current milliAmps -3,276-3276 16 0.1 milliampere3 SNVT.sub.-- angle phase/rotation radians 0-65 16 0.001 radian4 SNVT.sub.-- angle.sub.-- vel angular radians/sec 3,276-3276 16 0.1 radians/sec velocity5 SNVT.sub.-- char.sub.-- ascii character character 0-255 8 1 character6 SNVT.sub.-- count count,event counts 0-65,535 16 1 count7 SNVT.sub.-- count.sub.-- inc incremental counts -32,768-+32,767 16 1 count counts8 SNVT.sub.-- date.sub.-- cal date YYYY,MM,DD 1-3000,0-12,0-31, 32 1 day9 SNVT.sub.-- date.sub.-- day day of Week Enum list M,Tu,W,Th,F,Sa,Su 8 N/A10 SNVT.sub.-- date.sub.-- time time of day HH:MM:SS 00:00:00 to 23:59:59 24 1 second11 SNVT.sub.-- elec.sub.-- kwh energy, elec Kilowatt-Hours 0-65,535 16 1 KWH12 SNVT.sub.-- elec.sub.-- whr energy, elec watt-hours 0-6,553 16 0.1 WHR13 SNVT.sub.-- flow.sub.-- mil flow milliters/sec 0-65,535 16 1 ml/s14 SNVT.sub.-- length length meters 0-6,553 16 0.1 m15 SNVT.sub.-- length.sub.-- kilo length kilometers 0-6,553 16 0.1 km16 SNVT.sub.-- length.sub.-- micr length microns 0-6,553 16 0.1 km17 SNVT.sub.-- length.sub.-- mil length millimeters 0-6,553 16 0.1 mm18 SNVT.sub.-- lev.sub.-- contin level, contin percent 0-100% 8 .5%19 SNVT.sub.-- lev.sub.-- disc level, discrete Enumerated list 8 N/A20 SNVT.sub.-- mass mass grams 0-6,553 16 0.1 g21 SNVT.sub.-- mass.sub.-- kilo mass kilograms 0-6,553 16 0.1 kg22 SNVT.sub.-- mass.sub.-- mega mass metric tons 0-6,553 16 0.1 tone23 SNVT.sub.-- mass.sub.-- mill mass milligrams 0-6,553 16 0.1 mg24 SNVT.sub.-- power power watts 0-6,553 16 0.1 watt25 SNVT.sub.-- power.sub.-- kilo power watts 0-6,553 16 0.1 kwatt26 SNVT.sub.-- ppm concentration ppm 0-65,535 16 1 ppm27 SNVT.sub.-- press pressure pascals -32,768-32,767 16 1 pascal28 SNVT.sub.-- press.sub.-- psi pressure lbs/sq-in -3,276-3,276 16 0.1 psi29 SNVT.sub.-- res resistance Ohms 0-6,553 16 0.1 Ohm30 SNVT.sub.-- res.sub.-- kilo resistance kiloOhms 0-6,553 16 0.1 kilo-Ohm31 SNVT.sub.-- sound.sub.-- db sound Level dBspl -327-327 16 0.01 dB32 SNVT.sub.-- speed speed meters/second 0-655 16 0.01 m/s33 SNVT.sub.-- speed.sub.-- kmh speed km/hour 0-655 16 0.01 km/h34 SNVT.sub.-- state.sub.-- supr sensor state Enumerated list 8 N/A35 SNVT.sub.-- str.sub.-- asc char string ASCII 30 characters 248 N/A characters(s)36 SNVT.sub.-- str.sub.-- int char string Int'l 14 characters 248 N/A char set (s)37 SNVT.sub.-- telecom phone state Enumerated list 8 N/A38 SNVT.sub.-- temp temperature Celsius -3,276-+3,276 16 0.1 degree39 SNVT.sub.-- time.sub.-- passed elapsed time HH:MM:SS:LL 0-65,536 48 0.001 sec40 SNVT.sub.-- vol volume liters 0-6,553 16 0.1 liter41 SNVT.sub.-- vol.sub.-- kilo volume kiloliters 0-6,553 16 0.1 kiloliter42 SNVT.sub.-- vol.sub.-- mil volume milliliters 0-6,553 16 0.1 milliliter43 SNVT.sub.-- volt voltage volts -3,276-3,276 16 0.1 volt44 SNVT.sub.-- volt.sub.-- dbmv voltage dB microvolts -327-327 16 0.01 db uv dc45 SNVT.sub.-- volt.sub.-- kilo voltage kilo volts -3,276-3,276 16 0.1 kilovolt46 SNVT.sub.-- volt.sub.-- mil voltage millivolts -3,276-3,276 16 0.1 millivolt__________________________________________________________________________
TABLE VIII__________________________________________________________________________NETWORK VARIABLE DECLARATION__________________________________________________________________________The preferred syntax for declaration of a network variable is asfollows:network input .vertline. output [netvar modifier] [class] type[bind.sub.-- info (fields)] identifier;where:netvar modifier are the following optional modifiers which can be included in the declaration of a network variable: sync/synchronized--specifies that all values assigned to this network variable must be propagated, and in their original order. However, if a synchronous network variable is updated multiple times within a single critical section, only the last value is sent out. If this keyword is omitted from the declaration, the scheduler does not guarantee that all assigned values will be propagated. For example, if the variable is being modified more rapidly than its update events can be processed, the scheduler may discard some intermediate data values. However, the most recent data value for a network variable will never be discarded. polled--is used only for output network variables and specifies that the value of the output network variable is to be sent only in response to a poll request from a node which reads the network variable. When this keyword is omitted, the value is propagated over the network every time the variable is assigned a value.class Certain classes of storage may be specified for network variables. Specifically, the following keywords may be entered in the network variable declaration statement: const--specifies that the network variable may not be changed by the application program; eeprom--allows the application program to indicate the value of the network variable is to be preserved across power outages. In the preferred embodiment, variables declared with this storage class are stored in the eeprom 401. EEPROM variables have a limited capability to accept changes before the EEPROM can no longer be guaranteed to operate properly. Therefore, initializers for the eeprom class take effect when the program is loaded and not each time the program is started. Reloading a program has the effect of reinitializing all eeprom variables. config--specifies a const network variable in EEPROM that can be changed only by a network management node. This class of network variable is typically used for application configuration by network manager.type Network variable typing serves two purposes: (1) typing ensures proper use of the variable in the compilation, and (2) typing ensures proper connection of network variables at bind time. Network variables may be declared as any one of the following types: [signed] long integer unsigned long integer signed character [unsigned] character [signed] [short] integer unsigned [short] integer enumerated lists structures and unions of the above types standard network variable types (see Table VII)bind.sub.-- info (fields) The following optional fields may be included in the declaration of a network variable; the compiler builds the BIF file utilizing information declared in these fields and the information in the BIF file is used for binding the network variable inputs and outputs. The fields are each optional and may be specified in any order. offline--is used to signal to the bind process that a node should be taken offline before an update can be made to the network variable. This option is commonly used with the config class network variable. bind .vertline. bind(var.sub.-- name)--specifies whether the network variable is bound to network variables on other nodes (the usual case) or to a network variable on the same node. The default is bind which indicates that the network variable can be bound to network variables on other nodes. The other form, bind(var.sub.-- name) allows binding an output to an input on the same node. The var.sub.-- name is the name of another network variable on the same node. It should be noted that this option has been omitted from the currently preferred embodiment of the present invention. unackd .vertline. unackd.sub.-- rpt .vertline. ack[(config .vertline. nonconfig)]--tells the protocol layer of the network management software of the present invention the type of service to use for the variable. An unacknowledged (unackd) network variables uses minimal network resources to propagate its values to other nodes. As a result, propagation failures are more likely to occur, and such failures are not detected by the node. This class is typically used for variables which are updated on a frequent, periodic basis, where the loss of an update is not critical, or in cases where the probability of a collision or transmission error is extremely low. The unackd.sub.-- rpt class of service is used when a variable is sent to a large group of other nodes; with this class the message is sent multiple times to gain a greater probability of delivery. Acknowledged (ackd) service provides for receiver node acknowledged delivery with retries. The keyword config, indicates the service type can be changed at the time connections are specified for the network variable. The keyword nonconfig indicates the service type cannot be changed at configuration time. authenticated .vertline. nonauthenticated[(config .vertline. nonconfig)]--specifies whether the network variable requires use of an authentication to verify the identity of the sender node. The config .vertline. nonconfig keywords specify whether the authentication designation is configurable. The default in the system of the preferred embodiment is nonauth (config). priority .vertline. nonpriority[(config .vertline. nonconfig)]--s pecifies whether the network variable receives priority or not. The keywords config .vertline. nonconfig specify whether priority is configurable. The default is nonpriority (config). rate.sub.-- est (const.sub.-- expression)--specifies the estimated average message rate, in tenths of messages per second, that an associated network variable is expected to transmit or receive. This value assists the network administrator in configuring the network. max.sub.-- rate.sub.-- est (const.sub.-- expression)--specifies the estimated maximum message rate, in tenths of messages per second, that the associated network variable is expected to transmit or receive. This value assists the network administrator in configuring the network.__________________________________________________________________________
TABLE IX__________________________________________________________________________BIF FILE FORMAT__________________________________________________________________________The Binder Interface File (BIF) format comprises a number of records-onerecord pernetwork variable and one record per message tag plus some overheadrecords. The format isdesigned to be concise with few lines of physical lines per record. Theformat of the file generallyallows for the following record types: (1) File Header comprisingtimestamp and other generalinformation (one record); (2) Global information comprising generalinformation of indicatinggeneral information about the node and the application program running onthe node; and (3)Network variable and message tag records for each network variable andmessage tag comprisinginformation about the network variable or message tag.Importantly, network variables and message tags may require differingamounts and formatsof information. Therefore, as one aspect of the present invention, arecord structure has beendeveloped to allow efficient storage of the differing requiredinformation and efficient retrieval of therecords. In addition, in order to conserve storage, the present inventiondiscloses an encodingscheme to encode numeric information present in the records.In general, string fields contain an asterisk if they are not applicable.Integer fields contain azero. The first record in the file is a header which comprises threelines of commentary andcopyright notice text and a timestamp. Following this header is one blankline followed by globalinformation used by the binder process.Global InformationThe first global value line is a Program ID comprising eight 2-digithexadecimal values,separated by colons. The second global value line comprises severalnumeric fields separated byspaces. The fields are defined in order as follows:.cndot. Either a 1 or a 2 which specifies the number of domains..cndot. The number of address table 901 slots in the range of decimal 1-15..cndot. Either a 0 or a 1. Indicates whether the node application program handles incoming messages..cndot. The number of network variables defined by the application program in the range of 0 to 62..cndot. The number of message tags defined by the application program in the range 0 to 15..cndot. The number of network input buffers (encoded, see below)..cndot. The number of network output buffers (encoded, see below)..cndot. The number of priority network output buffers (encoded, see below)..cndot. The number of priority application output buffers (encoded, see below)..cndot. The number of application output buffers (encoded, see below)..cndot. The number of application input buffers (encoded, see below)..cndot. The size of a network input buffer (encoded, see below)..cndot. The size of a network output buffer (encoded, see below)..cndot. The size of an application input buffer (encoded, see below)..cndot. The size of an application output buffer (encoded, see below). The third line is used for node-specific parameters and has not been fully defined in thecurrently preferred embodiment. The fourth and following lines areoptional and may include a nodedocumentation string which may be transmitted to the network managementnode for documenting,for example, the general function of the node. If not supplied, thesenodes comprise a singleasterisk. If supplied, these lines each begin with a double-quotecharacter which is not included aspart of the documentation string. Multiple lines are concatenated withoutany intervening characters.There is no end double quote. The global values section ends with a blankline.As noted above, buffer sizes and count fields are encoded. The encodedvalues allowselected values, given below, to be stored in a nibble, thus reducing thesize of the database. In thepreferred embodiment, buffer sizes must be one of 20, 21, 22, 24, 26, 30,34, 42, 50, 66, 82, 114,146, 210 or 255 (i.e., 15 allowed buffer size values where the buffersizes are given in bytes);non-priority buffer counts must be one of 1, 2, 3, 5, 7, 11,15, 23, 31, 47, or 63 (i.e., 11 allowed buffer size values). Prioritybuffer counts must be one of 0,1, 2, 3, 5, 7, 11, 15, 23, 31, 47, or 63 (i.e., 12 allowed buffer sizevalues).In order to represent these values in a single nibble (4 bits), thefollowing formulas are usedto transform the nibble value (n) to the above values:for buffer sizes: 2.sup.n/2 + (n&1) * 2.sup.n/2-1 + 18 (except where n =0; size = 255); andfor count( priority and non-priority): 2.sup.n/2 + (n&1) * 2.sup.n/2-1 -where n is the nibble value and the & symbol indicates a logical ANDfunction between thefour bit n value and 0001 (e.g., for n = 3.sub.10, the result of n&1 is0011&0001=0001 or 1.sub.10, for n=2,the result is 0.sub.10 ; in general for any even number n, the value ofthis function will be 0 and for anyodd number n, the value will be 1). Also, in the above equations, integerarithmetic is used;therefore, where fractional values result in the computation of a value(e.g., .sup.n/2 where n = 1), thefractional values are rounded down to the next lowest integer (e.g., forn=1, n/2 = 1/2, is roundeddown to 0). Use of the above formula, as opposed to, for example a tablelookup routine, leads todecreased requirements for static memory.Network Variable and Message Tag RecordsZero or more records are produced which correspond to the networkvariables and messagetag definitions in the program. Message tag records begin with the word"TAG"; Network variablemessages begin with "VAR". Following the "TAG" or "VAR" identifier is astring of at maximum16 characters which is the name of the tag or variable. Next,there is a decimal number (0-61 for network variables; 0-14 for messagetags) which translates thename into an internal program index for the object code. Finally, thereare two rate estimates, each adecimal number from 0-255, which are the rate.sub.-- est and max.sub.--rate.sub.-- est, respectively, in units of tenthsof a message per second.The second line of each record corresponds to the bind.sub.-- info fieldsand other numeric fields inthe order and as defined below:Field Valuesoffline specifier 0 or 1bindable specifier 0 or 1bind target index 0-61 (63 if no bind target is specified)direction 0=input, 1=outputservice type 0=acknowledged, 1=unackd.sub.-- rpt, 2=unackdservice type configurable? 1=yes, 0=noauthenticated? 1=yes, 0=noauthenticated configurable? 1=yes, 0=nopriority 1=yes, 0=nopriority configurable? 1=yes, 0=nopolled 1=yes, 0=nosynchronized 1=yes, 0=noconfig 1=yes, 0=noThe third and any subsequent lines optionally contain variabledocumentation in the sameformat as the node documentation described above. If no documentation issupplied, a single asteriskis used.For network variables, the remaining lines following any documentationcomprise thefollowing information. Message tags do not require this information.The first line following the documentation lines is a header in which afirst field indicateswhether the variable is a standard network variable type; if so, theremaining fields are ignored andthere are no more lines in the record. The format of the line, in orderof the fields, is as follows:Field ValuesStandard network variable type number 1-255 (0 if not a standard type)First typedef name used in the definition maximum length 16 characters, * if noneNumber of elements in the type 1 unless structured or union, 256 maxThere is one additional line per element, (where the number of elementswas givenimmediately above). The format of these lines is as follows, in order ofthe fields presented:Field ValuesBasic Type 0=char, 1=integer, 2=long, 3=bitfield, 4=unionBitfield Offset 0-7, 0 if not applicableBitfield/union size 1-7 for bitfield; 1-31 for union; 0 if not applicableSignedness 0=unsigned, 1=signedArray bound 1-31, 0 if not an array__________________________________________________________________________
TABLE X______________________________________BIF FILE FOR PROGRAM OF TABLE V______________________________________File: node.sub.-- 31.sub.-- right.bif generated by APC Revision 0.99Copyright (c) 1990 Echelon CorporationRun on Mon Feb 4 10:31:40 199148:56:41:43:6F:6D:70:002 15 0 14 0 3 3 3 3 3 3 11 9 4 2*VAR MinOffTime 0 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 12 0 0 1 0VAR MinOnTime 1 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 12 0 0 1 0VAR OutletWater 2 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 21 0 0 1 01 0 0 1 0VAR CndnsrHead 3 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 21 0 0 1 01 0 0 1 0VAR CoolAir 4 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 21 0 0 1 01 0 0 1 0VAR CmprssrInltGas 5 0 00 1 63 0 0 1 0 1 0 1 0 0 1*0* 21 0 0 1 01 0 0 1 0VAR OutletWaterTemp 6 0 00 1 63 0 0 1 0 1 0 1 0 0 0*0* 11 0 0 1 0VAR CndnsrHeadTemp 7 0 00 1 63 0 0 1 0 1 0 1 0 0 0*0* 11 0 0 1 0VAR CoolAirtemp 8 0 00 1 63 0 0 1 0 1 0 1 0 0 0*0* 11 0 0 1 0VAR CmprssrGasPrssr 9 0 00 1 63 0 0 1 0 1 0 1 0 0 0*0* 11 0 0 1 0VAR BuildingCooling 10 0 00 1 63 0 0 1 0 1 0 1 1 0 0*0 boolean 11 0 0 1 0VAR MotorOn 11 0 0 00 1 63 1 0 1 0 1 0 1 0 0 0*0 boolean 11 0 0 1 0VAR MotorOverload 12 0 00 1 63 1 0 1 0 1 0 1 0 0 0*0 boolean 11 0 0 1 0VAR AmOnline 13 0 00 1 63 1 0 1 0 1 0 1 0 0 0*0 boolean 11 0 0 1 0______________________________________
TABIE XI__________________________________________________________________________I/O DEVICE DECLARATION__________________________________________________________________________Each I/O device is declared in the application program as an external"device name".The syntax for such declaration is as follows:<pin><type>[<assign>]<device-name>[=<initial-output-level>];where <pin> is one of the eleven reserved pin names: IO.sub.-- 0,IO.sub.-- 1, IO.sub.-- 2, IO.sub.-- 3, IO.sub.-- 4,IO.sub.-- 5, IO.sub.-- 6, IO.sub.-- 7, IO.sub.-- 8, IO.sub.-- 9, andIO.sub.-- 10;<type> is one of the following types, may specify the indicated pins andis subjectto the indicated restrictions:(1) output bit -- Used to control the logical output state of a singlepin, where 0equals low and 1 equals high; may specify any pin IO.sub.-- 0 toIO.sub.-- 10 and is unrestricted.(2) input bit -- Used to read the logical output state of a single pin,where 0 equalslow and 1 equals high; may specify any pin IO.sub.-- 0 to IO.sub.-- 10and is unrestricted.(3) [output] bitshift [numbits (<expr>)][clockedge ({+/-})][kbaud(<expr>)]--Used to shift a data word of up to 16 bits out of the node. Data isclocked out by aninternally generated clock. numbits specifies the number of bits to beshifted; clockedgespecifies whether the data is stable on the positive going or negativegoing edge; and kbaudspecifies the baud rate. Requires adjacent pin pairs; the pinspecification specifies the lownumbered pin of the pair and may be IO.sub.-- 0 through IO.sub.-- 6 orIO.sub.-- 8 or IO.sub.-- 9.(4) [input] bitshift [numbits (<expr>)] [clockedge ({+/-})] [kbaud(<expr>]--Used to shift a data word of up to 16 bits into the node. Data is clockedin by an internallygenerated clock. numbits specifies the number of bits to be shifted;clockedge specifieswhether the data is read on the positive going or negative going edge;and kbaud specifiesthe baud rate. Requires adjacent pin pairs; the pin specificationspecifies the low numberedpin of the pair and may be IO.sub.-- 0 through IO.sub.-- 6 or IO.sub.-- 8or IO.sub.-- 9.(5) [output] frequency [invert] [clock (<expr>)] -- This device typeproduces arepeating square wave output signal whose period is a function of anoutput value and theselected clock, clock (<expr>), where clock (<expr>) specifies one of 8clocks provided bythe node. Must specify IO.sub.-- 0 or IO.sub.-- 1. The mux keyword (seebelow) must be specified forIO.sub.-- 0 and the ded keyword (see below) must be specified forIO.sub.-- 1.(6) [output] triac sync <pin> [invert] [clock (<expr>)] --This devicetype is usedto control the delay of an output pulse signal with respect to an inputtrigger signal, thesync input. Must specify IO.sub.-- 0 or 10.sub.-- 1. The mux keyword (seebelow) must be specifiedfor IO.sub.-- 0 and the ded keyword (see below) must be specified forIO.sub.-- 1. If IO.sub.-- 0 isspecified, the sync pin must be IO.sub.-- 4 through IO.sub.-- 7; ifIO.sub.-- 1 is specified, the sync pin mustbe IO.sub.-- 4.(7) [output] pulsewidth [invert] [clock (<expr>)]-- This device type isused toproduce a repeating waveform which duty cycle is a function of aspecified output valueand whose period is a function of a specified clock period. Must specifyIO.sub.-- 0 or IO.sub.-- 1.The mux keyword (see below) must be specified for IO.sub.-- 0 and the dedkeyword (seebelow) must be specified for IO.sub.-- 1.(8) input pulsecount [invert] -- This device type counts the number ofinput edgesat the input pin over a period of 0.839 seconds. Must specify IO.sub.-- 4through IO.sub.-- 7.(9) output pulsecount [invert] [clock (<expr>) -- This device typeproduces asequence of pulses whose period is a function of the specified clockperiod. Must specifyIO.sub.-- 0 or IO.sub.-- 1. The mux keyword (see below) must be specifiedfor IO.sub.-- 0 and the dedkeyword (see below) must be specified for IO.sub.-- 1.(10) [input] ontime [invert] [clock (<expr>)] -- This device typemeasures the highperiod of an input signal in units of the specified clock period. Mustspecify IO.sub.-- 4 throughIO.sub.-- 7.(11) {output/input} serial [baud (<expr>)] -- This device type is used totransferdata using an asynchronous serial data format, as in RS-232communications. Outputserial must specify IO.sub.-- 10; input serial must specify IO.sub.-- 8.(12) parallel -- This device type is used to transfer eight bit datawords betweentwo nodes across an eleven pin parallel bus. This is a bidirectionalinterface. Requires allpins and must specify IO.sub.-- 0.(13) neurowire select <pin> [kbaud (<expr>)] -- This device type is usedtotransfer data using a synchronous serial data format. Requires threeadjacent pins and mustspecify IO.sub.-- 8. The select pin must be one of IO.sub.-- 0 throughIO.sub.-- 7.(14) [input] quadrature -- This device type is used to read a shaft orpositionalencoder input on two adjacent pins. Requires adjacent pin pairs; the pinspecificationspecifies the low numbered pin of the pair and may be IO.sub.-- 0 throughIO.sub.-- 6 or IO.sub.-- 8 orIO.sub.-- 9.(15) [input] period [invert] [clock (<expr>)] -- This device typemeasures the totalperiod from negative going edge to negative going edge of an input signalin units of thespecified clock period. Must specify IO.sub.-- 4 through IO.sub.-- 7.(16) [output] oneshot [invert] [clock (<expr>)] -- This device typeproduces asingle output pulse whose duration is a function of a specified outputvalue and the selectedclock value. Must specify IO.sub.-- 0 or IO.sub.-- 1. The mux keyword(see below) must be specifiedfor IO.sub.-- 0 and the ded keyword (see below) must be specified forIO.sub.-- 1.(17) {output/input} nibble -- This device type is used to read or controlfouradjacent pins simultaneously. Requires four adjacent pins; the pinspecifies denotes thelowest number pin of the quartet and may be pin IO.sub.-- 0 throuughIO.sub.-- 4.(18) {output/input} byte -- This device type is used to read or controleight pinssimultaneously. Requires eight adjacent pins; the pin specificationdenotes the lowestnumber pin and must be IO.sub.-- 0.(In general, pins may appear in a single device declaration only;however, a pinmay appear in multiple declarations if the types belong to the set of{bit, nibble and byte});where <assign> is one of "mux" which indicates the device is assigned tomultiplexed timer counter circuit or "ded" which indicates the device isassigned to adedicated timer counter circuit; andwhere <initial-output-state> is a constant expression used to set theoutput pin ofthe channel to an initial state at initialization time (e.g., when theapplication program isreset).__________________________________________________________________________
TABLE XII__________________________________________________________________________ACCESS TO I/O DEVICES VIA BUILT IN FUNCTIONS__________________________________________________________________________To access one of the I/O devices (after declaring it as shown above), theapplicationprogrammer merely calls one of the built-in functions defined below.These built-in functionsappear syntactically to be nothing more than procedure calls. However,these procedure callsare not be defined as external functions to be linked in. Instead, theseprocedure names are"known" to the compiler, and the compiler enforces type checking on theparameters of theprocedures.The built-in function syntax is as follows:<return-value> io.sub.-- in (<device>[<args>})<retun-value>io.sub.-- out (<device>, <output-value>[<args>])where the <device> name corresponds to an I/O device declaration and<args> are asfollows, depending on the type of device:bitshift [, <numbits>]serial (output only) , <count>serial (input only) , <input-value>, <count>neurowire (output only) , <count>neurowire (input only) , <input-value>, <count>parallel (output only) , <count>parallel (input only) , <input-value>, <count>All other devices do not permit extra arguments in the calls to io.sub.--in or io.sub.-- out.Some of the above arguments may also appear in the device declaration. Iftheattribute is specified in the declaration and the attribute is suppliedas an argument, theargument overrides the declared value for that call only. Theseattributes may be specified inboth places, either place or not at all. If left unspecified, the defaultis used (see defaultsbelow).The data type of the <return-value> for the function io.sub.-- in, andthe data type of the<output-value> for io.sub.-- out is given by the following table. Thedata values will be implicitlyconverted as necessary. A warning is output by the compiler if anio.sub.-- in that returns a 16-bitquantity is assigned to a smaller value.bit short bit 0 used; others are 0bitshift long shifted valuefrequency long period in nanosecondspulsewidth short pulsewidth in nanosecondspulsecount long count in .84 secondsontime, period long period in nanosecondsquadrature short signed countoneshot short countnibble short bit 0-3 used; others are 0byte short all bits usedFor period, pulsecount and ontime input devices, the built-in variable"input.sub.-- is.sub.-- new"is set to TRUE whenever the io.sub.-- in call returns an updated value.The frequency with whichupdates occur depends on the device declarationFor parallel, serial and neurowire, io.sub.-- out and io.sub.-- inrequire a pointer to the data bufferas the <output-value> and the <input-value>, respectively. For paralleland serial, io.sub.-- inreturns a short integer which contains the count of the actual number ofbytes received.Ranges and defaultsThe following ranges and defaults apply to the various IO attributes:.cndot. The bitshift "numbits" may be specified in the bitshiftdeclaration as anynumber from 1 to 16 and, if not specified, defaults to 16. In the callsto io.sub.-- inand io.sub.-- out, the shift value may be any number from 1 to 127. Forio.sub.-- in, onlythe last 16 bits shifted in will be returned. For io.sub.-- out, after 16bits, zeroes areshifted out..cndot. The bitshift output clock may be either `+` or `-`. It defaultsto `+`. Thisdefines whether the data is shifted on the positive-going ornegative-goingedge of the clock. This can only be specified in the declaration..cndot. The initial frequencies of the frequency output, triac output,pulsewidthoutput and pulsecount output are 0..cndot. The clock value specifies a clock in the range 0 . . . 7 where 0is the fastestclock and 7 is the slowest. The defaults are as follows:frequency output 0triac output 7pulsewidth output 0pulsecount output 7oneshot output 7ontime input 2period input 0The baud rate of serial may be 300, 1200 or 2400 baud with a default of2400..cndot. The baud rate for neurowire and bitshift may be 1,10 or 25kbits/secondand defaults to 25 kbits/second.ExampleAn example follows--to read a switch attached to pin 1 and light an LEDattached topin 2 when the switch is closed, the following would be coded by theapplicationprogrammer:IO.sub.-- 1 input bit ch1 switch;IO.sub.-- 2 output bit led;if (io.sub.-- in (switch))io.sub.-- out (led, TRUE);}I/O MultiplexingThe timer counter circuit may be multiplexed among pins 4 to 7. Tofacilitate this, thefollowing built-in function is provided:io.sub.-- select (<device>);This function causes the specified device to become the new owner of thetimercounter circuit. Any reinitialization of the timer counter circuit ishandled by this function. Itis under the application's control when the timer counter is connected towhich pin. Themultiplexed timer counter is initially assigned to the mux device whichis declared first.For example, the application may choose to select a new device after awhen changeclause has executed for the current connected device. Alternatively, theselection could bedone based on a timer, e.g., select a new device every 100__________________________________________________________________________milliseconds.
TABLE XIII__________________________________________________________________________WHEN STATEMENT SYNTAX__________________________________________________________________________The syntax of a when statement in the system of the preferred embodimentis givenbelow:[priority] when (event) taskwhere:priority is an option used to force evaluation of the following when clause each time the scheduler runs. This allows priority when clauses to be evaluated first. Within a program having multiple priority when clauses, priority when clauses are evaluated in the order coded in the program. If any priority when clause evaluates to true, the corresponding task is run and the scheduler starts over at the top of the priority when clauses. If no priority when clause evaluates to true then a non-priority when clause is evaluated and selected in a round robin fashion. The scheduler then starts over with the priority when clauses. This process may be best understood by example: Assume the following when clauses coded in the following order: priority when (A) priority when (B) when (C) when (D). Assume only C and D are true; first A is evaluated, then B is evaluated and finally C is evaluated and the task associated with C is executed. A is then evaluated again, then B is evaluated and then, in round robin fashion, D is evaluated and executed.event may be either a predefined event or, importantly, may be any valid C expression. Predefined events include, by way of example, input pin state changes (io changes, io update occurs); network variable changes (network variable update completes, network variable update fails, network variable update occurs, network variable update succeeds); timer expiration; message reception information (message arrives, message completes, message fails, message succeeds); and other status information (powerup, reset, online, offline).task is a C compound statement consisting of a series of C declarations and statements enclosed in braces.The following predefined events exist in the system of the preferredembodiment:flush.sub.-- completes A flush function is available in the system of the preferred embodiment which causes the node to monitor the status of all incoming and outgoing messages. When the node has completed processing of all messages the flush.sub.-- complete event becomes true indicating all outgoing transactions have been completed, no more incoming messages are outstanding, and no network variable updates are occurring.io.sub.-- changes This event indicates the status of one or more I/O pins associated with a specified input device have changed state.io.sub.-- update.sub.-- occurs This event indicates that a timer/counter device associated with a specified pin has been updated.msg.sub.-- arrives This event indicates a message has arrived for processing.msg.sub.-- completes This event indicates a message has completed (either successfully or by failure).msg.sub.-- fails This event indicates a message has failed.msg.sub.-- succeeds This event indicates a message has completed successfully.nv.sub.-- update.sub.-- completes This event indicates a network variable update has completed (either successfully or by failure).nv.sub.-- update.sub.-- fails This event indicates a network variable update has failednv.sub.-- update occurs This event indicates a network variable update has occurred.nv.sub.-- update.sub.-- succeeds This event indicates a network variable update has completed successfully.offline This event indicates the node has been taken offline.online This event indicates the node has been brought online.powerup This event indicates the node has been powered up.reset This event indicates the node has been reset.resp.sub.-- arrives This event indicates a response has arrived to a message.timer.sub.-- expires This event indicates the designated timer has expired.Predefined events may be used within other control expressions inaddition to in thewhen statement; for example, in an if, while or for statement.As noted above, a user-defined event may be any valid C expression andmayinclude assignment statements to assign values to global variables andfunction calls.__________________________________________________________________________
TABLE XIV__________________________________________________________________________ASSEMBLY LANGUAGE LISTING FOR THENETWORK VARIABLE PROGRAM OF TABLE V__________________________________________________________________________; APC - Echelon (R) Neuron (R) Application-C Compiler; Copyright (c) 1990, Echelon Corporation; Assembly code from APC Revision 0.99; Code generated from `node.sub.-- 31.sub.-- right.nc` on Mon Feb 410:31:40 1991SUBHEAD Generated from the input file: nod.sub.-- 31.sub.-- right.ncRADIX HEX SEG EECODE. ORG 0F000NBMTS EQU 000NNVS EQU 00EPROTECT EQU 00NEURONID RES 8DIRECTORYdata.b PTR TEVT-3*NNVS,PROTECT+NNVS,0,0PR0GIDdata.b 048,056,041,043,06F,06D,070,000M0DETABLEdata.b 053data.b 0F0,037data.b 024,09Bdata.b 033,033,033EENEARBYTESdata.b 000data.b 000,000data.b 001,000,000,047LOCATION RES 8COMM RES 10MSG RES 1DOMAIN RES 01EADDR RES 04BTNVCNFG RES 3 *NNVSCONFIGCHECKSUM RES 1 PAGE; Boilerplate file for compiler-generated assembly output; Copyright (c) 1990, 1991 Echelon Corporation. All Rights Reserved.; Date last modified: 1/30/91; List of exported symbolsEXPORT APINIT,DOMAIN,EENEARBYTES,MODETABLE,TEVT; List of imported symbols - Library functionsIMPORT application.sub.-- restart,delay,error logIMPORT flush,flush.sub.-- cancel,flush.sub.-- wait,go.sub.-- offline,go.s ub.-- unconfiguredIMPORT node.sub.-- reset,offline.sub.-- confirm,.sub.-- post events,powerupIMPORT random,retrieve.sub.-- status,retrieve.sub.-- xcvr.sub.-- statusIMPORT reverse,timers.sub.-- off,watchdog.sub.-- update; List of imported symbols - Compiler helper functionsIMPORT .sub.-- abs8,.sub.-- abs16,.sub.-- add16,.sub.-- and16 ,.sub.-- allocIMPORT .sub.-- bcd2bin,.sub.-- bin2bcd,.sub.-- deallocIMPORT .sub.-- div8,.sub.-- div8s,.sub.-- div16,.sub.-- div16sIMPORT .sub.-- drop.sub.-- n,.sub.-- drop.sub.-- n.sub.-- preserve.sub.-- 1,.sub.-- drop.sub.-- n.sub.-- preserve.sub.-- 2IMPORT .sub.-- drop.sub.-- n.sub.-- return.sub.-- 1,.sub.-- drop.sub.-- n.sub.-- return.sub.-- 2IMPORT .sub.-- eeprom.sub.-- write,.sub.-- eeprom.sub.-- wrlte.sub.-- longIMPORT .sub.-- eeprom.sub.-- far.sub.-- write,.sub.-- eeprom.sub.-- far.sub.-- write.sub.-- longIMPORT .sub.-- equal 8,.sub.-- equal 116IMPORT .sub.-- gequ8,.sub.-- gequ8s,.sub.-- gequ16,.sub.-- gequ16sIMPORT .sub.-- less8,.sub.-- less8s,.sub.-- less16,.sub.-- less16sIMPORT .sub.-- log8,.sub.-- log16,.sub.-- lognot8,.sub.-- lognot16IMPORT .sub.-- 1.sub.-- shift8, .sub.-- 1 shift8s,.sub.-- 1.sub.-- shift16,.sub.-- 1.sub.-- shift16sIMPORT .sub.-- 1.sub.-- shift8 3, 1 shift8.sub.-- 4, 1.sub.-- shift8.sub. -- 5, 1 shift8.sub.-- 6, 1 shift8.sub.-- 7IMPORT .sub.-- max8,.sub.-- max 8s,.sub.-- max16,.sub.-- max16sIMPORT .sub.-- memcpy,.sub.-- memcpyl,.sub.-- memset,.sub.-- memsetlIMPORT .sub.-- min8,.sub.-- min8s,.sub.-- min16,.sub.-- min16sIMPORT .sub.-- minus.sub.-- 16.sub.-- sIMPORT .sub.-- mod8,.sub.-- mod8s,.sub.-- mod16,.sub.-- mod16s,.sub.-- mul8,.sub.-- mul16IMPORT .sub.-- not16,.sub.-- or16IMPORT .sub.-- pop,.sub.-- pushIMPORT .sub.-- r.sub.-- shift8,.sub.-- r.sub.-- shift8s,.sub.-- r.sub.-- shift16,.sub.-- r.sub.-- shift16sIMPORT .sub.-- r.sub.-- shift8.sub.-- 3,.sub.-- r.sub.-- shift8.sub.-- 4,.sub.-- r.sub.-- shift8.sub.-- 5,.sub.-- r.sub.-- shift8.sub.-- 6,.sub.-- r.sub.-- shift8.sub.-- 7IMPORT .sub.-- register.sub.-- call,.sub.-- sign.sub.-- extend16IMPORT .sub.-- sub16,.sub.-- xor16PAGE; List of imported symbols - I/O functionsIMPORT .sub.-- bit.sub.-- input,.sub.-- bit.sub.-- input.sub.-- d,.sub.-- bit.sub.-- outputIMPORT .sub.-- bitshift.sub.-- input,.sub.-- bitshift.sub.-- outputIMPORT .sub.-- byte.sub.-- input,.sub.-- byte.sub.-- outputIMPORT .sub.-- nibble.sub.-- input,.sub.-- nibble.sub.-- input.sub.-- d,.sub.-- nibble.sub.-- outputIMPORT .sub.-- frequency.sub.-- output,.sub.-- leveldetect.sub.-- inputIMPORT .sub.-- neurowire.sub.-- input,.sub.-- neurowire.sub.-- outputIMPORT .sub.-- oneshot.sub.-- output,.sub.-- ontime.sub.-- inputIMPORT .sub.-- parallel.sub.-- input,.sub.-- parallel.sub.-- input.sub.-- readyIMPORT .sub.-- parallel.sub.-- output,.sub.-- parallel.sub.-- output.sub. -- ready,.sub.-- parallel.sub.-- output.sub.-- requestIMPORT .sub.-- period.sub.-- inputIMPORT .sub.-- pulsecount.sub.-- input,.sub.-- pulsecount.sub.-- outputIMPORT .sub.-- pulsewidth.sub.-- outputIMPORT .sub.-- quadrature.sub.-- inputIMPORT .sub.-- serial.sub.-- input,.sub.-- serial.sub.-- outputIMPORT .sub.-- totalize.sub.-- input,.sub.-- triac.sub.-- output,.sub.-- triggered.sub.-- count.sub.-- outputIMPORT .sub.-- init.sub.-- timer.sub.-- counter1,.sub.-- init.sub.-- timer.sub.-- counter2IMPORT .sub.-- init.sub.-- baud,.sub.-- io.sub.-- set.sub.-- clockIMPORT .sub.-- io.sub.-- input.sub.-- value,.sub.-- io.sub.-- change.sub. -- init,.sub.-- select.sub.-- input.sub.-- fnlist of imported symbols - Messaging supportIMPORT .sub.-- bound.sub.-- mtIMPORT .sub.-- msg.sub.-- alloc,.sub.-- msg.sub.-- alloc.sub.-- priority, .sub.-- msg.sub.-- cancel,.sub.-- msg.sub.-- freeIMPORT .sub.-- msg.sub.-- receive,.sub.-- msg.sub.-- sendIMPORT .sub.-- msg.sub.-- addr.sub.-- blockget,.sub.-- msg.sub.-- addr.sub.-- get,.sub.-- msg.sub.-- auth.sub.-- get,.sub.-- msg.sub.-- code.sub.-- getIMPORT .sub.-- msg.sub.-- data.sub.-- blockget,.sub.-- msg.sub.-- data.sub.-- get,.sub.-- msg.sub.-- len.sub.-- get,.sub.-- msg.sub.-- service.sub.-- getIMPORT .sub.-- msg.sub.-- addr.sub.-- blockset,.sub.-- msg.sub.-- addr.sub.-- set,.sub.-- msg.sub.-- auth.sub.-- set,.sub.-- msg.sub.-- code.sub.-- setIMPORT .sub.-- msg.sub.-- data.sub.-- blockset,.sub.-- msg.sub.-- data.sub.-- set,.sub.-- msg.sub.-- domain.sub.-- set,.sub.-- msg.sub.-- node.sub.-- setIMPORT .sub.-- msg.sub.-- priority.sub.-- set,.sub.-- msg.sub.-- service.sub.-- set,.sub.-- msg.sub.-- tag.sub.-- setIMPORT .sub.-- resp.sub.-- alloc,.sub.-- resp.sub.-- cancel,.sub.-- resp.sub.-- free,.sub.-- resp.sub.-- receive,.sub.-- resp.sub.-- sendIMPORT .sub.-- resp.sub.-- code.sub.-- set,.sub.-- resp.sub.-- data.sub.- - blockset,.sub.-- resp.sub.-- data.sub.-- set; List of imported symbols - Network Variable supportIMPORT .sub.-- bound.sub.-- nv,.sub.-- nv.sub.-- poll,.sub.-- nv.sub.-- poll.sub.-- allIMPORT .sub.-- nv.sub.-- update,.sub.-- nv.sub.-- update.sub.-- int,.sub. -- nv.sub.-- update.sub.-- longIMPORT .sub.-- nv.sub.-- update.sub.-- int.sub.-- offset,.sub.-- nv.sub.-- update.sub.-- long.sub.-- offset; List of imported symbols - Timer supportIMPORT .sub.-- timer.sub.-- get, timer.sub.-- offIMPORT .sub.-- timer.sub.-- mset,.sub.-- timer.sub.-- mset.sub.-- repeat,.sub.-- timer.sub.-- sset,.sub.-- timer.sub.-- sset.sub.-- repeat; List of imported symbols - Event supportIMPORT .sub.-- flush.sub.-- completesIMPORT .sub.-- io.sub.-- changes,.sub.-- io.sub.-- changes.sub.-- to,.sub.-- io.sub.-- changes.sub.-- by,.sub.-- io.sub.-- update.su b.-- occursIMPORT .sub.-- msg.sub.-- arrives,.sub.-- msg.sub.-- code.sub.-- arrivesIMPORT .sub.-- msg.sub.-- completes,.sub.-- msg.sub.-- fails,.sub.-- msg.sub.-- succeedsIMPORT .sub.-- nv.sub.-- update.sub.-- completes,.sub.-- nv.sub.-- update.sub.-- fails,.sub.-- nv.sub.-- update.sub.-- succeedsIMPORT .sub.-- nv.sub.-- update.sub.-- occursIMPORT .sub.-- offline,.sub.-- online,.sub.-- resp.sub.-- arrivesIMPORT .sub.-- timer.sub.-- expires,.sub.-- timer.sub.-- expires.sub.-- any,.sub.-- wink; List of Imported symbols - Misc builtin function supportIMPORT .sub.-- sleep; End boilerpltte filePAGESEG ENEARORG CONSTRAINED%MinOffTimeRES 02EXPORT %MinOffTimeSEG EENEARORG CONSTRAINED%MinOnTimeRES 02EXPORT %MinOnTimeSEG EENEARORG CONSTRAINED%OutletWaterRES 02EXPORT %OutletWaterSEG EENEARORG CONSTRAINED%CndnsrHeadRES 02EXPORT %CndnsrHeadSEG EENEARORG CONSTRAINED%CoolAirRES 02EXPORT %CoolAirSEG EENEARORG CONSTRAINED%CmprssrInltGasRES 02EXPORT %CmprssrInltGasSEG RAMNEARORG CONSTRAINED%OutletWaterTempRES 01EXPORT %OutletWaterTempSEG RAMNEARORG CONSTRAINED%CndnsrHeadTempRES 01EXPORT %CndnsrHeadTempSEG RAMNEARORG CONSTRAINED%CoolAirTempRES 01EXPORT %CoolAirTempSEG RAMNEARORG CONSTRAINED%CmprssrGasPrssrRES 01EXPORT %CmprssrGasPrssrSEG RAMNEARORG CONSTRAINEDRES 01EXPORT %BuildingCoolingSEG RAMNEARORG CONSTRAINED%MotorOnRES 01EXPORT %MotorOnSEG RAMNEARORG CONSTRAINED%MotorOverloadRES 01EXPORT %MotorOverloadSEG RAMNEARORG CONSTRAINED%AmOnlineRES 01EXPORT %AmOnlineSEC RAMNEARORG%strikesRES 01EXPORT %strikesSEG CODEORGEXPORT %motor%motor; Function bodypush tospush #0Bcall .sub.-- nv.sub.-- update.sub.-- intpush tospushs #00call .sub.-- bit.sub.-- outputpushs 01push nextcall .sub.-- equal8sbrnz *+4brf %motor+01Dpush %MinOnTimepush %MinOnTime+01pushs #01call .sub.-- timer.sub.-- ssetbrf %motor+026push %MinOffTimepush %MinOffTime+01pushs #00call .sub.-- timer.sub.-- ssetdealloc #01SEG CODEORGEXPORT %control action%control.sub.-- action; Function bodypush [1][@NEAR (%CoolAirTemp)]push %CoolAir+1call .sub.-- less8spush %CmprssrInltGaspush [1][@NEAR(CmprssrGasPssr)]call .sub.-- less8spush %CndnsrHeadpush [1][@ NEAR (%CndnsrHeadTemp)]push [1][@NEAR (%OutletWaterTemp)]push %OutletWater+01call .sub.-- less8spushs #00pushs #00pushs #00call .sub.-- timer.sub.-- getcall .sub.-- equal16push [1][@NEAR(%BuildingCooling)]push [1][@NEAR(%AmOnline)]andandandandandandsbrnz *+4brf %control.sub.-- action+038pushs #01callf %motorbrf %control.sub.-- action+06Apush %CoolAirpush [1][@NEAR (%CoolAirTemp)]call .sub.-- less8spush [1][@NEAR (%CmprssrGasPrssr)]push %CmprssrInltGas+01call .sub.-- less8push [1][@NEAR(%CndnsrHeadTemp)]push %CndnsrHead+01call .sub.-- less8spush %OutletWaterpush [1][[@NEAR(%OutletWaterTemp)]call .sub.-- less8spushs #00pushs #00pushs #01call .sub.-- timer.sub.-- getcall .sub.-- equal16push [1][@NEAR(%BuildingCooling)]andandandandandsbrnz *+4brf %control.sub.-- action+06Apushs #00callf %motorretSEG CODEORGWHEN1EXPORT WHEN1callf %control.sub.-- actionretSEG CODEORGWHEN2EXPORT WHEN2push #0Acall .sub.-- sign.sub.-- extend16pushs #02call .sub.-- timer.sub.-- ssetpush #040call .sub.-- pulsecount.sub.-- inputpush #0B4call .sub.-- sign.sub.-- extend16call .sub.-- less16sbrnz *+4brf WHEN2+02Epushs #03push [1][@NEAR (%strikes)]incpush togpop [1][@NEAR (%strikes)]call .sub.-- gequ8ssbrnz *+4brf WHEN2+02Bpushs #00callf %motorpushs #01push #0Ccall .sub.-- nv.sub.-- update.sub.-- intbrf WHEN2+031pushs #00pop [1][@NEAR(%strikes)]retSEG CODEORGAPINIT: Init & event codepush #084push #072call .sub.-- init.sub.-- timer.sub.-- counter1retEXPORT RESETRESET; When-unit bodypushs #00push #0Bcall .sub.-- nv.sub.-- update.sub.-- intpushs #00push #0Ccall .sub.-- nv.sub.-- update.sub.-- intpushs #01push #0Dcall .sub.-- nv.sub.-- update.sub.-- intpushs #00callf %motorpush %OutletWaterpop [1[@NEAR(%OutletWaterTemp)]push %CndnsrHeadpop [1][@NEAR(%CndnsrHeadTemP)]push %CoolAirpop [1][@NEAR(%CoolAirTemp)]push %CmprssrInltGaspop [1][@NEAR (%CmprssrGasPrssr)]pushs #00pop [1][@NEAR(%strikes)]push #0Acall .sub.-- nv.sub.-- pollretEXPORT OFFLINEOFFLINE; When-unit bodypushs #00push #0Dcall .sub.-- nv.sub.-- update.sub.-- intpushs #00callf %motorretEXPORT ONLINEONLINE; When-unit bodypushs #01push #0Dcall .sub.-- nv.sub.-- update.sub.-- intpushs #00callf %motorpushs #00push #0Ccall .sub.-- nv.sub.-- update.sub.-- intretSEG CODEORGTNVFIX; NV Fixed tabledata.b 022,PTR %MinOffTimedata.b 022,PTR %MinOnTimedata.b 022,PTR %OutletWaterdata.b 022,PTR %CndnsrHeaddata.b 022,PTR %CoolAirdata.b 022,PTR %CmprssrInltGasdata.b 021,PTR %OutletWaterTempdata.b 021,PTR %CndnrHeadTempdata.b 021,PTR %CoolAirTempdata.b 021,PTR %CmprssrGasPrssrdata.b 021,PTR %BuildingCoolingdata.b 021,PTR %MotorOndata.b 021,PTR %MotorOverloaddata.b 021,PTR %AmOnlineTEVT; Event tabledata.b PTR APINIT-2data.b 0,RESET-APINIT+1data.b OFFLINE-APINIT+1,ONLINE-APINIT+1data.b 00,02data.b OFF,PTR WHEN1-1data.b 0A,PTR WHEN2-1; Resource usage informationRESOURCE NADDR 0FRESOURCE NDOM 2RESOURCE NRCVTX 08RESOURCE NTMR 03RESOURCE NNIB 02RESOURCE NNOB 02RESOURCE NAIB 02RESOURCE NAOB 02RESOURCE NNPOB 02RESOURCE NAPOB 02RESOURCE SNIB 042RESOURCE SNOB 02ARESOURCE SAIB 016RESOURCE SAOB 014RESOURCE NNVS 0E__________________________________________________________________________
TABLE XV__________________________________________________________________________GENERAL DEFINITIONS__________________________________________________________________________The following definitions are generally applicable to terms used in thisspecification:Neuron, or node: A neuron or node is an intelligent, programmable elementorelements providing remote control, sensing, and/or communications, thatwheninterconnected with other like elements forms a communications, controland/or sensingnetwork. Nodes are named with Neuron ids (see below). Nodes may beaddressed as apart of a domain and subnet using a node number. The node number in thepreferredembodiment is 7 bits. Multiple nodes may be addressed using a group id.The group id inthe preferred embodiment is 8 bits.Neuron id: Nodes in the present invention are assigned a uniqueidentificationnumber at the time of manufacture. The identification number ispreferably 48-bits long.This 48-bit identification number does not change during the lifetime ofnode. As isappreciated, the assignment of a unique identification to each individualnode allows fornumerous advantages. This 48-bit identification number may be referred toas the node.sub.-- id.Domain addresses: The term "domain" is used to describe a virtualnetworkwherein all communication, as supported by the network of the presentinvention, must bewithin a single domain. Any required inter-domain communication must befacilitated byapplication level gateways. In the preferred embodiment, domains areidentified with48-bit domain identifiers. However, in certain applications the size ofthe domain field mayvary.Subnet -- In the preferred embodiment, a subnet is a subset of a domaincontaining from 0 to 127 nodes. In the preferred embodiment, subnets areidentified withan 8-bit subnet identification number. A single domain may contain up to255 subnets.Group: A group is a set of nodes which work together to perform a commonfunction. In the preferred embodiment, groups are identified with an8-bit groupidentification number. A single domain may contain up to 255 groups. Forexample, agroup may be created to include all nodes in a connection, such asconnection.sub.-- 2 142 inwhich case the group would include a node at temperature sensor.sub.-- 2116, a node at cell.sub.-- 1101 and a node at cell.sub.-- 2 121.Addressing -- The present invention provides for a hierarchical addressstructureand supports three basic addressing modes: (1) (Domain, Subnet, Nodenumber); (2)(Domain, Subnet, Node.sub.-- id); and (3) (Domain, Group).__________________________________________________________________________
Claims
  • 1. A node for use in a network, the node comprising:
  • a processor; and
  • storage means coupled to said processor;
  • said storage means having stored therein an application program and exposed interface data;
  • said application program containing references to at least one network variable;
  • said exposed interface data including global data and at least one network variable record;
  • said global data including buffer information;
  • said processor communicating values between said storage means and said network;
  • said processor being configured to buffer values communicated between said network and said node according to buffer parameters contained in said buffer information;
  • said network variable record including
  • data that specifies that said record corresponds to said at least one network variable; and
  • variable type information including at least one of a service type, a service type flag that indicates whether said service type is configurable, a priority, and a priority flag that indicates whether said priority is configurable; and
  • said processor being configured to communicate values that correspond to said at least one network variable between said storage means and said network based on said variable type information.
  • 2. The node as recited by claim 1 wherein said exposed interface data comprises encoded numeric information, said encoded numeric information representing one of a predetermined set of numbers in a range from 0 to 255, said set of numbers having a maximum of 16 values, said encoded numeric information including four bits of data, said processor being configured to decode said encoded numeric information by applying a formula:
  • 2.sup.n/2 +(n&1)*2.sup.n/2-1 +x
  • where n is the decimal value represented by said four bits of data and x is a constant integer.
  • 3. A network including the node recited in claim 1 and a network management node, wherein said exposed interface data is transmitted from said storage means of said node to said network management node over a communication medium, said network management node configuring said network based on said exposed interface data.
  • 4. The network of claim 3 including a plurality of nodes, each node of said plurality of nodes storing exposed interface data, said exposed interface data being transmitted for each of said plurality of nodes to said network management node over said communication medium, said network management node configuring said network based on said exposed interface data.
  • 5. The node of claim 1 wherein said buffer information includes a buffer parameter that indicates a buffer size for a buffer in said node, said processor being configured to use integer arithmetic to determine said buffer size and wherein said processor truncates fractional values to a next lowest integer when determining said buffer size.
  • 6. The apparatus of claim 5 wherein said buffer is one of a network input buffer, a network output buffer, an application input buffer, and an application output buffer.
  • 7. The apparatus of claim 1 wherein said buffer information includes a buffer parameter that indicates a number of priority network output buffers for said node.
  • 8. A method for configuring a network comprising a plurality of nodes and a network management node coupled over a communication medium, the method comprising the steps of:
  • for each node of said plurality of nodes, performing the steps of
  • encoding in four binary bits of data a parameter value that represents a configuration parameter of said node, wherein said configuration parameter may assume one of a set of values in a range from 0 to 255, said set of values having a maximum of 16 values;
  • storing in a storage means within said node said four binary bits of data;
  • transmitting said four binary bits of data from the storage means to said network management node over said communication medium;
  • causing said network management node to determine said parameter value for each node of said plurality of nodes by causing said network management node to apply a formula:
  • .sup. n/2 +(n&1)*2.sup.n/2-1 +x
  • to the four binary bits of data received by the network management node from each node of said plurality of nodes, where n is the decimal value represented by said four binary bits of data, and x is a constant integer.
  • 9. The method of claim 8 further comprising the step of causing said network management node to configure said network based on said parameter value determined for each node of said plurality of nodes.
  • 10. The method of claim 8 wherein said parameter value indicates a buffer size for a buffer in each of said plurality of nodes, the method further comprising the steps of:
  • causing said network management node to use integer arithmetic to determine said buffer size and
  • causing said network management node to truncate fractional values to a next lowest integer when determining said buffer size.
  • 11. The method of claim 8 wherein said parameter value indicates, for each node, a size of a buffer, wherein said buffer is one of a network input buffer, a network output buffer, an application input buffer, and an application output buffer.
  • 12. The method of claim 8 wherein said parameter value indicates, for each node, a number of priority network output buffers for said node.
Parent Case Info

This is a continuation of application Ser. No. 08/038,554, filed Mar. 26, 1995, abandoned, which is a continuation of application Ser. No. 07/671,122, filed Mar. 19, 1991 now abandoned.

US Referenced Citations (20)
Number Name Date Kind
3675209 Trost et al. Jul 1972
4386416 Giltner et al. May 1983
4432057 Daniell et al. Feb 1984
4654654 Butler et al. Mar 1987
4663704 Jones et al. May 1987
4679236 Davies Jul 1987
4714995 Materna et al. Dec 1987
4730348 MacCrisken Mar 1988
4827423 Beasley et al. May 1989
4831582 Miller et al. May 1989
4855906 Burke Aug 1989
4868570 Davis Sep 1989
4870643 Bultman et al. Sep 1989
4875161 Lahti Oct 1989
4885684 Austin et al. Dec 1989
4918690 Markkula, Jr. et al. Apr 1990
4926375 Mercer et al. May 1990
4972367 Burke Nov 1990
5077658 Bendert et al. Dec 1991
5084815 Mazzario Jan 1992
Continuations (2)
Number Date Country
Parent 38554 Mar 1995
Parent 671122 Mar 1991