| 127 | } |
| 128 | |
| 129 | FL_OPTIMIZE_FUNCTION FL_IRAM |
| 130 | void wave3Transpose_4(const u8 (&FL_RESTRICT_PARAM lanes)[4], |
| 131 | const Wave3BitExpansionLut& lut, |
| 132 | u8 (&FL_RESTRICT_PARAM output)[4 * sizeof(Wave3Byte)]) { |
| 133 | Wave3Byte laneWaveforms[4]; |
| 134 | for (int lane = 0; lane < 4; lane++) { |
| 135 | detail::wave3_convert_byte_to_wave3byte(lanes[lane], lut, &laneWaveforms[lane]); |
| 136 | } |
| 137 | detail::wave3_transpose_4(laneWaveforms, output); |
| 138 | } |
| 139 | |
| 140 | FL_OPTIMIZE_FUNCTION FL_IRAM |
| 141 | void wave3Transpose_8(const u8 (&FL_RESTRICT_PARAM lanes)[8], |
no test coverage detected