| 47 | } |
| 48 | |
| 49 | NodeDataType CanSignalEncoderModel::dataType(PortType portType, PortIndex ndx) const |
| 50 | { |
| 51 | if (portMappings.at(portType).size() > static_cast<uint32_t>(ndx)) { |
| 52 | return portMappings.at(portType)[ndx]; |
| 53 | } |
| 54 | |
| 55 | cds_error("No port mapping for ndx: {}", ndx); |
| 56 | return {}; |
| 57 | } |
| 58 | |
| 59 | std::shared_ptr<NodeData> CanSignalEncoderModel::outData(PortIndex) |
| 60 | { |
no test coverage detected