So DCS(a game) supports Arduino and i added the file to my libary and re added it multiple times but always get the same error... No one else seems to get the same error, and cant find what is causing it...
this is were i got it
https://codeload.github.com/dcs-bios/dcs-bios-arduino-library/zip/refs/tags/v0.2.11
/*
Tell DCS-BIOS to use a serial connection and use interrupt-driven
communication. The main program will be interrupted to prioritize
processing incoming data.
This should work on any Arduino that has an ATMega328 controller
(Uno, Pro Mini, many others).
*/
#define DCSBIOS_IRQ_SERIAL
#include "DcsBios.h"
/* paste code snippets from the reference documentation here */
void setup() {
DcsBios::setup();
}
void loop() {
DcsBios::loop();
}