Advertisement
Guest User

RFM69_ATTiny_Sloeber_Fehler

a guest
Apr 13th, 2020
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. 12:02:33 **** Build of configuration Release for project TEST ****
  2. "C:\\Sloeber\\arduinoPlugin\\tools\\make\\make" all
  3. 'Building file: ..\sloeber.ino.cpp'
  4. 'Starting C++ compile'
  5. "C:\Sloeber\arduinoPlugin\packages\arduino\tools\avr-gcc\7.3.0-atmel3.6.1-arduino5/bin/avr-g++" -c -g -Os -Wall -Wextra -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD  -mmcu=attiny84 -DF_CPU=8000000L -DCLOCK_SOURCE=0 -DARDUINO=10802 -DARDUINO_AVR_ATTINYX4 -DARDUINO_ARCH_AVR  -DDISABLEMILLIS -DNEOPIXELPORT=PORTB   -I"C:\Sloeber\arduinoPlugin\packages\ATTinyCore\hardware\avr\1.3.3\cores\tiny" -I"C:\Sloeber\arduinoPlugin\packages\ATTinyCore\hardware\avr\1.3.3\variants\tinyX4_reverse" -I"C:\Sloeber\arduinoPlugin\libraries\RFM69_LowPowerLab\1.4.0" -I"C:\Sloeber\arduinoPlugin\packages\ATTinyCore\hardware\avr\1.3.3\libraries\SPI" -I"C:\Users\Maximilian Schrader\Documents\Arduino\libraries\SPIFlash_LowPowerLab" -MMD -MP -MF"sloeber.ino.cpp.d" -MT"sloeber.ino.cpp.o" -D__IN_ECLIPSE__=1 -x c++ "..\sloeber.ino.cpp"  -o  "sloeber.ino.cpp.o"
  6. In file included from ..\sloeber.ino.cpp:9:0:
  7. C:\Sloeber\arduinoPlugin\libraries\RFM69_LowPowerLab\1.4.0/RFM69.h: In constructor 'RFM69::RFM69(uint8_t, uint8_t, bool, uint8_t)':
  8. C:\Sloeber\arduinoPlugin\libraries\RFM69_LowPowerLab\1.4.0/RFM69.h:192:81: warning: unused parameter 'interruptNum' [-Wunused-parameter]
  9.      RFM69(uint8_t slaveSelectPin, uint8_t interruptPin, bool isRFM69HW, uint8_t interruptNum) //interruptNum is now deprecated
  10.                                                                                  ^~~~~~~~~~~~
  11. C:\Sloeber\arduinoPlugin\libraries\RFM69_LowPowerLab\1.4.0/RFM69.h: In member function 'virtual void RFM69::interruptHook(uint8_t)':
  12. C:\Sloeber\arduinoPlugin\libraries\RFM69_LowPowerLab\1.4.0/RFM69.h:229:40: warning: unused parameter 'CTLbyte' [-Wunused-parameter]
  13.      virtual void interruptHook(uint8_t CTLbyte) {};
  14.                                         ^~~~~~~
  15. In file included from ..\sloeber.ino.cpp:17:0:
  16. ..\TEST.ino: At global scope:
  17. ..\TEST.ino:22:1: error: 'all' does not name a type; did you mean 'atol'?
  18.  all nodes
  19.  ^~~
  20.  atol
  21. ..\TEST.ino: In function 'void setup()':
  22. ..\TEST.ino:55:3: error: 'radio' was not declared in this scope
  23.    radio.initialize(FREQUENCY, MYNODEID, NETWORKID);
  24.    ^~~~~
  25. ..\TEST.ino:55:3: note: suggested alternative: 'random'
  26.    radio.initialize(FREQUENCY, MYNODEID, NETWORKID);
  27.    ^~~~~
  28.    random
  29. ..\TEST.ino: In function 'void loop()':
  30. ..\TEST.ino:108:13: error: 'radio' was not declared in this scope
  31.          if (radio.sendWithRetry(TONODEID, sendbuffer, sendlength))
  32.              ^~~~~
  33. ..\TEST.ino:108:13: note: suggested alternative: 'random'
  34.          if (radio.sendWithRetry(TONODEID, sendbuffer, sendlength))
  35.              ^~~~~
  36.              random
  37. ..\TEST.ino:118:9: error: 'radio' was not declared in this scope
  38.          radio.send(TONODEID, sendbuffer, sendlength);
  39.          ^~~~~
  40. ..\TEST.ino:118:9: note: suggested alternative: 'random'
  41.          radio.send(TONODEID, sendbuffer, sendlength);
  42.          ^~~~~
  43.          random
  44. ..\TEST.ino:131:7: error: 'radio' was not declared in this scope
  45.    if (radio.receiveDone()) // Got one!
  46.        ^~~~~
  47. ..\TEST.ino:131:7: note: suggested alternative: 'random'
  48.    if (radio.receiveDone()) // Got one!
  49.        ^~~~~
  50.        random
  51. subdir.mk:18: recipe for target 'sloeber.ino.cpp.o' failed
  52. make: *** [sloeber.ino.cpp.o] Error 1
  53. "C:/Sloeber/arduinoPlugin/tools/make/make all" terminated with exit code 2. Build might be incomplete.
  54.  
  55. 12:02:35 Build Failed. 7 errors, 2 warnings. (took 1s.384ms)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement