| 122 | |
| 123 | #if ((CO_CONFIG_GFC)&CO_CONFIG_GFC_PRODUCER) != 0 |
| 124 | CO_ReturnError_t |
| 125 | CO_GFCsend(CO_GFC_t* GFC) { |
| 126 | if (GFC->valid) { |
| 127 | return CO_CANsend(GFC->CANdevTx, GFC->CANtxBuff); |
| 128 | } |
| 129 | return CO_ERROR_NO; |
| 130 | } |
| 131 | #endif |
| 132 | |
| 133 | #endif /* (CO_CONFIG_GFC) & CO_CONFIG_GFC_ENABLE */ |
nothing calls this directly
no test coverage detected