A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at records-reader 99 lines 2.9 kB view raw
1[platformio] 2default_envs = default 3extra_configs = platformio.local.ini 4 5[crosspoint] 6version = 1.2.0 7 8[base] 9platform = https://github.com/pioarduino/platform-espressif32/releases/download/55.03.37/platform-espressif32.zip 10board = esp32-c3-devkitm-1 11framework = arduino 12monitor_speed = 115200 13upload_speed = 921600 14check_tool = cppcheck 15check_flags = --enable=all --suppress=missingIncludeSystem --suppress=unusedFunction --suppress=unmatchedSuppression --suppress=*:*/.pio/* --inline-suppr 16check_skip_packages = yes 17 18board_upload.flash_size = 16MB 19board_upload.maximum_size = 16777216 20board_upload.offset_address = 0x10000 21 22build_flags = 23 -DARDUINO_USB_MODE=1 24 -DARDUINO_USB_CDC_ON_BOOT=1 25 -DEINK_DISPLAY_SINGLE_BUFFER_MODE=1 26 -DDISABLE_FS_H_WARNING=1 27 -DDESTRUCTOR_CLOSES_FILE=1 28# https://libexpat.github.io/doc/api/latest/#XML_GE 29 -DXML_GE=0 30 -DXML_CONTEXT_BYTES=1024 31 -std=gnu++2a 32# Enable UTF-8 long file names in SdFat 33 -DUSE_UTF8_LONG_NAMES=1 34# Increase PNG scanline buffer to support up to 2048px wide images 35# Default is (320*4+1)*2=2562, we need more for larger images 36 -DPNG_MAX_BUFFERED_PIXELS=16416 37 -Wno-bidi-chars 38 -Wl,--wrap=panic_print_backtrace,--wrap=panic_abort 39 -fno-exceptions 40 41build_unflags = 42 -std=gnu++11 43 -fexceptions 44 45; Board configuration 46board_build.flash_mode = dio 47board_build.flash_size = 16MB 48board_build.partitions = partitions.csv 49 50extra_scripts = 51 pre:scripts/build_html.py 52 pre:scripts/gen_i18n.py 53 pre:scripts/git_branch.py 54 pre:scripts/patch_jpegdec.py 55 56; Libraries 57lib_deps = 58 BatteryMonitor=symlink://open-x4-sdk/libs/hardware/BatteryMonitor 59 InputManager=symlink://open-x4-sdk/libs/hardware/InputManager 60 EInkDisplay=symlink://open-x4-sdk/libs/display/EInkDisplay 61 SDCardManager=symlink://open-x4-sdk/libs/hardware/SDCardManager 62 bblanchon/ArduinoJson @ 7.4.2 63 ricmoo/QRCode @ 0.0.1 64 bitbank2/PNGdec @ ^1.0.0 65 https://github.com/bitbank2/JPEGDEC.git#86282979224c8a32fd51e091ed5a35b0c699a52b 66 links2004/WebSockets @ 2.7.3 67 68[env:default] 69extends = base 70build_flags = 71 ${base.build_flags} 72 ; CROSSPOINT_VERSION is set by scripts/git_branch.py (includes current branch) 73 -DENABLE_SERIAL_LOG 74 -DLOG_LEVEL=2 ; Set log level to debug for development builds 75 76 77[env:gh_release] 78extends = base 79build_flags = 80 ${base.build_flags} 81 -DCROSSPOINT_VERSION=\"${crosspoint.version}\" 82 -DENABLE_SERIAL_LOG 83 -DLOG_LEVEL=1 ; Set log level to info for release builds 84 85[env:gh_release_rc] 86extends = base 87build_flags = 88 ${base.build_flags} 89 -DCROSSPOINT_VERSION=\"${crosspoint.version}-rc+${sysenv.CROSSPOINT_RC_HASH}\" 90 -DENABLE_SERIAL_LOG 91 -DLOG_LEVEL=1 ; Set log level to info for release candidate builds 92 93[env:slim] 94extends = base 95build_flags = 96 ${base.build_flags} 97 -DCROSSPOINT_VERSION=\"${crosspoint.version}-slim\" 98 ; serial output is disabled in slim builds to save space 99 -UENABLE_SERIAL_LOG