| 80 | } |
| 81 | |
| 82 | void CanRawFilter::txFrameIn(const QCanBusFrame& frame) |
| 83 | { |
| 84 | Q_D(CanRawFilter); |
| 85 | |
| 86 | if(d->acceptTxFrame(frame) && d->_simStarted) { |
| 87 | emit txFrameOut(frame); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void CanRawFilter::rxFrameIn(const QCanBusFrame& frame) |
| 92 | { |
no test coverage detected