question about compiling micropython for rp2 board(s) #17134
-
Hi, Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
There is a make BOARD=ADAFRUIT_QTPY_RP2040 To build for the ADAFRUIT_QTPY_RP2040 board. Youi may use any other board name for which there is a data set in the boards directory. Edit: That's as well shown in the README file. |
Beta Was this translation helpful? Give feedback.
-
Thanks Robert , How could I have overlooked the readme ??? |
Beta Was this translation helpful? Give feedback.
There is a
BOARD
symbol used in Makefile specifying the board for the build. It is set to a default value in line 14 of Makefile to RP2 Pico:BOARD ?= RPI_PICO
. If you want to buidl for another board, call e.g.:make BOARD=ADAFRUIT_QTPY_RP2040
To build for the ADAFRUIT_QTPY_RP2040 board. Youi may use any other board name for which there is a data set in the boards directory.
Edit: That's as well shown in the README file.