| 8 | // ========== New Variant-Based Constructors ========== |
| 9 | |
| 10 | ChannelConfig::ChannelConfig(const fl::string& name, const ChipsetVariant& chipset, |
| 11 | fl::span<CRGB> leds, EOrder rgbOrder, const ChannelOptions& options) |
| 12 | : ChannelConfig(chipset, leds, rgbOrder, options) { |
| 13 | mName = name; |
| 14 | } |
| 15 | |
| 16 | ChannelConfig::ChannelConfig(const ChipsetVariant& chipset, fl::span<CRGB> leds, |
| 17 | EOrder rgbOrder, const ChannelOptions& options) |
nothing calls this directly
no test coverage detected