Skip to content

Commit 6f77a1e

Browse files
authored
updates (#90)
1 parent 44136a7 commit 6f77a1e

File tree

11 files changed

+48
-12
lines changed

11 files changed

+48
-12
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 0 deletions
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

Lines changed: 3 additions & 2 deletions
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

Lines changed: 10 additions & 2 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ CONFIG_BT_NIMBLE_MAX_CONNECTIONS=1
1313
# CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_2M_PHY is not set
1414
# CONFIG_BT_NIMBLE_LL_CFG_FEAT_LE_CODED_PHY is not set
1515
# CONFIG_BT_NIMBLE_50_FEATURE_SUPPORT is not set
16+
# CONFIG_BTDM_CTRL_MODE_BTDM is not set
17+
# CONFIG_BT_BTC_TASK_STACK_SIZE is not set
18+
# CONFIG_BT_BTU_TASK_STACK_SIZE is not set
19+
CONFIG_BT_STACK_NO_LOG=y
20+
CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y
1621

1722
CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR=y
1823

@@ -21,14 +26,8 @@ CONFIG_ETH_USE_ESP32_EMAC=y
2126
CONFIG_ETH_PHY_INTERFACE_RMII=y
2227
CONFIG_ETH_USE_SPI_ETHERNET=y
2328

24-
# CONFIG_BTDM_CTRL_MODE_BTDM is not set
25-
# CONFIG_BT_BTC_TASK_STACK_SIZE is not set
26-
# CONFIG_BT_BTU_TASK_STACK_SIZE is not set
27-
CONFIG_BT_STACK_NO_LOG=y
28-
CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y
2929
CONFIG_SPIRAM=y
3030
CONFIG_SPIRAM_OCCUPY_HSPI_HOST=y
31-
CONFIG_D0WD_PSRAM_CS_IO=18
3231
CONFIG_ULP_COPROC_ENABLED=y
3332
# CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 is not set
3433
# CONFIG_UNITY_ENABLE_FLOAT is not set

configs/defconfig.esp32c2

Lines changed: 3 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 3 additions & 0 deletions
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

Lines changed: 4 additions & 1 deletion
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

0 commit comments

Comments
 (0)