-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #365 from shorepine/slowerram
slower ram debug build + linux/macos TFB
- Loading branch information
Showing
8 changed files
with
103 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"deploy": [ | ||
"../deploy_s3.md" | ||
], | ||
"docs": "", | ||
"features": [ | ||
"BLE", | ||
"WiFi" | ||
], | ||
"images": [ | ||
"generic_s3.jpg" | ||
], | ||
"mcu": "esp32s3", | ||
"product": "Tulip CC (R10)", | ||
"thumbnail": "", | ||
"url": "https://www.espressif.com/en/products/modules", | ||
"vendor": "Espressif" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
set(IDF_TARGET esp32s3) | ||
|
||
|
||
|
||
set(BOARD_DEFINITION1 TULIP4_R11) | ||
set(BOARD_DEFINITION2 MAKERFABS) | ||
|
||
set(SDKCONFIG_DEFAULTS | ||
../../micropython/ports/esp32/boards/sdkconfig.base | ||
../../micropython/ports/esp32/boards/sdkconfig.usb | ||
../../micropython/ports/esp32/boards/sdkconfig.240mhz | ||
boards/sdkconfig.tulip | ||
boards/TULIP4_R11_DEBUG/sdkconfig.board | ||
) | ||
|
||
list(APPEND MICROPY_SOURCE_PORT | ||
gt911_touchscreen.c | ||
esp32s3_display.c | ||
usb_keyboard.c | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "pins.h" | ||
#define MICROPY_HW_BOARD_NAME "TulipCC" | ||
#define MICROPY_HW_MCU_NAME "ESP32S3" | ||
|
||
#define MICROPY_PY_MACHINE_DAC (0) | ||
|
||
// Enable UART REPL for modules that have an external USB-UART and don't use native USB. | ||
#define MICROPY_HW_ENABLE_UART_REPL (1) | ||
|
||
|
||
#define MICROPY_HW_I2C0_SCL (I2C_SCL) | ||
#define MICROPY_HW_I2C0_SDA (I2C_SDA) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
CONFIG_IDF_EXPERIMENTAL_FEATURES=y | ||
CONFIG_ESPTOOLPY_FLASHSIZE_32MB=y | ||
CONFIG_ESPTOOLPY_FLASHSIZE="32MB" | ||
CONFIG_SPIRAM_MODE_OCT=y | ||
|
||
#CONFIG_SPIRAM_SPEED_80M=y | ||
#CONFIG_ESPTOOLPY_FLASHFREQ_120M=y | ||
#CONFIG_ESPTOOLPY_FLASHFREQ="120m" | ||
#CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_DTR=y | ||
|
||
CONFIG_SPIRAM_SPEED_80M=y | ||
CONFIG_ESPTOOLPY_FLASHFREQ_80M=y | ||
CONFIG_ESPTOOLPY_FLASHFREQ="80m" | ||
|
||
CONFIG_ESPTOOLPY_OCT_FLASH=y | ||
CONFIG_ESPTOOLPY_FLASHMODE_QIO=y | ||
|
||
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="boards/N32R8/tulip-partitions-32MB.csv" | ||
|
||
CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=n | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters