Collision avoidance method for home automation devices using an ethernet hub

This invention discloses a method for collision avoidance in Ethernet networks, such as home automation networks, with both personal computers and control devices attached to it. Ethernet hubs are considered as the type of device used to create the Ethernet network. When a network management message is sent as a broadcast information from one personal computer to all control devices, they will generate a delayed response to the sender computer. Such delay is generated on each control device in accordance to its own MAC address. It will guarantee different delay times on all attached control devices. The minimal time interval between two consecutive MAC addresses and the maximum possible delay time are estimated from the maximum number of expected devices attached to the hub(s).

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
BACKGROUNDFIELD OF INVENTION

[0001] This invention relates to collision avoidance in a communication layer two protocol, and more specifically, to a collision avoidance mechanism suitable to networking, low processing power devices, connected through an Ethernet hub.

BACKGROUNDDISCUSSION OF PRIOR ART

[0002] In modern systems it is very common to find a set of individual devices, each one with its own functions, capable of sharing information with each other through some kind of communication media. A clear example of such systems comes from a computer network. A local computer network is defined as a group of personal computers geographically located in a house or building. It is called Local Area Network (LAN) and comprises a group of personal computers sharing information, such as files, services, etc. The most cost-effective solution to such shared network is the utilization of only one physical media for all nodes present on the network. In this scheme, every device has the same right to use the unique channel to communicate with other device(s). A mechanism included in every device must be responsible for sharing the communication channel in an efficient manner.

[0003] The most popular type of computer network uses the Carrier Sense Multiple Access with Collision Detection (CSMA/CD) algorithm. A group of standards called 802, published by the IEEE, use this algorithm on different types of physical media.

[0004] The CSMA/CD algorithm senses first the communication media to determine if any other device is using it to transmit its information. If the channel is free, transmission starts but the channel is still sensed. If corrupt data is detected (sent information is different from actual channel content), transmission is aborted and each device involved in such collision backs off for a random time before sending the information again. Even when useful channel time is wasted on a collision, this mechanism has proved to satisfy the needs of a network that must be scalable to a great number of devices, in the order of hundreds of personal computers.

[0005] One of the most used CSMA/CD network is the 10BaseT Ethernet standard, which is very similar to the IEEE 802.3 standard. The Ethernet standard defines the type of physical media along with its electrical and timing characteristics. It works at 10 Mbps with Manchester bit encoding. It also defines the Media Access Control (MAC) with the CSMA/CD algorithm. When a device wants to transmit information to another device, the MAC layer of each device handles the recognition of the destination address in order to accept or refuse such packet. Such address is called MAC address, because it identifies the device accessing the communication channel. The MAC address is a 6-bytes unique identification number present on each device compatible with the Ethernet standard.

[0006] All devices connected to a 10BaseT Ethernet network use a twisted pair cable called UTP (Unshielded Twisted Pair) cable. A segment of UTP cable comes from each personal computer and is attached to a central device, which is responsible to connect all computers with each other. Initially, such device was called Ethernet hub. As said earlier, the hub takes any information coming from one of its connections and sends it to all other computers attached to it. It works as a repeater. Another device, called Ethernet switch, takes a step further and each connected computer is treated as an independent port, so information sent from one port to another doesn't have to be repeated to every other computer. It is directly sent from origin to destination port. Switches increase the performance, allowing a greater number of connected devices, but the cost is higher compared to a hub.

[0007] Due to its extended use, Ethernet LANs have not been limited to personal computers. Several devices used in industrial control and automation use this standard as the basis of communication network. It is also used in building and home automation, facilitating the merging of data computer networks and control networks. Having control devices attached to Ethernet networks makes it possible to perform remote configuration from a personal computer, reducing operational costs. It also allows the use of the personal computer as the monitoring station for the automation control network.

[0008] In order to make such control device interoperable with a personal computer, the communication protocol used by the computer must be present into the control device also. The most common protocol used by personal computers is the TCP/IP (Transfer Control Protocol/Internet Protocol). The IP protocol works at a lower level and is responsible for defining the logic address of each computer. That address is called the IP address, and each computer present on the same LAN must have different IP addresses. TCP protocol handles the integrity of the information and establishment of connections to transfer information between two devices present on the network in a reliable context. It is capable of fragmenting the information to make it more suitable for transmission over Ethernet networks. It also handles reordering of all pieces of incoming data and guarantees the correct arrival of all sent information. The TCP protocol is connection-oriented. A connection-oriented protocol has to ask for a connection to be opened. After the destination device accepts the connection petition, data transfer takes place, and finally the connection is closed by either of the two devices.

