-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add DatanoiseTV TREX One Board. #22
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"build": { | ||
"core": "arduino", | ||
"cpu": "cortex-m0plus", | ||
"extra_flags": "-D ARDUINO_RASPBERRY_PI_PICO -DARDUINO_ARCH_RP2040 -DARDUINO_TREX_ONE", | ||
"f_cpu": "133000000L", | ||
"hwids": [ | ||
[ | ||
"0x1209", | ||
"0xD00F" | ||
] | ||
], | ||
"mcu": "rp2040", | ||
"variant": "TREX_ONE" | ||
}, | ||
"debug": { | ||
"jlink_device": "RP2040_M0_0", | ||
"openocd_target": "rp2040.cfg", | ||
"svd_path": "rp2040.svd" | ||
}, | ||
"frameworks": [ | ||
"arduino" | ||
], | ||
"name": "TREX One (RP2040)", | ||
"upload": { | ||
"maximum_ram_size": 270336, | ||
"maximum_size": 16384000, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe 16MB is external flash? How will people be able to utilize it? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The RP2040 has no internal flash. The RP2040 Pico Board had 4MB of external flash and the TREX One has 16MB. With FreeRTOS, TinyUSB, LVGL etc. 16MB can be very practical (think of LittleFS / SPIFFS). |
||
"require_upload_port": true, | ||
"native_usb": true, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": false, | ||
"protocol": "picotool", | ||
"protocols": [ | ||
"cmsis-dap", | ||
"jlink", | ||
"raspberrypi-swd", | ||
"picotool" | ||
] | ||
}, | ||
"url": "https://forums.raspberrypi.com/viewtopic.php?f=147&t=322135&p=1928264", | ||
"vendor": "DatanoiseTV" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems this board hasn't been added to the official Arduino framework, so you will need to use the original
RASPBERRY_PI_PICO
variant.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That works for me, as long as the extra flag is set during build.