Advertisement
Guest User

Untitled

a guest
Oct 21st, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. In file included from ../inc/spark_wiring.h:29:0,
  2. from ../inc/application.h:29,
  3. from Adafruit_GPS.h:84,
  4. from Adafruit_GPS.cpp:13:
  5. ../../core-common-lib/SPARK_Firmware_Driver/inc/config.h:12:2: warning: #warning "Defaulting to Release Build" [-Wcpp]
  6. #warning "Defaulting to Release Build"
  7. ^
  8. Adafruit_GPS.cpp: In member function 'bool Adafruit_GPS::LOCUS_StartLogger()':
  9. Adafruit_GPS.cpp:320:34: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  10. sendCommand(PMTK_LOCUS_STARTLOG);
  11. ^
  12. Adafruit_GPS.cpp:322:47: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  13. return waitForSentence(PMTK_LOCUS_LOGSTARTED);
  14. ^
  15. Adafruit_GPS.cpp: In member function 'bool Adafruit_GPS::LOCUS_ReadStatus()':
  16. Adafruit_GPS.cpp:326:38: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  17. sendCommand(PMTK_LOCUS_QUERY_STATUS);
  18. ^
  19. Adafruit_GPS.cpp:328:35: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  20. if (! waitForSentence("$PMTKLOG"))
  21. ^
  22. Adafruit_GPS.cpp: In member function 'bool Adafruit_GPS::standby()':
  23. Adafruit_GPS.cpp:381:29: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  24. sendCommand(PMTK_STANDBY);
  25. ^
  26. Adafruit_GPS.cpp: In member function 'bool Adafruit_GPS::wakeup()':
  27. Adafruit_GPS.cpp:390:19: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  28. sendCommand(""); // send byte to wake it up
  29. ^
  30. Adafruit_GPS.cpp:391:38: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  31. return waitForSentence(PMTK_AWAKE);
  32. ^
  33. In file included from ../inc/spark_wiring.h:29:0,
  34. from ../inc/application.h:29,
  35. from gps.cpp:2:
  36. ../../core-common-lib/SPARK_Firmware_Driver/inc/config.h:12:2: warning: #warning "Defaulting to Release Build" [-Wcpp]
  37. #warning "Defaulting to Release Build"
  38. ^
  39. gps.cpp: In function 'void setup()':
  40. gps.cpp:39:46: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  41.  
  42. ^
  43. gps.cpp:42:43: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  44.  
  45. ^
  46. gps.cpp:47:34: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  47. // Set the update rate
  48. ^
  49. gps.cpp:62:36: warning: 'IPAddress NetworkClass::localIP()' is deprecated (declared at ../inc/spark_wiring_network.h:36): Please use WiFi.localIP() instead [-Wdeprecated-declarations]
  50. delay(1000);
  51. ^
  52. gps.o: In function `setup':
  53. /spark/compile_server/shared/workspace/2_compile-server2/core-firmware/build/gps.cpp:62: undefined reference to `NetworkClass::localIP()'
  54. /spark/compile_server/shared/workspace/2_compile-server2/core-firmware/build/gps.cpp:66: undefined reference to `Network'
  55. collect2: error: ld returned 1 exit status
  56. make: *** [5162fa136bc77b1b14e50324ad746815d5b2603058351ffa9a37591b656a.elf] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement