mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-07-06 13:09:30 +00:00
Misc grammar fixes.
This commit is contained in:
parent
cef3a77673
commit
01aa2c7853
6 changed files with 7 additions and 7 deletions
|
@ -244,7 +244,7 @@ static int get_usage(uint8_t *report_descriptor, size_t size,
|
|||
if (usage_page_found && usage_found)
|
||||
return 0; /* success */
|
||||
|
||||
/* Skip over this key and it's associated data */
|
||||
/* Skip over this key and its associated data */
|
||||
i += data_len + key_size;
|
||||
}
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ static int uses_numbered_reports(__u8 *report_descriptor, __u32 size) {
|
|||
key_size = 1;
|
||||
}
|
||||
|
||||
/* Skip over this key and it's associated data */
|
||||
/* Skip over this key and its associated data */
|
||||
i += data_len + key_size;
|
||||
}
|
||||
|
||||
|
|
|
@ -453,7 +453,7 @@ namespace OpenZWave
|
|||
ControllerCommand_ReplaceFailedNode, /**< Replace a non-responding node with another. The node must be in the controller's list of failed nodes for this command to succeed. */
|
||||
ControllerCommand_TransferPrimaryRole, /**< Make a different controller the primary. */
|
||||
ControllerCommand_RequestNetworkUpdate, /**< Request network information from the SUC/SIS. */
|
||||
ControllerCommand_RequestNodeNeighborUpdate, /**< Get a node to rebuild it's neighbour list. This method also does ControllerCommand_RequestNodeNeighbors */
|
||||
ControllerCommand_RequestNodeNeighborUpdate, /**< Get a node to rebuild its neighbour list. This method also does ControllerCommand_RequestNodeNeighbors */
|
||||
ControllerCommand_AssignReturnRoute, /**< Assign a network return routes to a device. */
|
||||
ControllerCommand_DeleteAllReturnRoutes /**< Delete all return routes from a device. */
|
||||
};
|
||||
|
|
|
@ -1305,7 +1305,7 @@ namespace OpenZWave
|
|||
* - Driver:: ControllerCommand_TransferPrimaryRole (Not yet implemented) - Add a new controller to the network and
|
||||
* make it the primary. The existing primary will become a secondary controller.
|
||||
* - Driver::ControllerCommand_RequestNetworkUpdate - Update the controller with network information from the SUC/SIS.
|
||||
* - Driver::ControllerCommand_RequestNodeNeighborUpdate - Get a node to rebuild it's neighbour list. This method also does ControllerCommand_RequestNodeNeighbors afterwards.
|
||||
* - Driver::ControllerCommand_RequestNodeNeighborUpdate - Get a node to rebuild its neighbour list. This method also does ControllerCommand_RequestNodeNeighbors afterwards.
|
||||
* - Driver::ControllerCommand_AssignReturnRoute - Assign a network return route to a device.
|
||||
* - Driver::ControllerCommand_DeleteAllReturnRoutes - Delete all network return routes from a device.
|
||||
* <p> Callbacks
|
||||
|
|
|
@ -948,7 +948,7 @@ bool TiXmlDocument::LoadFile( const char* _filename, TiXmlEncoding encoding )
|
|||
// value = filename
|
||||
// in the STL case, cause the assignment method of the std::string to
|
||||
// be called. What is strange, is that the std::string had the same
|
||||
// address as it's c_str() method, and so bad things happen. Looks
|
||||
// address as its c_str() method, and so bad things happen. Looks
|
||||
// like a bug in the Microsoft STL implementation.
|
||||
// Add an extra string to avoid the crash.
|
||||
TIXML_STRING filename( _filename );
|
||||
|
|
|
@ -82,7 +82,7 @@ namespace OpenZWaveDotNet
|
|||
ReplaceFailedNode = Driver::ControllerCommand_ReplaceFailedNode, /**< Replace a non-responding device with another. */
|
||||
TransferPrimaryRole = Driver::ControllerCommand_TransferPrimaryRole, /**< Make a different controller the primary. */
|
||||
RequestNetworkUpdate = Driver::ControllerCommand_RequestNetworkUpdate, /**< Request network information from the SUC/SIS. */
|
||||
RequestNodeNeighborUpdate = Driver::ControllerCommand_RequestNodeNeighborUpdate, /**< Get a node to rebuild it's neighbour list. This method also does ControllerCommand_RequestNodeNeighbors */
|
||||
RequestNodeNeighborUpdate = Driver::ControllerCommand_RequestNodeNeighborUpdate, /**< Get a node to rebuild its neighbour list. This method also does ControllerCommand_RequestNodeNeighbors */
|
||||
AssignReturnRoute = Driver::ControllerCommand_AssignReturnRoute, /**< Assign a network return route to a device. */
|
||||
DeleteAllReturnRoutes = Driver::ControllerCommand_DeleteAllReturnRoutes /**< Delete all network return routes from a device. */
|
||||
};
|
||||
|
@ -1272,7 +1272,7 @@ namespace OpenZWaveDotNet
|
|||
* - ZWControllerCommand.TransferPrimaryRole (Not yet implemented) - Add a new controller to the network and
|
||||
* make it the primary. The existing primary will become a secondary controller.
|
||||
* - ZWControllerCommand.RequestNetworkUpdate - Update the controller with network information from the SUC/SIS.
|
||||
* - ZWControllerCommand.RequestNodeNeighborUpdate - Get a node to rebuild it's neighbour list. This method also does ControllerCommand_RequestNodeNeighbors afterwards.
|
||||
* - ZWControllerCommand.RequestNodeNeighborUpdate - Get a node to rebuild its neighbour list. This method also does ControllerCommand_RequestNodeNeighbors afterwards.
|
||||
* - ZWControllerCommand.AssignReturnRoute - Assign network routes to a device.
|
||||
* - ZWControllerCommand.DeleteReturnRoute - Delete network routes from a device.
|
||||
* <p>These processes are asynchronous, and at various stages OpenZWave will trigger a callback
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue