mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-04 23:59:58 +01:00
18 lines
255 B
C++
18 lines
255 B
C++
#ifndef TASK_ETH_H_
|
|
#define TASK_ETH_H_
|
|
|
|
#include <TaskManager.h>
|
|
|
|
class EthTask : public Task {
|
|
public:
|
|
EthTask();
|
|
virtual ~EthTask();
|
|
|
|
virtual bool setup(System &system) override;
|
|
virtual bool loop(System &system) override;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|