FastLED 3.9.15
Loading...
Searching...
No Matches

◆ wave3Transpose_2()

void fl::wave3Transpose_2 ( const u8(&) lanes[2],
const Wave3BitExpansionLut & lut,
u8(&) output[2 *sizeof(Wave3Byte)] )

Definition at line 120 of file wave3.cpp.hpp.

122 {
123 Wave3Byte laneWaveforms[2];
124 detail::wave3_convert_byte_to_wave3byte(lanes[0], lut, &laneWaveforms[0]);
125 detail::wave3_convert_byte_to_wave3byte(lanes[1], lut, &laneWaveforms[1]);
126 detail::wave3_transpose_2(laneWaveforms, output);
127}
FASTLED_FORCE_INLINE FL_IRAM FL_OPTIMIZE_FUNCTION void wave3_transpose_2(const Wave3Byte lane_waves[2], u8 output[2 *sizeof(Wave3Byte)])
Transpose 2 lanes of Wave3Byte data into interleaved format.
Definition wave3.hpp:51
FASTLED_FORCE_INLINE FL_IRAM FL_OPTIMIZE_FUNCTION void wave3_convert_byte_to_wave3byte(u8 byte_value, const Wave3BitExpansionLut &lut, Wave3Byte *output)
Helper: Convert byte to Wave3Byte using nibble LUT (internal use only)
Definition wave3.hpp:27
Type-safe container for 3-byte wave pulse pattern (wave3 encoding)
Definition wave3.h:20

References FL_RESTRICT_PARAM, fl::detail::wave3_convert_byte_to_wave3byte(), and fl::detail::wave3_transpose_2().

+ Here is the call graph for this function: