rename OTA plugin

This commit is contained in:
2018-08-03 16:02:51 +02:00
parent 346ac043fe
commit 32975862d8
2 changed files with 0 additions and 2 deletions

View File

@@ -14,7 +14,6 @@ struct OtaConfig {
const char* password; const char* password;
}; };
// TODO rename to OtaTcpPlugin
class OtaTcpPlugin : public Plugin { class OtaTcpPlugin : public Plugin {
private: private:
OtaConfig config; OtaConfig config;

View File

@@ -34,7 +34,6 @@ class Sprocket {
virtual Sprocket* activate(); virtual Sprocket* activate();
virtual Sprocket* activate(Scheduler*) { return this; } virtual Sprocket* activate(Scheduler*) { return this; }
virtual Sprocket* activate(Scheduler*, Network*) { return this; } virtual Sprocket* activate(Scheduler*, Network*) { return this; }
virtual Sprocket* enable() { return this; };
// TODO bind onMessage to network->onReceive // TODO bind onMessage to network->onReceive
//virtual void onMessage(uint32_t from, String &msg) {}; //virtual void onMessage(uint32_t from, String &msg) {};
}; };