Currently uploading via the Arduino IDE and PlatformIO works. But it's not perfect yet: 1. We're using a custom-compiled bootloader for the e73 board, which is nice; 2. We're still using `board = adafruit_feather_nrf52832` in the `platformio.ini` file. Using our custom board `boards/e73-tbb.json` doesn't work yet. Uploading results in a `*** [upload] IndexError : list index out of range` error. Most likely has to be fixed in https://github.com/platformio/platform-nordicnrf52/blob/develop/builder/main.py.
22 lines
No EOL
706 B
INI
22 lines
No EOL
706 B
INI
; 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:adafruit_feather_nrf52832]
|
|
[env:e73-tbb]
|
|
platform = nordicnrf52
|
|
board = adafruit_feather_nrf52832
|
|
; board = e73-tbb
|
|
framework = arduino
|
|
build_flags = -DNRF52 -DS132 -DNRF51_S132
|
|
; upload_port = /dev/cu.usbserial-14330
|
|
; debug_tool = jlink
|
|
; protocol = nrfutil
|
|
; lib_deps =
|
|
; mbed-glimwormbeacons/SEGGER_RTT2 @ 0.0.0+sha.a7800e894aaf |