mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
19 lines
297 B
C
19 lines
297 B
C
|
|
#ifndef TASK_ETH_H_
|
||
|
|
#define TASK_ETH_H_
|
||
|
|
|
||
|
|
#include <TaskManager.h>
|
||
|
|
|
||
|
|
class EthTask : public Task
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
EthTask();
|
||
|
|
virtual ~EthTask();
|
||
|
|
|
||
|
|
virtual bool setup(std::shared_ptr<Configuration> config) override;
|
||
|
|
virtual bool loop(std::shared_ptr<Configuration> config) override;
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|