Skocz do zawartości

Błąd kompilacji dla płytki arduino uno


Pomocna odpowiedź

Napisano (edytowany)

witam chciałem wgrać program sle wyświetlił mi sie błąd kompilacji dla płytki arduino uno nie wiem co zrobić.

 

kod wziąłem z tego filmu: https://www.youtube.com/watch?v=qGAk_3m8N0Q

jest to zamek w opisie jest link do pobrania

 

 

 

 

kod programu:

 

#include <SPI.h>
#include <MFRC522.h>
	#define czas_trwania 5000
const byte UID[] = {0x03, 0x74, 0x91, 0x97};
	
MFRC522 rfid(10, 9);
MFRC522::MIFARE_Key key;
boolean stan = false;
unsigned long czas;
	void setup() {
  Serial.begin(9600);
  SPI.begin();
  rfid.PCD_Init();
  pinMode(2, OUTPUT);
}
	void loop() {
  if (rfid.PICC_IsNewCardPresent() && rfid.PICC_ReadCardSerial())
  {
    if (rfid.uid.uidByte[0] == UID[0] && 
        rfid.uid.uidByte[1] == UID[1] &&
        rfid.uid.uidByte[2] == UID[2] &&
        rfid.uid.uidByte[3] == UID[3])
    {
      Serial.println("Poprawny");
      stan = true;
      czas = millis() + czas_trwania;
    } else
    {
      Serial.println("Niepoprawny");
      stan = false;
    }
    rfid.PICC_HaltA();
    rfid.PCD_StopCrypto1();
  }
	  if (stan && czas < millis())
    stan = false;
	  digitalWrite(2, stan)  ;
}

 

 

 

 

 

 

 

 

 

 

 

 

 

arrrrr.thumb.png.f0767d9f2463c246ddaff8930d2b5673.png

 

kod błędu:











