deleting test stuff from this PR... that's harder than I expected

This commit is contained in:
Brett Christensen 2024-02-09 17:12:29 +11:00
parent 711aeded0c
commit 78ca80feae
11 changed files with 1 additions and 445 deletions

View file

@ -1 +0,0 @@
# add_library(utils_library events.cpp)

View file

@ -1,5 +1,6 @@
#ifndef __EVENTS_H__
#define __EVENTS_H__
#include <stdint.h>
#ifndef UNIT_TEST
#include <Arduino.h>
@ -7,8 +8,6 @@ extern unsigned long previous_millis;
extern uint32_t time_seconds;
#endif
#include <stdint.h>
#define EVENTS_ENUM_TYPE(XX) \
XX(EVENT_CAN_FAILURE) \
XX(EVENT_CAN_WARNING) \

View file

@ -1 +0,0 @@
g++ events_test.cpp ../../../test/test_lib.cpp -o events_test.exe -DUNIT_TEST -I.