delysio

Untitled

Aug 29th, 2020
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. ;FujiNet PlatformIO Project Configuration File
  2. ;
  3. ; Build options: build flags, source filter
  4. ; Upload options: custom upload port, speed and extra flags
  5. ; Library options: dependencies, extra library storages
  6. ; Advanced options: extra scripting
  7. ;
  8. ; Please visit documentation for the other options and examples
  9. ; https://docs.platformio.org/page/projectconf.html
  10.  
  11. [platformio]
  12. description = FujiNet Atari to ESP32 WiFi Multifunction Firmware
  13. ; Change this to target the device you use from the list of [env:xxx] sections below
  14. default_envs = fujinet-v1-4mb
  15.  
  16. [env]
  17. ; Common settings for all enivornments
  18. platform = espressif32
  19. framework = espidf
  20. extra_scripts = pre:build_version.py
  21. lib_ldf_mode = deep+
  22. upload_port = COM7 ; Windows
  23. ;upload_port = /dev/ttyUSB0 ; Linux
  24. upload_speed = 921600
  25. monitor_port = COM7 ; Windows
  26. ;monitor_port = /dev/ttyUSB0 ; Linux
  27. monitor_speed = 921600
  28. monitor_filters = time
  29.  
  30. ; ESP32 WROVER (16MB Flash, 8MB PSRAM) based FujiNet
  31. [env:fujinet-v1]
  32. board = fujinet-v1
  33. build_type = debug
  34. build_flags =
  35. ;-D JTAG
  36. -D DEBUG_SPEED=921600
  37. -D BLUETOOTH_SUPPORT
  38. ;-D FN_HISPEED_INDEX=0
  39. ;-D VERBOSE_SIO
  40. ;-D VERBOSE_TNFS
  41.  
  42. ; ESP32 WROOM (4MB Flash, NO PSRAM) based FujiNet
  43. [env:fujinet-wroom]
  44. board = fujinet-wroom
  45. build_type = debug
  46. build_flags =
  47. -D DEBUG_SPEED=921600
  48. ;-D FN_HISPEED_INDEX=0
  49. ;-D VERBOSE_SIO
  50. ;-D VERBOSE_TNFS
  51.  
  52. ; ESP32 WROVER (4MB Flash, 8MB PSRAM) based FujiNet
  53. [env:fujinet-v1-4mb]
  54. board = fujinet-v1-4mb
  55. build_type = debug
  56. build_flags =
  57. -D DEBUG_SPEED=921600
  58. ;-D FN_HISPEED_INDEX=0
  59. ;-D VERBOSE_SIO
  60. ;-D VERBOSE_TNFS
  61.  
Add Comment
Please, Sign In to add comment