Skip to content

Commit

Permalink
BusDigital::begin: Pass clock rate argument
Browse files Browse the repository at this point in the history
Fixes bug introduced by Aircoookie#4312.
  • Loading branch information
willmmiles committed Nov 27, 2024
1 parent 7796773 commit acc8b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wled00/bus_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ std::vector<LEDType> BusDigital::getLEDTypes() {

void BusDigital::begin() {
if (!_valid) return;
PolyBus::begin(_busPtr, _iType, _pins);
PolyBus::begin(_busPtr, _iType, _pins, _frequencykHz);
}

void BusDigital::cleanup() {
Expand Down

0 comments on commit acc8b9c

Please sign in to comment.