diff --git a/src/shared/radio/SX1278/SX1278Frontends.h b/src/shared/radio/SX1278/SX1278Frontends.h index 0086b72a9244846bc658e2d18dc5b789ff128248..e766627128d9993bc465f98194db48d14549b458 100644 --- a/src/shared/radio/SX1278/SX1278Frontends.h +++ b/src/shared/radio/SX1278/SX1278Frontends.h @@ -40,8 +40,6 @@ public: bool isOnPaBoost() override { return true; } int maxInPower() override { - // TODO: Set this to a proper value, right now it's just guessed, the - // datasheet is just too cryptic, fucking chinese datasheet return 15; } diff --git a/src/tests/radio/sx1278/lora/test-sx1278-bidir.cpp b/src/tests/radio/sx1278/lora/test-sx1278-bidir.cpp index c89191e55cf55303c9525c3dddfe1abe5581aea8..a08f009cb9c699e49e0bf0df69217d6d5a3056c2 100644 --- a/src/tests/radio/sx1278/lora/test-sx1278-bidir.cpp +++ b/src/tests/radio/sx1278/lora/test-sx1278-bidir.cpp @@ -186,7 +186,7 @@ int main() printf("\n[sx1278] Configuring sx1278...\n"); if ((err = sx1278->init(config)) != SX1278Lora::Error::NONE) { - printf("[sx1278] sx1278->init error: %s\n", "TODO"); + printf("[sx1278] sx1278->init error\n"); return -1; } diff --git a/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp b/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp index 3b51df6cbdd75bcafe7f1c9148023db007e82714..4bf32e6ba58c3719140a1e7a6d38e3071b434ce7 100644 --- a/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp +++ b/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp @@ -197,7 +197,7 @@ int main() printf("\n[sx1278] Configuring sx1278...\n"); if ((err = sx1278->init(config)) != SX1278Lora::Error::NONE) { - printf("[sx1278] sx1278->init error: %s\n", "TODO"); + printf("[sx1278] sx1278->init error\n"); return -1; } diff --git a/src/tests/radio/sx1278/lora/test-sx1278-simple.cpp b/src/tests/radio/sx1278/lora/test-sx1278-simple.cpp index 85a2a75ea9544baea7fb6666dc621f0bbe77cbb1..2d4bdc75b62f457aa44bc77104d7c53df3ab1a5d 100644 --- a/src/tests/radio/sx1278/lora/test-sx1278-simple.cpp +++ b/src/tests/radio/sx1278/lora/test-sx1278-simple.cpp @@ -116,7 +116,7 @@ int main() printf("\n[sx1278] Configuring sx1278...\n"); if ((err = sx1278->init(config)) != SX1278Lora::Error::NONE) { - printf("[sx1278] sx1278->init error: %s\n", "TODO"); + printf("[sx1278] sx1278->init error\n"); return -1; } diff --git a/src/tests/radio/sx1278/test-sx1278-bench-gui.cpp b/src/tests/radio/sx1278/test-sx1278-bench-gui.cpp index 0182e06f2ae8d6c91d35194d1a272b84b724b2f5..c07aea5c2831cb31e640866d73d5775e3b78759e 100644 --- a/src/tests/radio/sx1278/test-sx1278-bench-gui.cpp +++ b/src/tests/radio/sx1278/test-sx1278-bench-gui.cpp @@ -31,7 +31,6 @@ GUI *gui = nullptr; void initGUI() { - // TODO: This should be in bsp using GpioUserBtn = Gpio<GPIOA_BASE, 0>; GpioUserBtn::mode(Mode::INPUT_PULL_DOWN);