[0009] Another common protocol is the UDP/IP (User Datagram Protocol/Internet Protocol). Contrary to TCP, UDP protocol doesn't provide any reliability and it doesn't use any connection mechanism. It is called a message-oriented protocol, since each data packet goes from source to destination without any open-accept-transfer-close process.

[0010] As was stated before, the merging of a data network with a control network can be made only if both the personal computer and the control device handle the same communication protocol. In home automation specifically, low cost is one of the primary requirements for control devices. Such devices must be simple enough to keep cost down. That simplicity is achieved by using low processing power microcomputers, or most often, low processing power microcontrollers. This invention considers a low processing power microcontroller working at 8-bits, with 512 bytes (or less) of RAM registers and 8 k bytes (or less) of effective program memory. From this point and on the term microcontroller alone will be used as a reference to low processing power microcontrollers.

[0011] The TCP protocol is a very memory-demanding protocol, making difficult its implementation in a microcontroller. The UDP protocol instead requires much less memory resources, so its implementation in a microcontroller is easier.

[0012] Since home automation devices share the same Ethernet network with personal computers, they should behave as another connected computer in order to be recognized by them. The Dynamic Host Configuration Protocol (DHCP), defined on the public document RFC2131 and published by the Network Working Group, was created for a personal computer attached to a network to obtain automatically its IP address. Even when this protocol works with the UDP protocol, it requires sending and receiving UDP packets more than 100 bytes long. Some microcontrollers don't contain enough RAM registers to cover this requirement.

[0013] With such limitations, control devices can't be considered as personal computers also, even when they are attached to the same LAN.

[0014] Thus, there is the need for a specialized and simple mechanism with low memory and protocol requirements (UDP protocol, with data packets from 16 up to 64 bytes long), capable of handling network management functions, as IP address assignment, presence detection or any other function involving all connected control devices.

[0015] In accordance to these characteristics, a control network manager installed on a computer could use UDP broadcasting messaging to communicate with every control device. If a given broadcast message generates a response from each control device, a problem arises since all of them would try to respond at the same time. As was stated before, the Ethernet standard considers a back-off algorithm to handle network collisions, but in case of having 32 (which could be real numbers for a home automation systems) control devices, collisions would still occur on every retry, and the back-off algorithm would fail.

[0016] This multiple collision condition only occurs when Ethernet hubs are used, because they work as repeaters. Ethernet switches can handle such situation avoiding multiple collisions.

[0017] However, home automation is very likely to see hubs instead of switches, since their cost is considerably lower and the number of devices attached would rarely be more than 32 or 64.This invention to provides a simple mechanism to avoid multiple collisions occurring in an Ethernet network using hubs, in accordance to home automation control devices with limited processing power.

SUMMARY OF INVENTION

[0018] This invention discloses a method for collision avoidance in Ethernet networks, such as home automation networks, with both personal computers and control devices attached to it. Ethernet hubs are considered as the type of device used to create the Ethernet network.

[0019] When a network management message is sent as a broadcast information from one personal computer to all control devices, they will generate a delayed response to the sender computer. Such delay is generated on each control device in accordance to its own MAC address. It will guarantee different delay times on all attached control devices.

[0020] The minimal time interval between two consecutive MAC addresses and the maximum possible delay time are estimated from the maximum number of expected devices attached to the hub(s).

OBJECTS AND ADVANTAGES

[0021] Accordingly, several objects and advantages of the present invention are:

[0022] a) To provide a simple mechanism of collision avoidance for low processing power control devices attached to a hub-based Ethernet network;

[0023] b) To provide a delayed responding mechanism present on every control device, which guarantees unique, different delay values for each device;

[0024] c) To provide optimal delay time estimation for minimal timing spacing and maximum response time in accordance to the maximum of expected control devices.

[0025] Other objects and advantages of this invention will become apparent from a consideration of the ensuing description and drawings.

