Home › Forums › Mayfly Data Logger › Mayfly clock and battery › Reply To: Mayfly clock and battery
2020-01-15 at 6:22 PM
#13653
Here’s our platformio.ini, which I didn’t post earlier. It’s identical to what works from my desk, so don’t suspect there’s a problem here.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
;PlatformIO Project Configuration File ; ; Build options: build flags, source filter ; Upload options: custom upload port, speed and extra flags ; Library options: dependencies, extra library storages ; Advanced options: extra scripting ; ; Please visit documentation for the other options and examples ; https://docs.platformio.org/page/projectconf.html [env:mayfly] monitor_speed = 115200 board = mayfly platform = atmelavr framework = arduino lib_ldf_mode = deep+ lib_ignore = RTCZero build_flags = -DSDI12_EXTERNAL_PCINT -DNEOSWSERIAL_EXTERNAL_PCINT -DMQTT_MAX_PACKET_SIZE=240 -DTINY_GSM_RX_BUFFER=64 -DTINY_GSM_YIELD_MS=2 ; additional build_flags for modem debugging: ; -DTINY_GSM_DEBUG=Serial ; -DMS_LOGGERMODEM_DEBUG ; -DMS_LOGGERMODEM_DEBUG_DEEP ; -DMS_DIGIXBEE_DEBUG ; -DMS_DIGIXBEECELLULARTRANSPARENT_DEBUG ; -DMS_DIGIXBEECELLULARTRANSPARENT_DEBUG_DEEP ; -DMS_DIGIXBEELTEBYPASS_DEBUG ; -DMS_DIGIXBEELTEBYPASS_DEBUG_DEEP lib_deps = EnviroDIY_ModularSensors@0.23.16 ; ^^ Use this when working from an official release of the library ; https://github.com/EnviroDIY/ModularSensors.git#develop ; ^^ Use this when if you want to pull from the develop branch StreamDebugger ; ; The following monitor_flags setting is needed becasue in transparent mode the XBee3 ; uses CR line endings instead of the more typical CR+LF. This setting enables you ; to see all back and forth communication. ; (https://www.envirodiy.org/topic/connecting-xbee3-lte-to-the-internet/#post-13312) ;monitor_flags = ; --eol ; CR |
I guess the next step is to test it while connected to a laptop so that we can capture debug info.
Thanks for your help.