Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
runger1101001 committed May 10, 2024
1 parent 69287af commit 52b754d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/settings/rp2040/RP2040FlashSettingsStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,18 @@ RegisterIO& RP2040FlashSettingsStorage::operator>>(uint32_t& value) {


RegisterIO& RP2040FlashSettingsStorage::operator<<(uint8_t value) {

// TODO implement me!
return *this;
};

RegisterIO& RP2040FlashSettingsStorage::operator<<(float value) {

// TODO implement me!
return *this;
};

RegisterIO& RP2040FlashSettingsStorage::operator<<(uint32_t value) {

// TODO implement me!
return *this;
};

#endif

0 comments on commit 52b754d

Please sign in to comment.