8000 Update the idf to a newer 4.3 commit · pypewpew/circuitpython@ca989c4 · GitHub
[go: up one dir, main page]

Skip to content

Commit ca989c4

Browse files
committed
Update the idf to a newer 4.3 commit
Also, make all port-level CIRCUITPY_ settings overridable.
1 parent 31b9dd4 commit ca989c4

File tree

4 files changed

+24
-22
lines changed

4 files changed

+24
-22
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@
152152
url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git
153153
[submodule "ports/esp32s2/esp-idf"]
154154
path = ports/esp32s2/esp-idf
155-
url = https://github.com/adafruit/esp-idf.git
156-
branch = circuitpython-v4.3
155+
url = https://github.com/espressif/esp-idf.git
156+
branch = release/v4.3
157157
[submodule "ports/esp32s2/certificates/nina-fw"]
158158
path = ports/esp32s2/certificates/nina-fw
159159
url = https://github.com/adafruit/nina-fw.git

lib/libc/string0.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
#include <stdint.h>
2828
#include <string.h>
2929

30+
#ifndef likely
3031
#define likely(x) __builtin_expect((x), 1)
32+
#endif
3133

3234
#pragma GCC diagnostic push
3335
#pragma GCC diagnostic ignored "-Wcast-align"

ports/esp32s2/esp-idf

Submodule esp-idf updated 503 files

ports/esp32s2/mpconfigport.mk

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,31 @@ INTERNAL_LIBM = 1
1010
LONGINT_IMPL = MPZ
1111

1212
# These modules are implemented in ports/<port>/common-hal:
13-
CIRCUITPY_FULL_BUILD = 1
14-
CIRCUITPY_ALARM = 1
15-
CIRCUITPY_AUDIOCORE = 1
16-
CIRCUITPY_AUDIOMP3 = 0
17-
CIRCUITPY_AUDIOBUSIO = 1
18-
CIRCUITPY_AUDIOBUSIO_PDMIN = 0
19-
CIRCUITPY_AUDIOBUSIO_I2SOUT = 1
20-
CIRCUITPY_AUDIOIO = 0
21-
CIRCUITPY_AUDIOMIXER = 1
22-
CIRCUITPY_CANIO = 1
23-
CIRCUITPY_COUNTIO = 1
24-
CIRCUITPY_DUALBANK = 1
25-
CIRCUITPY_FRAMEBUFFERIO = 1
26-
CIRCUITPY_FREQUENCYIO = 1
13+
CIRCUITPY_FULL_BUILD ?= 1
14+
CIRCUITPY_ALARM ?= 1
15+
CIRCUITPY_AUDIOCORE ?= 1
16+
CIRCUITPY_AUDIOMP3 ?= 0
17+
CIRCUITPY_AUDIOBUSIO ?= 1
18+
CIRCUITPY_AUDIOBUSIO_PDMIN ?= 0
19+
CIRCUITPY_AUDIOBUSIO_I2SOUT ?= 1
20+
CIRCUITPY_AUDIOIO ?= 0
21+
CIRCUITPY_AUDIOMIXER ?= 1
22+
CIRCUITPY_CANIO ?= 1
23+
CIRCUITPY_COUNTIO ?= 1
24+
CIRCUITPY_DUALBANK ?= 1
25+
CIRCUITPY_FRAMEBUFFERIO ?= 1
26+
CIRCUITPY_FREQUENCYIO ?= 1
2727
CIRCUITPY_IMAGECAPTURE ?= 1
28-
CIRCUITPY_I2CPERIPHERAL = 0
29-
CIRCUITPY_RGBMATRIX = 1
30-
CIRCUITPY_ROTARYIO = 1
31-
CIRCUITPY_NVM = 1
28+
CIRCUITPY_I2CPERIPHERAL ?= 0
29+
CIRCUITPY_RGBMATRIX ?= 1
30+
CIRCUITPY_ROTARYIO ?= 1
31+
CIRCUITPY_NVM ?= 1
3232
CIRCUITPY_PS2IO ?= 1
3333
CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
3434
CIRCUITPY_WIFI ?= 1
3535
CIRCUITPY_WATCHDOG ?= 1
3636

37-
CIRCUITPY_ESPIDF = 1
37+
CIRCUITPY_ESPIDF ?= 1
3838

3939
CIRCUITPY_MODULE ?= none
4040

0 commit comments

Comments
 (0)
0