Advertisement
Guest User

Error Output

a guest
Feb 13th, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. In file included from lib\wifiManager\src/wifiManager.h:10:0,
  2. from lib\mqtt\src/mqttHandler.h:8,
  3. from lib\logging\src/logger.h:7,
  4. from lib\wrapper/wrapper.h:4,
  5. from src\main.cpp:2:
  6. lib\moduleState\src/moduleState.h: In member function 'void ClassModuleMaster::showErrorWarnMessage(ClassReportTemplate*, bool)':
  7. lib\moduleState\src/moduleState.h:544:34: error: variable 'SysLogger tempLogger' has initializer but incomplete type
  8. SysLogger tempLogger(FM, "ReportHandler");
  9. ^
  10. lib\moduleState\src/moduleState.h: In member function 'void ClassModuleMaster::checkClassRepeatIntervall()':
  11. lib\moduleState\src/moduleState.h:585:42: error: variable 'SysLogger tempLogger' has initializer but incomplete type
  12. SysLogger tempLogger(FM, "ReportHandler");
  13. ^
  14. lib\moduleState\src/moduleState.h:596:132: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  15. if(_actualSlavePointer->_repeatChecker->getCallPerSecond() >= _actualSlavePointer->_repeatChecker->getEstCallPerSecond()) ^
  16. In file included from lib\mqtt\src/mqttHandler.h:8:0,
  17. from lib\logging\src/logger.h:7,
  18. from lib\wrapper/wrapper.h:4,
  19. from src\main.cpp:2:
  20. lib\wifiManager\src/wifiManager.h: At global scope:
  21. lib\wifiManager\src/wifiManager.h:61:19: error: field 'logging' has incomplete type
  22. SysLogger logging;
  23. ^
  24. In file included from lib\serviceHandler\src/serviceHandler.h:16:0,
  25. from lib\mqtt\src/mqttHandler.h:10,
  26. from lib\logging\src/logger.h:7,
  27. from lib\wrapper/wrapper.h:4,
  28. from src\main.cpp:2:
  29. lib\udpManager\src/udpManager.h:66:19: error: field 'logging' has incomplete type
  30. SysLogger logging;
  31. Compiling .pio\build\nodemcu\lib5a1\ESP8266WiFi\WiFiClientSecureBearSSL.cpp.o
  32. ^
  33. Compiling .pio\build\nodemcu\lib5a1\ESP8266WiFi\WiFiServer.cpp.o
  34. In file included from lib\mqtt\src/mqttHandler.h:10:0,
  35. from lib\logging\src/logger.h:7,
  36. from lib\wrapper/wrapper.h:4,
  37. from src\main.cpp:2:
  38. lib\serviceHandler\src/serviceHandler.h:198:19: error: field 'logging' has incomplete type
  39. SysLogger logging;
  40. ^
  41. In file included from lib\logging\src/logger.h:7:0,
  42. from lib\wrapper/wrapper.h:4,
  43. from src\main.cpp:2:
  44. lib\mqtt\src/mqttHandler.h:71:19: error: field 'logging' has incomplete type
  45. SysLogger logging;
  46. ^
  47. src\main.cpp: In function 'void function()':
  48. src\main.cpp:51:71: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
  49. if(strcmp(mqtthandler->getCallback()->topic, "home/control") == 0 && mqtthandler->getCallback()->payload == "readFile" || readActive == true)
  50. ^
  51. src\main.cpp:159:15: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
  52. if(step > 1 & !mqtthandler->isConnected())
  53. ^
  54. src\main.cpp: In function 'void loop()':
  55. src\main.cpp:240:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  56. if(millis() > lastCall)
  57. ^
  58. *** [.pio\build\nodemcu\src\main.cpp.o] Error 1
  59. ==================================================== [FAILED] Took 36.14 seconds ====================================================
  60. The terminal process "C:\Users\Justin\.platformio\penv\Scripts\pio.exe 'run'" terminated with exit code: 1.
  61.  
  62. Terminal will be reused by tasks, press any key to close it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement