Compare commits

..

No commits in common. "5c5846c52c8572106fe4e64fca5237fc91d97f4c" and "a0b8639488b32a54af1cb096651dfb16dba95bed" have entirely different histories.

3 changed files with 1 additions and 21 deletions

View File

@ -1,18 +1,5 @@
# Changelog # Changelog
## [1.3.92] - 2025-02-24
### Changed
- update webpages for version v1.3.92
- remove commented-out code in setBambuSpool function
- update installation instructions and formatting in README files
### Fixed
- configure CPU frequency settings in setup function only for testing
- update comment to clarify NVS reading process
- adjust weight display logic to handle cases for weight less than 2
- update weight display logic to handle negative and specific weight cases
## [1.3.91] - 2025-02-23 ## [1.3.91] - 2025-02-23
### Added ### Added
- update GitHub Actions workflow for FTP firmware upload with improved credential checks - update GitHub Actions workflow for FTP firmware upload with improved credential checks

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html ; https://docs.platformio.org/page/projectconf.html
[common] [common]
version = "1.3.92" version = "1.3.91"
## ##
[env:esp32dev] [env:esp32dev]
platform = espressif32 platform = espressif32

View File

@ -15,17 +15,10 @@
#include "esp_task_wdt.h" #include "esp_task_wdt.h"
#include "commonFS.h" #include "commonFS.h"
#include "soc/rtc.h"
// ##### SETUP ##### // ##### SETUP #####
void setup() { void setup() {
Serial.begin(115200); Serial.begin(115200);
rtc_cpu_freq_config_t config;
rtc_clk_cpu_freq_get_config(&config);
rtc_clk_cpu_freq_to_config(RTC_CPU_FREQ_80M, &config);
rtc_clk_cpu_freq_set_config_fast(&config);
uint64_t chipid; uint64_t chipid;
chipid = ESP.getEfuseMac(); //The chip ID is essentially its MAC address(length: 6 bytes). chipid = ESP.getEfuseMac(); //The chip ID is essentially its MAC address(length: 6 bytes).