Skip to content

Commit

Permalink
adding rp2040 to the ci chain
Browse files Browse the repository at this point in the history
  • Loading branch information
Ing-Dom committed Jan 14, 2024
1 parent d44606d commit 6297397
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
20 changes: 20 additions & 0 deletions examples/knx-demo/platformio-ci.ini
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,23 @@ build_flags =
-DMASK_VERSION=0x07B0
-Wno-unknown-pragmas
-DUSE_DATASECURE

;--- RP2040 -----------------------------------------------
[env:rp2040]
framework = arduino
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#182d833
platform_packages = framework-arduinopico @ https://github.com/earlephilhower/arduino-pico/releases/download/3.6.2/rp2040-3.6.2.zip
board = rpipico
board_build.core = earlephilhower

lib_deps =
knx

lib_ldf_mode = deep+

build_flags =
-DMASK_VERSION=0x07B0
-DKNX_FLASH_SIZE=4096
-D PIO_FRAMEWORK_ARDUINO_ENABLE_RTTI
-Wno-unknown-pragmas

24 changes: 24 additions & 0 deletions examples/knx-demo/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,27 @@ build_flags =
-Wno-unknown-pragmas

extra_scripts = ../scripts/stm32rdu.py



;--- RP2040 -----------------------------------------------
[env:rp2040]
framework = arduino
platform = https://github.com/maxgerhardt/platform-raspberrypi.git#182d833
platform_packages = framework-arduinopico @ https://github.com/earlephilhower/arduino-pico/releases/download/3.6.2/rp2040-3.6.2.zip
board = rpipico
board_build.core = earlephilhower
; We consider that the this projects is opened within its project directory
; while working with VS Code.
lib_extra_dirs = ../../../

;lib_deps =
; knx

lib_ldf_mode = deep+

build_flags =
-DMASK_VERSION=0x07B0
-DKNX_FLASH_SIZE=4096
-D PIO_FRAMEWORK_ARDUINO_ENABLE_RTTI
-Wno-unknown-pragmas

0 comments on commit 6297397

Please sign in to comment.