C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware -tools C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\tools-builder -tools C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -built-in-libraries C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\libraries -libraries C:\Users\kotli\OneDrive\Dokumenty\Arduino\libraries -fqbn=arduino:avr:uno -vid-pid=2341_0043 -ide-version=10815 -build-path C:\Users\kotli\AppData\Local\Temp\arduino_build_778257 -warnings=none -build-cache C:\Users\kotli\AppData\Local\Temp\arduino_cache_518628 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -verbose C:\Users\kotli\Downloads\zamek\zamek.ino
C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\arduino-builder -compile -logger=machine -hardware C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware -tools C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\tools-builder -tools C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -built-in-libraries C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\libraries -libraries C:\Users\kotli\OneDrive\Dokumenty\Arduino\libraries -fqbn=arduino:avr:uno -vid-pid=2341_0043 -ide-version=10815 -build-path C:\Users\kotli\AppData\Local\Temp\arduino_build_778257 -warnings=none -build-cache C:\Users\kotli\AppData\Local\Temp\arduino_cache_518628 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\tools\avr -verbose C:\Users\kotli\Downloads\zamek\zamek.ino
Using board 'uno' from platform in folder: C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\arduino\avr
Using core 'arduino' from platform in folder: C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\arduino\avr
Detecting libraries used...
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp" -o nul
Alternatives for SPI.h: [SPI@1.0]
ResolveLibrary(SPI.h)
  -> candidates: [SPI@1.0]
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp" -o nul
Alternatives for MFRC522.h: [MFRC522@1.4.9]
ResolveLibrary(MFRC522.h)
  -> candidates: [MFRC522@1.4.9]
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp" -o nul
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522.cpp" -o nul
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522Extended.cpp" -o nul
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src\\SPI.cpp" -o nul
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src\\MFRC522.cpp" -o nul
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src\\MFRC522Extended.cpp" -o nul
Generating function prototypes...
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\preproc\\ctags_target_for_gcc_minus_e.cpp"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\preproc\\ctags_target_for_gcc_minus_e.cpp"
Kompilowanie szkicu...
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522Extended.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522Extended.cpp.o"
Compiling libraries...
Compiling library "SPI"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src\\SPI.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\SPI\\SPI.cpp.o"
Compiling library "MFRC522"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src\\MFRC522.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\MFRC522\\MFRC522.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\libraries\\SPI\\src" "-IC:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src" "C:\\Users\\kotli\\OneDrive\\Dokumenty\\Arduino\\libraries\\MFRC522\\src\\MFRC522Extended.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\MFRC522\\MFRC522Extended.cpp.o"
Compiling core...
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -x assembler-with-cpp -flto -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring_pulse.S" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_pulse.S.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\WInterrupts.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WInterrupts.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\hooks.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\hooks.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring_pulse.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_pulse.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring_digital.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_digital.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring_analog.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_analog.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\wiring_shift.c" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_shift.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial3.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial3.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\CDC.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\CDC.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial0.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial0.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial2.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial2.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial1.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial1.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\IPAddress.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\IPAddress.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\PluggableUSB.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\PluggableUSB.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\Print.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Print.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Stream.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\Tone.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Tone.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\USBCore.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\USBCore.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\WMath.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WMath.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\WString.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WString.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\abi.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\abi.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\main.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\main.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\variants\\standard" "C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\arduino\\avr\\cores\\arduino\\new.cpp" -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\new.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_pulse.S.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WInterrupts.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\hooks.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_analog.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_digital.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_pulse.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\wiring_shift.c.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\CDC.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial0.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial1.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial2.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\HardwareSerial3.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\IPAddress.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\PluggableUSB.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Print.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Stream.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\Tone.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\USBCore.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WMath.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\WString.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\abi.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\main.cpp.o"
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\core.a" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\core\\new.cpp.o"
Archiwizowanie budowanego rdzenia (buforowanie) w: C:\Users\kotli\AppData\Local\Temp\arduino_cache_518628\core\core_arduino_avr_uno_94baf922c9d38d8316eaa2affe0e6dcb.a
Linking everything together...
"C:\\Program Files\\WindowsApps\\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\\hardware\\tools\\avr/bin/avr-gcc" -w -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega328p -o "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257/zamek.ino.elf" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\zamek.ino.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\sketch\\src\\MFRC522Extended.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\SPI\\SPI.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\MFRC522\\MFRC522.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257\\libraries\\MFRC522\\MFRC522Extended.cpp.o" "C:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257/core\\core.a" "-LC:\\Users\\kotli\\AppData\\Local\\Temp\\arduino_build_778257" -lm
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_ReadCardSerial()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522(unsigned char, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MFRC522(unsigned char, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_WriteRegister(MFRC522::PCD_Register, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_WriteRegister(MFRC522::PCD_Register, unsigned char, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_ReadRegister(MFRC522::PCD_Register)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_ReadRegister(MFRC522::PCD_Register, unsigned char, unsigned char*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_SetRegisterBitMask(MFRC522::PCD_Register, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_ClearRegisterBitMask(MFRC522::PCD_Register, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_CalculateCRC(unsigned char*, unsigned char, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_Reset()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_AntennaOn()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_Init()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_Init(unsigned char, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_Init(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_AntennaOff()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_GetAntennaGain()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_SetAntennaGain(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_PerformSelfTest()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_SoftPowerDown()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_SoftPowerUp()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_CommunicateWithPICC(unsigned char, unsigned char, unsigned char*, unsigned char, unsigned char*, unsigned char*, unsigned char*, unsigned char, bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_TransceiveData(unsigned char*, unsigned char, unsigned char*, unsigned char*, unsigned char*, unsigned char, bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_Select(MFRC522::Uid*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_REQA_or_WUPA(unsigned char, unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_RequestA(unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_IsNewCardPresent()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_WakeupA(unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_HaltA()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_Authenticate(unsigned char, unsigned char, MFRC522::MIFARE_Key*, MFRC522::Uid*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_StopCrypto1()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Read(unsigned char, unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Ultralight_Write(unsigned char, unsigned char*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_TwoStepHelper(unsigned char, unsigned char, long)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Decrement(unsigned char, long)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Increment(unsigned char, long)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Restore(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Transfer(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_GetValue(unsigned char, long*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_NTAG216_AUTH(unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_MIFARE_Transceive(unsigned char*, unsigned char, bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_Write(unsigned char, unsigned char*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_SetValue(unsigned char, long)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::GetStatusCodeName(MFRC522::StatusCode)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_GetType(unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_GetTypeName(MFRC522::PICC_Type)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PCD_DumpVersionToSerial()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_DumpDetailsToSerial(MFRC522::Uid*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_DumpMifareClassicSectorToSerial(MFRC522::Uid*, MFRC522::MIFARE_Key*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_DumpMifareClassicToSerial(MFRC522::Uid*, MFRC522::PICC_Type, MFRC522::MIFARE_Key*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_DumpMifareUltralightToSerial()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::PICC_DumpToSerial(MFRC522::Uid*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_SetAccessBits(unsigned char*, unsigned char, unsigned char, unsigned char, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_OpenUidBackdoor(bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_SetUid(unsigned char*, unsigned char, bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522.cpp.o (symbol from plugin): In function `MFRC522::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522::MIFARE_UnbrickUidSector(bool)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_ReadCardSerial()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_IsNewCardPresent()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_RequestATS(MFRC522Extended::Ats*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_PPS()'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_PPS(MFRC522Extended::TagBitRates, MFRC522Extended::TagBitRates)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_Select(MFRC522::Uid*, unsigned char)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::TCL_Transceive(MFRC522Extended::PcbBlock*, MFRC522Extended::PcbBlock*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::TCL_TransceiveRBlock(MFRC522Extended::TagInfo*, bool, unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::TCL_Transceive(MFRC522Extended::TagInfo*, unsigned char*, unsigned char, unsigned char*, unsigned char*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::TCL_Deselect(MFRC522Extended::TagInfo*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_GetType(MFRC522Extended::TagInfo*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_DumpDetailsToSerial(MFRC522Extended::TagInfo*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_DumpISO14443_4(MFRC522Extended::TagInfo*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\libraries\MFRC522\MFRC522Extended.cpp.o (symbol from plugin): In function `MFRC522Extended::PICC_ReadCardSerial()':
(.text+0x0): multiple definition of `MFRC522Extended::PICC_DumpToSerial(MFRC522Extended::TagInfo*)'
C:\Users\kotli\AppData\Local\Temp\arduino_build_778257\sketch\src\MFRC522Extended.cpp.o (symbol from plugin):(.text+0x0): first defined here
collect2.exe: error: ld returned 1 exit status
Użycie biblioteki SPI w wersji 1.0 z folderu: C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.49.0_x86__mdqgnx93n4wtt\hardware\arduino\avr\libraries\SPI 
Użycie biblioteki MFRC522 w wersji 1.4.9 z folderu: C:\Users\kotli\OneDrive\Dokumenty\Arduino\libraries\MFRC522 
exit status 1
Błąd kompilacji dla płytki Arduino Uno.

 

Edytowano przez frakot2007

Bądź aktywny - zaloguj się lub utwórz konto!

Tylko zarejestrowani użytkownicy mogą komentować zawartość tej strony

Utwórz konto w ~20 sekund!

Zarejestruj nowe konto, to proste!

Zarejestruj się »

Zaloguj się

Posiadasz własne konto? Użyj go!

Zaloguj się »
×
×
  • Utwórz nowe...