removed TODO

This commit is contained in:
Proddy
2022-10-30 16:44:23 +01:00
parent b8b96763cf
commit 40f5f7026d
2 changed files with 0 additions and 2 deletions

View File

@@ -2156,7 +2156,6 @@ void Adafruit_NeoPixel::show(void) {
// We need to disable the device and disconnect // We need to disable the device and disconnect
// all the outputs before leave or the device will not // all the outputs before leave or the device will not
// be selected on the next call. // be selected on the next call.
// TODO: Check if disabling the device causes performance issues.
pwm->ENABLE = 0; pwm->ENABLE = 0;
pwm->PSEL.OUT[0] = 0xFFFFFFFFUL; pwm->PSEL.OUT[0] = 0xFFFFFFFFUL;

View File

@@ -186,7 +186,6 @@ bool Commands::find_longest_common_prefix(const std::multimap<size_t, const Comm
} }
if (chars_prefix > 0) { if (chars_prefix > 0) {
// TODO fix, no more PGM
longest_name.push_back(std::string(first).substr(0, chars_prefix)); longest_name.push_back(std::string(first).substr(0, chars_prefix));
return false; return false;
} }