[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2025-08-22 18:44:37 +00:00
parent 8494463926
commit 36a6dd049b

View file

@ -25,12 +25,12 @@ void delayMicroseconds(unsigned long us);
int max(int a, int b); int max(int a, int b);
class ESPClass { class ESPClass {
public: public:
size_t getFlashChipSize() { size_t getFlashChipSize() {
// This is a placeholder for the actual implementation // This is a placeholder for the actual implementation
// that retrieves the flash chip size. // that retrieves the flash chip size.
return 4 * 1024 * 1024; // Example: returning 4MB return 4 * 1024 * 1024; // Example: returning 4MB
} }
}; };
extern ESPClass ESP; extern ESPClass ESP;