1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-06-16 07:06:51 +00:00

outvector struct now only created when building native

This commit is contained in:
bpmcgeeney 2021-11-04 21:56:39 -07:00
parent a305b9599e
commit 897b5c1d7d

View File

@ -19,13 +19,13 @@ unsigned long last;
#if defined(NATIVE) || defined(_WIN32) #if defined(NATIVE) || defined(_WIN32)
#include "native.h" #include "native.h"
outVector stateVector;
#elif defined(TEENSY) #elif defined(TEENSY)
#include "teensy.h" #include "teensy.h"
#endif #endif
Vehicle State; Vehicle State;
Vehicle PrevState; Vehicle PrevState;
outVector stateVector;
#if defined(NATIVE) || defined(_WIN32) #if defined(NATIVE) || defined(_WIN32)
void setup() { void setup() {