Deduplicate NRF52 startOTAUpdate()

The startOTAUpdate() is the same for all NRF52 boards. Use a common
implementation for all boards that currently have a specific
implementation.

The following boards currently have an empty startOTAUpdate() for
whatever reasons and therefore are not inheriting NRF52BoardOTA to
keep the same state: Nano G2 Ultra, Seeed SenseCAP T1000-E,
Wio WM1110.

Signed-off-by: Frieder Schrempf <frieder@fris.de>
Este commit está contenido en:
Frieder Schrempf
2025-12-17 10:30:50 +01:00
padre e3bb225efb
commit b024b9e1a1
Se han modificado 37 ficheros con 133 adiciones y 1144 borrados
+2 -3
Ver fichero
@@ -6,8 +6,9 @@
#ifdef IKOKA_NRF52
class IkokaNrf52Board : public NRF52Board {
class IkokaNrf52Board : public NRF52BoardOTA {
public:
IkokaNrf52Board() : NRF52BoardOTA("XIAO_NRF52_OTA") {}
void begin();
#if defined(P_LORA_TX_LED)
@@ -38,8 +39,6 @@ public:
const char* getManufacturerName() const override {
return "Ikoka Handheld E22 30dBm (Xiao_nrf52)";
}
bool startOTAUpdate(const char* id, char reply[]) override;
};
#endif