File tree Expand file tree Collapse file tree 4 files changed +24
-22
lines changed Expand file tree Collapse file tree 4 files changed +24
-22
lines changed Original file line number Diff line number Diff line change 152
152
url = https://github.com/adafruit/Adafruit_CircuitPython_RFM69.git
153
153
[submodule "ports/esp32s2/esp-idf "]
154
154
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
157
157
[submodule "ports/esp32s2/certificates/nina-fw "]
158
158
path = ports/esp32s2/certificates/nina-fw
159
159
url = https://github.com/adafruit/nina-fw.git
Original file line number Diff line number Diff line change 27
27
#include <stdint.h>
28
28
#include <string.h>
29
29
30
+ #ifndef likely
30
31
#define likely (x ) __builtin_expect((x), 1)
32
+ #endif
31
33
32
34
#pragma GCC diagnostic push
33
35
#pragma GCC diagnostic ignored "-Wcast-align"
Original file line number Diff line number Diff line change @@ -10,31 +10,31 @@ INTERNAL_LIBM = 1
10
10
LONGINT_IMPL = MPZ
11
11
12
12
# 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
27
27
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
32
32
CIRCUITPY_PS2IO ?= 1
33
33
CIRCUITPY_TOUCHIO_USE_NATIVE ?= 1
34
34
CIRCUITPY_WIFI ?= 1
35
35
CIRCUITPY_WATCHDOG ?= 1
36
36
37
- CIRCUITPY_ESPIDF = 1
37
+ CIRCUITPY_ESPIDF ? = 1
38
38
39
39
CIRCUITPY_MODULE ?= none
40
40
You can’t perform that action at this time.
0 commit comments