Merge pull request #13062 from arendst/berry_psram

USE_BERRY_PSRAM as default
This commit is contained in:
Jason2866 2021-09-04 15:37:34 +02:00 committed by GitHub
commit e7045a72be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 9 deletions

View File

@ -979,7 +979,7 @@
//#define USE_WEBCAM // Add support for webcam //#define USE_WEBCAM // Add support for webcam
#define USE_BERRY // Enable Berry scripting language #define USE_BERRY // Enable Berry scripting language
//#define USE_BERRY_PSRAM // Allocate Berry memory in PSRAM if PSRAM is connected - this might be slightly slower but leaves main memory intact #define USE_BERRY_PSRAM // Allocate Berry memory in PSRAM if PSRAM is connected - this might be slightly slower but leaves main memory intact
#define USE_WEBCLIENT // Enable `webclient` to make HTTP/HTTPS requests. Can be disabled for security reasons. #define USE_WEBCLIENT // Enable `webclient` to make HTTP/HTTPS requests. Can be disabled for security reasons.
// #define USE_WEBCLIENT_HTTPS // Enable HTTPS outgoing requests based on BearSSL (much ligher then mbedTLS, 42KB vs 150KB) in insecure mode (no verification of server's certificate) // #define USE_WEBCLIENT_HTTPS // Enable HTTPS outgoing requests based on BearSSL (much ligher then mbedTLS, 42KB vs 150KB) in insecure mode (no verification of server's certificate)
// Note that only one cipher is enabled: ECDHE_RSA_WITH_AES_128_GCM_SHA256 which is very commonly used and highly secure // Note that only one cipher is enabled: ECDHE_RSA_WITH_AES_128_GCM_SHA256 which is very commonly used and highly secure

View File

@ -58,10 +58,6 @@
#define USE_ODROID_GO // Add support for Odroid Go #define USE_ODROID_GO // Add support for Odroid Go
#define USE_SDCARD #define USE_SDCARD
#ifdef USE_BERRY // Berry scripting language
#define USE_BERRY_PSRAM // Allocate Berry memory in PSRAM if PSRAM is connected - this might be slightly slower but leaves main memory intact
#endif
#define USE_ADC #define USE_ADC
#define USE_SPI #define USE_SPI
#define USE_DISPLAY // Add SPI Display Support (+2k code) #define USE_DISPLAY // Add SPI Display Support (+2k code)
@ -92,10 +88,6 @@
#define USE_I2S_WEBRADIO #define USE_I2S_WEBRADIO
#define USE_SDCARD #define USE_SDCARD
#ifdef USE_BERRY // Berry scripting language
#define USE_BERRY_PSRAM // Allocate Berry memory in PSRAM if PSRAM is connected - this might be slightly slower but leaves main memory intact
#endif
#define USE_I2C #define USE_I2C
#define USE_BMA423 #define USE_BMA423
#define USE_MPU_ACCEL #define USE_MPU_ACCEL