/
CONodeStart
CONodeStart
Description
This function will finish the initialization phase. The node will change into PRE-OPERATIONAL state and is ready for communication.
Prototype
void CONodeStart(CO_NODE *node);
Parameter | Description |
---|---|
node | pointer to the CANopen node object |
Returned Value
none
Example
The following example shows the typical startup of a CANopen node AppNode with the specification AppSpec:
CO_ERR err; : CONodeInit (&AppNode, (CO_NODE_SPEC *)&AppSpec); err = CONodeGetErr (&AppNode); if (err == CO_ERR_NONE) { CONodeStart (&AppNode); } else { /* error handling and diagnostics */ } :
, multiple selections available,
Related content
CONodeInit
CONodeInit
More like this
CONodeGetErr
CONodeGetErr
More like this
Node Start
Node Start
More like this
CONodeStop
CONodeStop
More like this
Controlling the Node
Controlling the Node
More like this
Node Specification
Node Specification
More like this