Melissa LeBlanc-Williams
1b3993a29e
Added initial Adafruit Metro ESP32-S3
2023-08-14 00:17:24 +02:00
Dan Halbert
10b94796c0
wip; fix more m_malloc and gc_alloc
2023-08-11 00:30:34 -04:00
Melissa LeBlanc-Williams
7a4edfaa9f
Override D13 pin
2023-08-09 08:19:34 -07:00
Melissa LeBlanc-Williams
ab638d4bf2
Merge branch 'main' of https://github.com/adafruit/circuitpython into arduino-nano-esp32s3
2023-08-09 08:08:03 -07:00
Dan Halbert
0d2c3c3f08
wip: continuing compilation fixes; mp_obj_alloc everywhere
2023-08-07 20:45:57 -04:00
Melissa LeBlanc-Williams
1d3b2b019a
Update settings to match micropython
2023-08-04 08:54:22 -07:00
Melissa LeBlanc-Williams
3158315ac3
Merge branch 'main' of https://github.com/adafruit/circuitpython into arduino-nano-esp32s3
2023-08-04 08:48:37 -07:00
Jeff Epler
84d8224a54
set reserved psram for pycamera
2023-08-04 08:38:07 -05:00
Dan Halbert
465d1c673e
wip
2023-08-03 23:29:00 -04:00
Scott Shawcroft
9cc4b4cd37
Merge pull request #8245 from jepler/esp32-camera-backlight-solarize
...
pycamera: backlight, solarize
2023-08-02 10:00:21 -07:00
Jeremy Littler
f7cc20e936
Update pins.c
2023-08-02 11:01:44 -04:00
Jeremy Littler
f9b98ce54d
Update pins.c
2023-08-02 10:57:46 -04:00
Jeremy Littler
b88e359b00
Update pins.c
2023-08-02 10:41:46 -04:00
Jeremy Littler
37dbe3e24a
Update pins.c
2023-08-02 10:32:40 -04:00
Jeremy Littler
94ed725fd3
Update mpconfigboard.h
2023-08-02 10:24:58 -04:00
Jeff Epler
4e01e6bbe5
adafruit-esp32s3-camera: set up backlight at boot & add solarize
...
the backlight situation will be revisited with the next board prototype,
but it's good to prove this can be done.
Depends on https://github.com/adafruit/esp32-camera/pull/6 which should
be merged before this.
2023-08-02 08:09:13 -05:00
Jeff Epler
2b0f1cd087
espressif: fix dependencies in esp-idf modules
...
while developing esp-camera I had the problem that firmware.elf was
not regenerated if the only file I edited was in the esp32-camera
submodule.
By telling make that $(IDF_CMAKE_TARGETS), the list of .a fliles
produced by ninja-building esp-idf, depend on esp-idf-stamp and that
firmware.elf in turn depends on these files, the ninja build is re-run
on each make, which is reasonably quick if nothing needs to be rebuilt.
2023-08-02 07:52:45 -05:00
Scott Shawcroft
8baff0bf88
Merge pull request #8133 from dronecz/main
...
Add ES3ink board definition
2023-08-01 13:31:46 -07:00
Scott Shawcroft
0bf50d2d6e
Merge pull request #8215 from makermelissa/adafruit-metro-esp32s3
...
Added initial Adafruit Metro ESP32-S3
2023-08-01 13:30:06 -07:00
Dan Halbert
0d4bc8c163
initial v1.19.1 merge; not compiled yet
2023-08-01 13:50:05 -04:00
Jeff Epler
272a2dcdb0
Merge pull request #8218 from jepler/esp32-camera
...
Update the camera board to use ESP32-S3 microcontroller
2023-07-31 14:48:50 -05:00
KB Sriram
d5daa7ad27
boards/beetle-esp32-c3: fix sdkconfig minor typo.
...
Fixes https://github.com/adafruit/circuitpython/issues/8239
2023-07-30 22:13:10 -07:00
Melissa LeBlanc-Williams
e931a526f1
Merge branch 'main' of https://github.com/adafruit/circuitpython into arduino-nano-esp32s3
2023-07-27 19:27:16 -07:00
Melissa LeBlanc-Williams
45b1c42be5
Add D0 and D1
2023-07-27 19:26:37 -07:00
Melissa LeBlanc-Williams
ffb1cf116d
Add D pins
2023-07-27 16:46:15 -07:00
Melissa LeBlanc-Williams
3d210bfa45
Merge branch 'main' of https://github.com/adafruit/circuitpython into adafruit-metro-esp32s3
2023-07-27 16:33:19 -07:00
Jeff Epler
020e4d2e0c
update camera submodule
2023-07-26 12:55:44 -05:00
Jeff Epler
46d7771152
tinyuf2 adopted the partition scheme called "1ota"
...
.. which irritated our partition table parser in build_memory_info, so
make it work again.
2023-07-26 09:41:10 -05:00
Jeff Epler
c516870f89
switch camera to use the no-ota partition scheme
...
this gives us a comfortable few hundred kB flash space left for the app
1398912 bytes used, 763776 bytes free in flash firmware space out of 2162688 bytes (2112.0kB).
2023-07-26 08:38:59 -05:00
Jeff Epler
9edd8957a1
Add a "4MB without OTA" partition scheme
...
This is needed on the camera board, because we have a lot of code.
2023-07-26 08:38:30 -05:00
Jeff Epler
f503b37b2b
espressif: allow setting FLASH_SDKCONFIG at board level
2023-07-26 08:32:25 -05:00
Jeff Epler
9a18524c30
simplify circuitpy_mpconfig with enable-if-any, -all
...
and make corresponding simplifications in shared-bindings-matrix,
but directly using the final defines from CFLAGS instead of the
status quo.
The net changes are to disable audiocore & audiomixer on some espressif
devices that have no audio output at all. Other than that, the
shared-bindings-matrix seems to be identical.
2023-07-25 19:56:08 -05:00
Melissa LeBlanc-Williams
6030d87025
Change to octal ram
2023-07-25 16:30:21 -07:00
Jeff Epler
fd60cccb06
Re-enable ulab at the expense of some other modules
...
.. and gate audiomixer based on audiocore (should be no net change)
.. and get rid of now-redundant enables in the espressif mpconfigport
2023-07-25 16:01:11 -05:00
ladyada
45b6c84cdd
Merge branch 'main' of github.com:ladyada/circuitpython
2023-07-25 16:13:47 -04:00
ladyada
767b7a0506
compiling
2023-07-25 16:12:53 -04:00
Limor "Ladyada" Fried
1303fe5378
Merge branch 'adafruit:main' into main
2023-07-25 16:10:42 -04:00
Tod Kurt
ae0ebfef2f
ESP32 synthio channels to 12
2023-07-24 23:03:34 -04:00
Melissa LeBlanc-Williams
8f1ebdbd10
Added initial Adafruit Metro ESP32-S3
2023-07-24 18:41:52 -07:00
Dan Halbert
2d53627796
Merge pull request #8189 from todbot/esp32_synthio_channels
...
ESP32 synthio channels to 12
2023-07-24 21:39:00 -04:00
Melissa LeBlanc-Williams
cd96198242
Ran pre-commit
2023-07-24 15:18:07 -07:00
Melissa LeBlanc-Williams
f26d92fdb8
Add inverted board and fix pins
2023-07-24 15:11:22 -07:00
Melissa LeBlanc-Williams
7f8f1b37fd
Fix pin names
2023-07-24 10:47:37 -07:00
Scott Shawcroft
fff309b90a
Merge pull request #8164 from madcitygeek/add_luatos_core_esp32c3_ch343
...
Add luatos core esp32c3 ch343
2023-07-24 10:17:03 -07:00
Scott Shawcroft
eebff5cb77
Merge pull request #8198 from dhalbert/8.2.x-backport-8130-qtpy-esp32s3-m4r2
...
8.2.x backport: adafruit_qtpy_esp32s3_4mbflash_2mbpsram
2023-07-24 09:47:47 -07:00
Scott Shawcroft
b901063eea
Merge pull request #8197 from dhalbert/8.2.x-backport-8129-s3-box-psram
...
8.2.x backport: Fix PSRAM on espressif ESP32S3 box and box lite
2023-07-24 09:46:42 -07:00
Dan Halbert
66a76d034e
Merge pull request #8187 from tannewt/three_small
...
Three small changes
2023-07-24 12:42:38 -04:00
Melissa LeBlanc-Williams
a134eebefb
Merge branch 'main' of https://github.com/adafruit/circuitpython into arduino-nano-esp32s3
2023-07-24 08:47:15 -07:00
Melissa LeBlanc-Williams
97a8d71356
Swapped address pins for Rev C
2023-07-23 10:50:07 -04:00
Dan Halbert
66d0d95f23
adafruit_qtpy_esp32s3_4mbflash_2mbpsram
2023-07-23 10:47:37 -04:00