You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using JPEGDEC with ESP32-S2 and platformIO. I use JPEGDEC by adding it to the lib_deps: in the platformio.ini file
lib_deps =
moononournation/GFX Library for Arduino@^1.4.6
bitbank2/JPEGDEC@^1.4.2
When it builds it tries to #include "dsps_fft2r_platform.h" but it is not loaded in the lib_deps folder. The s3_simd_420.S and s3_simd_444.S have the include within ARDUINO_ARCH_ESP32.
Do I need to include another dependency to bring in dsps_fft2r_platform? Since these files are specific to the S3 and I'm using the S2 should the #ifdef label be something more specific to the S3?
This is an old project that once compiled with these two dependencies and not it does not. This library hasn't changed, so I suspect something in the development environment has.
I need your help sorting this out.
Thanks,
Mike.
The text was updated successfully, but these errors were encountered:
I am using JPEGDEC with ESP32-S2 and platformIO. I use JPEGDEC by adding it to the lib_deps: in the platformio.ini file
lib_deps =
moononournation/GFX Library for Arduino@^1.4.6
bitbank2/JPEGDEC@^1.4.2
When it builds it tries to #include "dsps_fft2r_platform.h" but it is not loaded in the lib_deps folder. The s3_simd_420.S and s3_simd_444.S have the include within ARDUINO_ARCH_ESP32.
#ifdef ARDUINO_ARCH_ESP32
#include "dsps_fft2r_platform.h"
Do I need to include another dependency to bring in dsps_fft2r_platform? Since these files are specific to the S3 and I'm using the S2 should the #ifdef label be something more specific to the S3?
This is an old project that once compiled with these two dependencies and not it does not. This library hasn't changed, so I suspect something in the development environment has.
I need your help sorting this out.
Thanks,
Mike.
The text was updated successfully, but these errors were encountered: