CircuitPython version
Adadruit Circuitpython 9.2.1. Board LILYGO® TTGO T-Display ESP32 4M
Code/REPL
import gc
print(gc.mem_free())
Behavior
116768
Description
Despite the available amount of ram ( 520kB) with circuitpython the available ram is just 116768 kB (~22%). It seems a little weird to me as other boards like adafruit feather nrf52840 or raspberry pico w, with less than 300kB of ram, both show 137kB (>50%) of available ram in circuitpython.
I don't know if this gap, 23% (esp32) vs 50% (nrf52 or rp2040), is due to the different architectures or to something else but the lower amount of available ram on TTGO seems akward.
Additional information
No response