BRIEF DESCRIPTION OF DRAWINGS

[0026] FIG. 1 Ethernet network connecting a personal computer and control devices.

LIST OF REFERENCE NUMERALS IN DRAWINGS

[0027] 110 Ethernet hub

[0028] 112 Personal computer and network manager

[0029] 114a, 114b, 114n Control devices for home automation

[0030] 116 Broadcast message for network management

[0031] 118a, 118b, 118n Response messages from control devices

DETAILED DESCRIPTION

[0032] Let there be an Ethernet installed in a residential infrastructure or a small building. Hubs are used to connect all Ethernet-compliant devices. The Ethernet network is used at the same time as a data network for personal computers and as a control network for home automation devices.

[0033] Control devices are considered as low cost, low processing power equipment, capable of handling the 10BaseT Ethernet standard for UTP cable, along with the connectionless UDP/IP protocol to communicate with both personal computers and other control devices.

[0034] A computer attached to the network executes all control network management functions applicable to all control devices. Management functions can be sent either as a point-to-point UDP message or as a broadcast UDP message. Broadcast messaging will be the point of discussion for this invention.

[0035] Given a set of broadcast messages sent by a computer and a group of control devices capable of receiving and decoding such messages. All control devices finally generate back a response to the origin computer. Due to the use of Ethernet hub(s), multiple initial collisions of response messages are avoided by including unique, deterministic delays generated in each control device. FIG. 1 represents an Ethernet network comprising a hub 110 connecting a personal computer 112 with control devices 114a, 114b and 114n. The suffix n is an indication that a generic number of control devices can be connected on the hub.

[0036] A hypothetical broadcast UDP/IP message 116, called Look_for_nodes is sent by the computer. As its name suggests, this network management message is sent to detect the presence of any control device. The corresponding response must include, for example, the actual IP address. All control devices 114a, 114b and 114n receive the UDP/IP message and must send back their response.

