A fork of https://github.com/crosspoint-reader/crosspoint-reader
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: Resolve several build warnings (#1076)

## Summary

* Resolve several build warnings

---

### AI Usage

While CrossPoint doesn't have restrictions on AI tools in contributing,
please be transparent about their usage as it
helps set the right context for reviewers.

Did you use AI tools to help write this code? No

authored by

Dave Allie and committed by
GitHub
f28623da a610568f

+5 -2
+4 -1
lib/Logging/Logging.h
··· 68 68 static MySerialImpl instance; 69 69 }; 70 70 71 - #define Serial MySerialImpl::instance 71 + #ifdef Serial 72 + #undef Serial 73 + #endif 74 + #define Serial MySerialImpl::instance
+1 -1
platformio.ini
··· 35 35 # Increase PNG scanline buffer to support up to 2048px wide images 36 36 # Default is (320*4+1)*2=2562, we need more for larger images 37 37 -DPNG_MAX_BUFFERED_PIXELS=16416 38 + -Wno-bidi-chars 38 39 39 40 build_unflags = 40 41 -std=gnu++11 ··· 91 92 -DCROSSPOINT_VERSION=\"${crosspoint.version}-slim\" 92 93 ; serial output is disabled in slim builds to save space 93 94 -UENABLE_SERIAL_LOG 94 -