Skip to content

Commit 95eebc3

Browse files
authored
updates
1 parent bced69b commit 95eebc3

11 files changed

+48
-11
lines changed

.github/workflows/push.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
run: |
2020
echo "GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_ENV
2121
- name: Build Arduino Libs
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
24+
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
2225
run: bash ./build.sh
2326
- name: Release
2427
uses: jason2866/[email protected]

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ This repository contains the scripts that produce the libraries included with Ta
44

55
### Build on Ubuntu
66
```bash
7-
sudo apt-get install git wget curl libssl-dev libncurses-dev flex bison gperf python3 python3-pip python3-setuptools python3-serial python3-click python3-cryptography python3-future python3-pyparsing python3-pyelftools cmake ninja-build ccache jq p7zip-full
8-
sudo pip3 install --upgrade pip3
7+
sudo apt update && sudo apt install -y git wget curl libssl-dev libncurses-dev flex bison gperf python3 cmake ninja-build ccache jq
8+
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py && \
9+
pip3 install setuptools pyserial click future wheel cryptography pyparsing pyelftools
910
git clone https://github.com/Jason2866/esp32-arduino-lib-builder
1011
cd esp32-arduino-lib-builder
1112
./build.sh

configs/builds.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,23 @@
134134
"idf_libs":["qio","80m","opi_ram"],
135135
"bootloaders":[
136136
["qio","120m","qio_ram"],
137+
["qio","120m","opi_ram"],
137138
["qio","80m","qio_ram"],
138139
["qio","80m","opi_ram"],
140+
["opi","120m","qio_ram"],
141+
["opi","120m","opi_ram"],
142+
["opi","80m","qio_ram"],
139143
["opi","80m","opi_ram"]
140144
],
141145
"mem_variants":[
142146
["qio","120m","qio_ram"],
147+
["qio","120m","opi_ram"],
143148
["qio","80m","qio_ram"],
144-
["opi","80m","opi_ram"],
145-
["opi","80m","qio_ram"]
149+
["qio","80m","opi_ram"],
150+
["opi","120m","qio_ram"],
151+
["opi","120m","opi_ram"],
152+
["opi","80m","qio_ram"],
153+
["opi","80m","opi_ram"]
146154
]
147155
}
148156
]

configs/defconfig.120m

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
CONFIG_ESPTOOLPY_FLASHFREQ_120M=y
22
CONFIG_SPIRAM_SPEED_120M=y
3+
CONFIG_SPI_FLASH_HPM_ENA=y

configs/defconfig.esp32

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1
1515
# CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY is not set
1616
# CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY is not set
1717
# CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT is not set
18+
# CONFIG_BTDM_CTRL_MODE_BTDM is not set
19+
# CONFIG_BT_BTC_TASK_STACK_SIZE is not set
20+
# CONFIG_BT_BTU_TASK_STACK_SIZE is not set
21+
CONFIG_BT_STACK_NO_LOG=y
22+
CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y
1823

1924
CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR=y
2025

@@ -23,11 +28,6 @@ CONFIG_ETH_USE_ESP32_EMAC=y
2328
CONFIG_ETH_PHY_INTERFACE_RMII=y
2429
CONFIG_ETH_USE_SPI_ETHERNET=y
2530

26-
# CONFIG_BTDM_CTRL_MODE_BTDM is not set
27-
# CONFIG_BT_BTC_TASK_STACK_SIZE is not set
28-
# CONFIG_BT_BTU_TASK_STACK_SIZE is not set
29-
CONFIG_BT_STACK_NO_LOG=y
30-
CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y
3131
CONFIG_SPIRAM=y
3232
CONFIG_SPIRAM_OCCUPY_HSPI_HOST=y
3333
CONFIG_ULP_COPROC_ENABLED=y

configs/defconfig.esp32c2

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ CONFIG_XTAL_FREQ=26
55
# Bluetooth
66
#
77
CONFIG_BT_ENABLED=y
8+
CONFIG_BT_STACK_NO_LOG=y
9+
# CONFIG_BT_BLE_42_FEATURES_SUPPORTED is not set
10+
# CONFIG_BLE_MESH is not set
811
CONFIG_BT_NIMBLE_ENABLED=y
912
CONFIG_BT_NIMBLE_LOG_LEVEL_NONE=y
1013
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1

configs/defconfig.esp32c3

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Bluetooth
33
#
44
CONFIG_BT_ENABLED=y
5+
CONFIG_BT_STACK_NO_LOG=y
6+
# CONFIG_BT_BLE_42_FEATURES_SUPPORTED is not set
7+
# CONFIG_BLE_MESH is not set
58
CONFIG_BT_NIMBLE_ENABLED=y
69
CONFIG_BT_NIMBLE_LOG_LEVEL_NONE=y
710
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1

configs/defconfig.esp32c6

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ CONFIG_ULP_COPROC_RESERVE_MEM=8192
1010
# Bluetooth
1111
#
1212
CONFIG_BT_ENABLED=y
13+
CONFIG_BT_STACK_NO_LOG=y
14+
# CONFIG_BT_BLE_42_FEATURES_SUPPORTED is not set
15+
# CONFIG_BLE_MESH is not set
1316
CONFIG_BT_NIMBLE_ENABLED=y
1417
CONFIG_BT_NIMBLE_LOG_LEVEL_NONE=y
1518
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1

configs/defconfig.esp32h2

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Bluetooth
33
#
44
CONFIG_BT_ENABLED=y
5+
CONFIG_BT_STACK_NO_LOG=y
6+
# CONFIG_BT_BLE_42_FEATURES_SUPPORTED is not set
7+
# CONFIG_BLE_MESH is not set
58
CONFIG_BT_NIMBLE_ENABLED=y
69
CONFIG_BT_NIMBLE_LOG_LEVEL_NONE=y
710
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1

configs/defconfig.esp32s2

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=y
21
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
32
CONFIG_SPIRAM=y
3+
CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y
4+
CONFIG_SPIRAM_RODATA=y
5+
CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=y
6+
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
47
CONFIG_ESP32S2_KEEP_USB_ALIVE=y
58
CONFIG_ULP_COPROC_ENABLED=y
69
CONFIG_ESP32_ULP_COPROC_RISCV=y

configs/defconfig.esp32s3

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,36 @@
1+
CONFIG_IDF_EXPERIMENTAL_FEATURES=y
2+
13
CONFIG_ULP_COPROC_ENABLED=y
24
CONFIG_ULP_COPROC_TYPE_RISCV=y
35
CONFIG_ULP_COPROC_RESERVE_MEM=4096
46

57
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
68
CONFIG_SPIRAM=y
9+
CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y
10+
CONFIG_SPIRAM_RODATA=y
711
CONFIG_SPIRAM_TRY_ALLOCATE_WIFI_LWIP=y
12+
CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY=y
813
CONFIG_RTC_CLK_CAL_CYCLES=576
914
CONFIG_ESP32S3_UNIVERSAL_MAC_ADDRESSES_TWO=y
1015
# CONFIG_ESP_SLEEP_GPIO_RESET_WORKAROUND is not set
1116
# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 is not set
1217
CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y
1318
CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=3120
1419
CONFIG_ESP_SYSTEM_MEMPROT_FEATURE=n
20+
CONFIG_BOOTLOADER_FLASH_DC_AWARE=y
1521

1622
#
1723
# S3 Display shift fix -> https://espressif-docs.readthedocs-hosted.com/projects/esp-faq/en/latest/software-framework/peripherals/lcd.html
1824
#
19-
CONFIG_LCD_RGB_RESTART_IN_VSYNC=y
25+
# CONFIG_LCD_RGB_RESTART_IN_VSYNC is not set
2026

2127
#
2228
# Bluetooth
2329
#
2430
CONFIG_BT_ENABLED=y
31+
CONFIG_BT_STACK_NO_LOG=y
32+
# CONFIG_BT_BLE_42_FEATURES_SUPPORTED is not set
33+
# CONFIG_BLE_MESH is not set
2534
CONFIG_BT_NIMBLE_ENABLED=y
2635
CONFIG_BT_NIMBLE_LOG_LEVEL_NONE=y
2736
CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1

0 commit comments

Comments
 (0)