|
ProtoCore v0.0.1
Deterministic, zero-heap network stack for embedded targets
|
ESP32-S3 die profile - dual Xtensa LX7, 512 KB SRAM, Wi-Fi 4 + BLE 5.0, Octal PSRAM. More...
#include "../classic_defaults.h"Go to the source code of this file.
Macros | |
| #define | PC_HW_AES 1 |
| #define | PC_HW_SHA 1 |
| #define | PC_HW_RSA 1 |
| #define | PC_HW_ECC 0 |
| #define | PC_HW_ECDSA 0 |
| #define | PC_HW_HMAC 1 |
| #define | PC_HW_DS 1 |
| #define | MAX_CONNS 12 |
| #define | RX_BUF_SIZE 2048 |
| #define | PC_SCRATCH_ARENA_SIZE 12288 |
| #define | PC_CLIENT_RX_BUF 8192 |
| #define | MAX_ROUTES 32 |
| #define | MAX_HEADERS 16 |
| #define | BODY_BUF_SIZE 1024 |
| #define | MAX_WS_CONNS 4 |
| #define | MAX_SSE_CONNS 4 |
| #define | MAX_TLS_CONNS 1 |
| #define | MAX_SSH_CONNS 2 |
| #define | PC_SSH_MAX_CHANNELS 4 |
| #define | PC_SSH_CLIENT_MAX_CHANNELS 6 |
| #define | PC_EDGE_CACHE_SLOTS 8 |
| #define | PC_EDGE_BODY_MAX 4096 |
| #define | PC_EDGE_FETCH_SLOTS 3 |
| #define | PC_MESH_MAX_PEERS 6 |
| #define | PC_MESH_MAX_CONNS 2 |
ESP32-S3 die profile - dual Xtensa LX7, 512 KB SRAM, Wi-Fi 4 + BLE 5.0, Octal PSRAM.
Roomier usable DRAM than the classic ESP32 plus AI/vector DSP instructions, so the RAM-backed pools get a modest bump even with no PSRAM fitted (a PSRAM profile, included first, scales them further). Crypto HW: AES, SHA, RSA/MPI, HMAC, DS (no ECC/ECDSA). classic_defaults.h is pulled in last as the sizing floor; every macro is #ifndef-guarded so a -D override wins.
Definition in file s3_defaults.h.
| #define PC_HW_AES 1 |
Definition at line 19 of file s3_defaults.h.
| #define PC_HW_SHA 1 |
Definition at line 22 of file s3_defaults.h.
| #define PC_HW_RSA 1 |
Definition at line 25 of file s3_defaults.h.
| #define PC_HW_ECC 0 |
Definition at line 28 of file s3_defaults.h.
| #define PC_HW_ECDSA 0 |
Definition at line 31 of file s3_defaults.h.
| #define PC_HW_HMAC 1 |
Definition at line 34 of file s3_defaults.h.
| #define PC_HW_DS 1 |
Definition at line 37 of file s3_defaults.h.
| #define MAX_CONNS 12 |
Definition at line 46 of file s3_defaults.h.
| #define RX_BUF_SIZE 2048 |
Definition at line 49 of file s3_defaults.h.
| #define PC_SCRATCH_ARENA_SIZE 12288 |
Definition at line 52 of file s3_defaults.h.
| #define PC_CLIENT_RX_BUF 8192 |
Definition at line 55 of file s3_defaults.h.
| #define MAX_ROUTES 32 |
Definition at line 60 of file s3_defaults.h.
| #define MAX_HEADERS 16 |
Definition at line 63 of file s3_defaults.h.
| #define BODY_BUF_SIZE 1024 |
Definition at line 66 of file s3_defaults.h.
| #define MAX_WS_CONNS 4 |
Definition at line 71 of file s3_defaults.h.
| #define MAX_SSE_CONNS 4 |
Definition at line 74 of file s3_defaults.h.
| #define MAX_TLS_CONNS 1 |
Definition at line 80 of file s3_defaults.h.
| #define MAX_SSH_CONNS 2 |
Definition at line 85 of file s3_defaults.h.
| #define PC_SSH_MAX_CHANNELS 4 |
Definition at line 88 of file s3_defaults.h.
| #define PC_SSH_CLIENT_MAX_CHANNELS 6 |
Definition at line 91 of file s3_defaults.h.
| #define PC_EDGE_CACHE_SLOTS 8 |
Definition at line 96 of file s3_defaults.h.
| #define PC_EDGE_BODY_MAX 4096 |
Definition at line 99 of file s3_defaults.h.
| #define PC_EDGE_FETCH_SLOTS 3 |
Definition at line 102 of file s3_defaults.h.
| #define PC_MESH_MAX_PEERS 6 |
Definition at line 105 of file s3_defaults.h.
| #define PC_MESH_MAX_CONNS 2 |
Definition at line 108 of file s3_defaults.h.