1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-23 18:53:06 +01:00
Files
esp32-nmea2000-obp60/lib/exampletask/GwExampleTask.h
2021-11-27 20:56:36 +01:00

15 lines
423 B
C

#ifndef _GWEXAMPLETASK_H
#define _GWEXAMPLETASK_H
#include "GwExampleHardware.h"
#include "GwApi.h"
//we only compile for some boards
#ifdef BOARD_TEST
void exampleTask(void *param);
//make the task known to the core
DECLARE_USERTASK(exampleTask);
//we declare a capability that we can
//use in config.json to only show some
//elements when this capability is set correctly
DECLARE_CAPABILITY(testboard,true);
#endif
#endif