This commit is contained in:
2024-07-14 12:52:32 -04:00
parent 39e7debeae
commit 9fc08b7e42

View File

@@ -57,6 +57,15 @@ ESP32-C3 is a cost-effective, RISC-V-based MCU with Wi-Fi and Bluetooth 5 (LE) c
### Programming via UART ### Programming via UART
## Unified Configuration Framework
ESP Nodes performing specific operations can use different ESP32 Modules for optimization purposes. As dicersity of ESP32s being used by the Nodes increases, so does the code. However, in order to keep core code independent from the ESP32 Module being used, the so-called configurations specific for the particular ESP32 Module are defined in config.h file.
```C
#ifnotdef
#define
```
Bare-bones ESP32 module can be programmed via UART interface (`GPIO03` and `GPIO01`) using USB to UART adapter. Bare-bones ESP32 module can be programmed via UART interface (`GPIO03` and `GPIO01`) using USB to UART adapter.
## Temperature Node. The Key Elements and Components ## Temperature Node. The Key Elements and Components