[0037] As was said before, every Ethernet-compliant device contains a 6-byte unique identification number called MAC address. The MAC can be separated in two parts: The three least significant bytes are called Organizationally Unique Identifier (OUI) and they identify the manufacturer of the device; the upper three bytes are used by the manufacturer to produce any kinds of 802-compliant devices. In the preferred embodiment of the invention, each control device must use the fourth byte (least significant byte of manufacturer's set of numbers) of its own MAC address to start a decreasing counter called TOUT_CTR. When the TOUT_CTR reaches zero, the response is sent to the origin computer. For a 10BaseT network, and considering up to 256 nodes, each count for de TOUT_CTR must last between 600 microseconds and 1 millisecond. It keeps an adequate minimum time spacing between consecutive MAC addresses (on the LSByte only) and also maintain a low maximum-worst case delay (256 milliseconds for the 1 millisecond spacing). Using one byte as the initial counter value allows 256 different delays, allowing a maximum of 256 control devices sharing the same Ethernet network. This number is enough for home automation solutions. Even more, Ethernet networks connected through hubs usually don't have more than 64 nodes connected to it.

[0038] In our example, if the least significant byte of the MAC address in control device 114a is lower than 114b's, and this last lower than 114n's, a response 118a will come first, followed by a response 118b, and this one followed by a response 118n. In another embodiment, not only the fourth byte of the MAC address is used, but up to all three upper bytes could be considered for a bigger TOUT_CTR. The preferred embodiment considers just one byte to keep a low resource-demanding profile. As was said before, using one byte would allow 256 different delays, so the chances to have two control devices with the same TOUT_CTR (equal fourth byte in the MAC address) are higher than having a TOUT_CTR represented by two or three bytes. It must be noticed that all three bytes would be an extreme case (there would exist more than 16 million of different TOUT_COUNTERS), because the worst wait case would be then in the order dozens of minutes! Using up to two bytes allows a maximum of 65536 different counts (chances of equal TOUT_CTR are almost zero), with a bearable one-minute delay for the worst wait case.

[0039] In a preferred embodiment of the invention, each broadcast message sent from computer 112 contains an adjustment parameter called CTR_ADJ. The CTR_ADJ can vary from 0 up to 255 and contains an exact or approximate number of actual nodes connected to the network. This information is considered to create a more or less accurate decreasing count to the TOUT_CTR. For Example, if the CTR_ADJ has a value of 10, then the full eight bit counter in TOUT_CTR is not necessary, and the four least significant bits are enough (four bits would allow 16 control nodes). This mechanism would increase the total response time. This procedure can be used as long as the control devices contain consecutive MAC addresses adjusted to the binary value contained in CTR_ADJ. If that is not the case, another simpler embodiment ignores the CTR_ADJ parameter and the full 8-bit counter TOUT_CTR is always used, regardless of the number of estimated nodes.

[0040] CONCLUSION, RAMIFICATIONS AND SCOPE OF INVENTION

[0041] As the reader can see, the collision avoidance mechanism shown here represents a simple solution for low processing power control devices, specific to in home automation systems.

[0042] Creating unique, delayed responses on each control device in response to a broadcast network management message, the occurrence of initial multiple collisions in an Ethernet hub is avoided. Since the unique MAC address contained on each Ethernet-compliant device is used as the initial timeout count, each delay will be different in a block of 256 devices (sufficient for home automation systems).With this mechanism, simple network management functions can be created to handle low cost control devices attached to an Ethernet network. A low computation time and low memory resource demanding protocol, like the UDP/IP protocol, along with short messages (16, 32 or 64 bytes long), will be enough to establish a communication between control devices and a personal computer.

[0043] While our above description contains many specificities, these should not be construed as limitations to the scope of the invention, but rather as an exemplification of one preferred embodiment thereof. Obviously, modifications and alterations will occur to others upon a reading and understanding of this specification such as, for example, creating a parameter that could control the time duration of each TOUT_CTR count.

[0044] The description above is intended, however, to include all such modifications and alterations insofar as they come within the scope of the appended claims or the equivalents thereof.

Claims

1. A method for collision avoidance in Ethernet networks, the method comprising the following steps: Having a network with a plurality of control devices; Having all control devices management functions executed by a computer means; Sending a broadcast message to all of the control devices; and Having said control devices response to said broadcast message on an unique time delay.

2. A method as in claim 1 in which the network uses an Ethernet standard.

3. A method as in claim 1 in which said computer means is an 8-bit processor.

4. A method as in claim 1 further comprising having a hub.

5. A method as in claim 1 including the following steps: Using the fourth byte of the control device's MAC address as a counter; and Using said counter to determine the delay that said control device will send said response.

6. A method as in claim 1 including the following steps: Using the fourth byte of the control device's MAC address as a decreasing counter; Reducing the counter until counter reaches zero then having the control device send the response.

7. A method as in claim 1 including the following steps: Using the fourth byte of the control device's MAC address as a counter; Having a parameter to set time increments for delay; and Using said counter to determine the delay that said control device will send said response.

8. A method as in claim 1 including the following steps: Using the fourth byte of the control device's MAC address as a counter; Having said broadcast message contain an adjustment parameter to set required number of bytes used by said counter; and Using said counter to determine the delay that said control device will send said response.

9. A method as in claim 1 including the following steps: Using the fourth, fifth and sixth bytes of the control device's MAC address as a counter; and Using said counter to determine the delay that said control device will send said response.

10. A method as in claim 1 including the following steps: Using the fourth, fifth and sixth bytes of the control device's MAC address as a decreasing counter; and Reducing the counter until counter reaches zero then having the control device send the response.

11. A method as in claim 1 including the following steps: Using the fourth, fifth and sixth bytes of the control device's MAC address as a decreasing counter; Having a parameter to set time increments for delay; and Using said counter to determine the delay that said control device will send said response.

12. A method as in claim 1 including the following steps: Using the fourth, fifth and sixth bytes of the control device's MAC address as a decreasing counter; Having said broadcast message contain an adjustment parameter to set required number of bytes used by said counter; and Using said counter to determine the delay that said control device will send said response.

Patent History
Publication number: 20030014535
Type: Application
Filed: Jul 16, 2001
Publication Date: Jan 16, 2003
Inventor: Oscar Mora (Caracas)
Application Number: 09682062
Classifications
Current U.S. Class: Congestion Avoiding (709/235); Session/connection Parameter Setting (709/228)
International Classification: G06F015/16;