Skip to content

Commit fe482c6

Browse files
committed
Merge branch 'mdev' into html-gen
2 parents a7ad796 + 1350a41 commit fe482c6

File tree

12 files changed

+156
-72
lines changed

12 files changed

+156
-72
lines changed

wled00/FX.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5062,8 +5062,8 @@ uint16_t mode_2DDrift() { // By: Stepko https://editor.soulmateli
50625062
unsigned long t_20 = t/20; // softhack007: pre-calculating this gives about 10% speedup
50635063
for (float i = 1; i < maxDim; i += 0.25) {
50645064
float angle = radians(t * (maxDim - i));
5065-
uint16_t myX = (cols>>1) + (uint16_t)(sin_t(angle) * i) + (cols%2);
5066-
uint16_t myY = (rows>>1) + (uint16_t)(cos_t(angle) * i) + (rows%2);
5065+
uint16_t myX = (cols>>1) + (uint16_t)(sinf(angle) * i) + (cols%2);
5066+
uint16_t myY = (rows>>1) + (uint16_t)(cosf(angle) * i) + (rows%2);
50675067
SEGMENT.setPixelColorXY(myX, myY, ColorFromPalette(SEGPALETTE, (i * 20) + t_20, 255, LINEARBLEND));
50685068
}
50695069
SEGMENT.blur(SEGMENT.intensity>>3);
@@ -5338,8 +5338,8 @@ uint16_t mode_2DJulia(void) { // An animated Julia set
53385338
reAl = -0.94299f; // PixelBlaze example
53395339
imAg = 0.3162f;
53405340

5341-
reAl += sin_t((float)strip.now/305.f)/20.f;
5342-
imAg += sin_t((float)strip.now/405.f)/20.f;
5341+
reAl += sinf((float)strip.now/305.f)/20.f;
5342+
imAg += sinf((float)strip.now/405.f)/20.f;
53435343

53445344
dx = (xmax - xmin) / (cols); // Scale the delta x and y values to our matrix size.
53455345
dy = (ymax - ymin) / (rows);
@@ -6067,8 +6067,8 @@ uint16_t mode_2Dghostrider(void) {
60676067
CRGB color = CRGB::White;
60686068
SEGMENT.wu_pixel(lighter->gPosX * 256 / 10, lighter->gPosY * 256 / 10, color);
60696069

6070-
lighter->gPosX += lighter->Vspeed * sin_t(radians(lighter->gAngle));
6071-
lighter->gPosY += lighter->Vspeed * cos_t(radians(lighter->gAngle));
6070+
lighter->gPosX += lighter->Vspeed * sinf(radians(lighter->gAngle));
6071+
lighter->gPosY += lighter->Vspeed * cosf(radians(lighter->gAngle));
60726072
lighter->gAngle += lighter->angleSpeed;
60736073
if (lighter->gPosX < 0) lighter->gPosX = (cols - 1) * 10;
60746074
if (lighter->gPosX > (cols - 1) * 10) lighter->gPosX = 0;
@@ -6090,8 +6090,8 @@ uint16_t mode_2Dghostrider(void) {
60906090
lighter->time[i] = 0;
60916091
lighter->reg[i] = false;
60926092
} else {
6093-
lighter->lightersPosX[i] += -7 * sin_t(radians(lighter->Angle[i]));
6094-
lighter->lightersPosY[i] += -7 * cos_t(radians(lighter->Angle[i]));
6093+
lighter->lightersPosX[i] += -7 * sinf(radians(lighter->Angle[i]));
6094+
lighter->lightersPosY[i] += -7 * cosf(radians(lighter->Angle[i]));
60956095
}
60966096
SEGMENT.wu_pixel(lighter->lightersPosX[i] * 256 / 10, lighter->lightersPosY[i] * 256 / 10, ColorFromPalette(SEGPALETTE, (256 - lighter->time[i])));
60976097
}
@@ -6303,8 +6303,8 @@ uint16_t mode_2Ddriftrose(void) {
63036303

63046304
SEGMENT.fadeToBlackBy(32+(SEGMENT.speed>>3));
63056305
for (size_t i = 1; i < 37; i++) {
6306-
uint32_t x = (CX + (sin_t(radians(i * 10)) * (beatsin8(i, 0, L*2)-L))) * 255.f;
6307-
uint32_t y = (CY + (cos_t(radians(i * 10)) * (beatsin8(i, 0, L*2)-L))) * 255.f;
6306+
uint32_t x = (CX + (sinf(radians(i * 10)) * (beatsin8(i, 0, L*2)-L))) * 255.f;
6307+
uint32_t y = (CY + (cosf(radians(i * 10)) * (beatsin8(i, 0, L*2)-L))) * 255.f;
63086308
SEGMENT.wu_pixel(x, y, CHSV(i * 10, 255, 255));
63096309
}
63106310
SEGMENT.blur((SEGMENT.intensity>>4)+1);

wled00/FX_fcn.cpp

Lines changed: 70 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,16 @@ void Segment::deletejMap() {
776776
}
777777
}
778778

779+
780+
// WLEDMM constants for mapping mode "Pinwheel"
781+
constexpr int Pinwheel_Steps_Medium = 208; // no holes up to 32x32; 60fps
782+
constexpr int Pinwheel_Size_Medium = 32; // larger than this -> use "Big"
783+
constexpr int Pinwheel_Steps_Big = 360; // no holes expected up to 58x58; 40fps
784+
constexpr float Int_to_Rad_Med = (DEG_TO_RAD * 360) / Pinwheel_Steps_Medium; // conversion: from 0...208 to Radians
785+
constexpr float Int_to_Rad_Big = (DEG_TO_RAD * 360) / Pinwheel_Steps_Big; // conversion: from 0...360 to Radians
786+
// WLEDMM end
787+
788+
779789
// 1D strip
780790
uint16_t Segment::virtualLength() const {
781791
#ifndef WLED_DISABLE_2D
@@ -806,7 +816,11 @@ uint16_t Segment::virtualLength() const {
806816
vLen = max(vW,vH) * 0.5; // get the longest dimension
807817
break;
808818
case M12_sPinWheel: //WLEDMM
809-
vLen = 360; // full circle
819+
//vLen = full circle
820+
if (max(vW,vH) <= Pinwheel_Size_Medium)
821+
vLen = Pinwheel_Steps_Medium;
822+
else
823+
vLen = Pinwheel_Steps_Big;
810824
break;
811825
}
812826
return vLen;
@@ -875,13 +889,26 @@ void IRAM_ATTR_YN Segment::setPixelColor(int i, uint32_t col) //WLEDMM: IRAM_ATT
875889
else {
876890
//WLEDMM: drawArc(0, 0, i, col); could work as alternative
877891

878-
float step = HALF_PI / (2.85f*i);
879-
for (float rad = 0.0f; rad <= HALF_PI+step/2; rad += step) {
892+
//WLEDMM: some optimizations for the drawing loop
893+
// pre-calculate loop limits, exploit symmetry at 45deg
894+
float radius = float(i);
895+
// float step = HALF_PI / (2.85f * radius); // upstream uses this
896+
float step = HALF_PI / (M_PI * radius); // WLEDMM we use the correct circumference
897+
bool useSymmetry = (max(vH, vW) > 20); // for segments wider than 20 pixels, we exploit symmetry
898+
unsigned numSteps;
899+
if (useSymmetry) numSteps = 1 + ((HALF_PI/2.0f + step/2.0f) / step); // with symmetry
900+
else numSteps = 1 + ((HALF_PI + step/2.0f) / step); // without symmetry
901+
902+
float rad = 0.0f;
903+
for (unsigned count = 0; count < numSteps; count++) {
880904
// may want to try float version as well (with or without antialiasing)
881-
int x = roundf(sin_t(rad) * i);
882-
int y = roundf(cos_t(rad) * i);
905+
int x = roundf(sinf(rad) * radius);
906+
int y = roundf(cosf(rad) * radius);
883907
setPixelColorXY(x, y, col);
908+
if(useSymmetry) setPixelColorXY(y, x, col);// WLEDMM
909+
rad += step;
884910
}
911+
885912
// Bresenham’s Algorithm (may not fill every pixel)
886913
//int d = 3 - (2*i);
887914
//int y = i, x = 0;
@@ -909,8 +936,8 @@ void IRAM_ATTR_YN Segment::setPixelColor(int i, uint32_t col) //WLEDMM: IRAM_ATT
909936
case M12_sCircle: //WLEDMM
910937
if (vStrip > 0)
911938
{
912-
int x = roundf(sin_t(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
913-
int y = roundf(cos_t(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
939+
int x = roundf(sinf(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
940+
int y = roundf(cosf(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
914941
setPixelColorXY(x + vW/2, y + vH/2, col);
915942
}
916943
else // pArc -> circle
@@ -935,24 +962,35 @@ void IRAM_ATTR_YN Segment::setPixelColor(int i, uint32_t col) //WLEDMM: IRAM_ATT
935962
}
936963
}
937964
break;
938-
case M12_sPinWheel: {
939-
// i = 0 through 359
940-
float centerX = (vW-1) / 2;
941-
float centerY = (vH-1) / 2;
965+
case M12_sPinWheel: { // WLEDMM
966+
// i = angle --> 0 through 359 (Big), OR 0 through 208 (Medium)
967+
float centerX = roundf((vW-1) / 2.0f);
968+
float centerY = roundf((vH-1) / 2.0f);
942969
// int maxDistance = sqrt(centerX * centerX + centerY * centerY) + 1;
943-
944-
int distance = 0;
945-
float cosVal = cos(i * DEG_TO_RAD); // i = current angle
946-
float sinVal = sin(i * DEG_TO_RAD);
947-
while (true) {
948-
int x = round(centerX + distance * cosVal);
949-
int y = round(centerY + distance * sinVal);
950-
// Check bounds
951-
if (x < 0 || x >= vW || y < 0 || y >= vH) {
952-
break;
953-
}
970+
float angleRad = (max(vW,vH) > Pinwheel_Size_Medium) ? float(i) * Int_to_Rad_Big : float(i) * Int_to_Rad_Med; // angle in radians
971+
float cosVal = cosf(angleRad);
972+
float sinVal = sinf(angleRad);
973+
974+
// draw line at angle, starting at center and ending at the segment edge
975+
// we use fixed point math for better speed. Starting distance is 0.5 for better rounding
976+
constexpr int_fast32_t Fixed_Scale = 512; // fixpoint scaling factor
977+
int_fast32_t posx = (centerX + 0.5f * cosVal) * Fixed_Scale; // X starting position in fixed point
978+
int_fast32_t posy = (centerY + 0.5f * sinVal) * Fixed_Scale; // Y starting position in fixed point
979+
int_fast16_t inc_x = cosVal * Fixed_Scale; // X increment per step (fixed point)
980+
int_fast16_t inc_y = sinVal * Fixed_Scale; // Y increment per step (fixed point)
981+
982+
int32_t maxX = vW * Fixed_Scale; // X edge in fixedpoint
983+
int32_t maxY = vH * Fixed_Scale; // Y edge in fixedpoint
984+
// draw until we hit any edge
985+
while ((posx > 0) && (posy > 0) && (posx < maxX) && (posy < maxY)) {
986+
// scale down to integer (compiler will replace division with appropriate bitshift)
987+
int x = posx / Fixed_Scale;
988+
int y = posy / Fixed_Scale;
989+
// set pixel
954990
setPixelColorXY(x, y, col);
955-
distance++;
991+
// advance to next position
992+
posx += inc_x;
993+
posy += inc_y;
956994
}
957995
break;
958996
}
@@ -1076,8 +1114,8 @@ uint32_t Segment::getPixelColor(int i)
10761114
case M12_sCircle: //WLEDMM
10771115
if (vStrip > 0)
10781116
{
1079-
int x = roundf(sin_t(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
1080-
int y = roundf(cos_t(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
1117+
int x = roundf(sinf(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
1118+
int y = roundf(cosf(360*i/SEGLEN*DEG_TO_RAD) * vW * (vStrip+1)/nrOfVStrips());
10811119
return getPixelColorXY(x + vW/2, y + vH/2);
10821120
}
10831121
else
@@ -1094,12 +1132,13 @@ uint32_t Segment::getPixelColor(int i)
10941132
return getPixelColorXY(vW / 2, vH / 2 - i - 1);
10951133
break;
10961134
case M12_sPinWheel: //WLEDMM
1097-
// not 100% accurate, returns outer edge of circle
1098-
int distance = min(vH, vW) / 2;
1099-
float centerX = (vW - 1) / 2;
1100-
float centerY = (vH - 1) / 2;
1101-
int x = round(centerX + distance * cos(i * DEG_TO_RAD));
1102-
int y = round(centerY + distance * sin(i * DEG_TO_RAD));
1135+
// not 100% accurate, returns outer edge of circle
1136+
float distance = max(1.0f, min(vH-1, vW-1) / 2.0f);
1137+
float centerX = (vW - 1) / 2.0f;
1138+
float centerY = (vH - 1) / 2.0f;
1139+
float angleRad = (max(vW,vH) > Pinwheel_Size_Medium) ? float(i) * Int_to_Rad_Big : float(i) * Int_to_Rad_Med; // angle in radians
1140+
int x = roundf(centerX + distance * cosf(angleRad));
1141+
int y = roundf(centerY + distance * sinf(angleRad));
11031142
return getPixelColorXY(x, y);
11041143
}
11051144
return 0;

wled00/const.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@
344344
#define ERR_OVERTEMP 30 // An attached temperature sensor has measured above threshold temperature (not implemented)
345345
#define ERR_OVERCURRENT 31 // An attached current sensor has measured a current above the threshold (not implemented)
346346
#define ERR_UNDERVOLT 32 // An attached voltmeter has measured a voltage below the threshold (not implemented)
347+
#define ERR_LOW_MEM 33 // low memory (RAM)
347348

348349
// Timer mode types
349350
#define NL_MODE_SET 0 //After nightlight time elapsed, set to target brightness

wled00/data/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1967,6 +1967,9 @@ function readState(s,command=false)
19671967
case 19:
19681968
errstr = "A filesystem error has occured.";
19691969
break;
1970+
case 33:
1971+
errstr = "Warning: Low Memory (RAM).";
1972+
break;
19701973
}
19711974
showToast('Error ' + s.error + ": " + errstr, true);
19721975
}

wled00/json.cpp

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1405,14 +1405,26 @@ void serializeModeNames(JsonArray arr) {
14051405

14061406
// Global buffer locking response helper class (to make sure lock is released when AsyncJsonResponse is destroyed)
14071407
class LockedJsonResponse: public AsyncJsonResponse {
1408+
bool _holding_lock;
14081409
public:
14091410
// WARNING: constructor assumes requestJSONBufferLock() was successfully acquired externally/prior to constructing the instance
14101411
// Not a good practice with C++. Unfortunately AsyncJsonResponse only has 2 constructors - for dynamic buffer or existing buffer,
14111412
// with existing buffer it clears its content during construction
14121413
// if the lock was not acquired (using JSONBufferGuard class) previous implementation still cleared existing buffer
1413-
inline LockedJsonResponse(JsonDocument *doc, bool isArray) : AsyncJsonResponse(doc, isArray) {};
1414+
inline LockedJsonResponse(JsonDocument* doc, bool isArray) : AsyncJsonResponse(doc, isArray), _holding_lock(true) {};
1415+
1416+
virtual size_t _fillBuffer(uint8_t *buf, size_t maxLen) {
1417+
size_t result = AsyncJsonResponse::_fillBuffer(buf, maxLen);
1418+
// Release lock as soon as we're done filling content
1419+
if (((result + _sentLength) >= (_contentLength)) && _holding_lock) {
1420+
releaseJSONBufferLock();
1421+
_holding_lock = false;
1422+
}
1423+
return result;
1424+
}
1425+
14141426
// destructor will remove JSON buffer lock when response is destroyed in AsyncWebServer
1415-
virtual ~LockedJsonResponse() { releaseJSONBufferLock(); };
1427+
virtual ~LockedJsonResponse() { if (_holding_lock) releaseJSONBufferLock(); };
14161428
};
14171429

14181430
void serveJson(AsyncWebServerRequest* request)

wled00/presets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ static void doSaveState() {
9595

9696
bool getPresetName(byte index, String& name)
9797
{
98-
if (!requestJSONBufferLock(9)) return false;
98+
if (!requestJSONBufferLock(19)) return false;
9999
bool presetExists = false;
100100
if (readObjectFromFileUsingId(getFileName(), index, &doc))
101101
{

wled00/util.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,12 +204,12 @@ bool requestJSONBufferLock(uint8_t module)
204204
{
205205
unsigned long now = millis();
206206

207-
while (jsonBufferLock && millis()-now < 1000) delay(1); // wait for a second for buffer lock
207+
while (jsonBufferLock && millis()-now < 1200) delay(1); // wait for fraction for buffer lock
208208

209-
if (millis()-now >= 1000) {
210-
DEBUG_PRINT(F("ERROR: Locking JSON buffer failed! ("));
211-
DEBUG_PRINT(jsonBufferLock);
212-
DEBUG_PRINTLN(")");
209+
if (jsonBufferLock) {
210+
USER_PRINT(F("ERROR: Locking JSON buffer failed! (still locked by "));
211+
USER_PRINT(jsonBufferLock);
212+
USER_PRINTLN(")");
213213
return false; // waiting time-outed
214214
}
215215

wled00/wled.cpp

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,6 +1205,7 @@ void WLED::handleConnection()
12051205
return;
12061206
}
12071207

1208+
static unsigned retryCount = 0; // WLEDMM
12081209
#ifdef ARDUINO_ARCH_ESP32
12091210
// reconnect WiFi to clear stale allocations if heap gets too low
12101211
if (now - heapTime > 5000) { // WLEDMM: updated with better logic for small heap available by block, not total.
@@ -1214,10 +1215,16 @@ void WLED::handleConnection()
12141215
uint32_t heap = heap_caps_get_largest_free_block(0x1800); // WLEDMM: This is a better metric for free heap.
12151216
#endif
12161217
if (heap < MIN_HEAP_SIZE && lastHeap < MIN_HEAP_SIZE) {
1217-
USER_PRINT(F("Heap too low! (step 2, force reconnect): "));
1218-
USER_PRINTLN(heap);
1219-
forceReconnect = true;
1220-
strip.purgeSegments(true); // remove all but one segments from memory
1218+
if (retryCount < 5) { // WLEDMM avoid repeated disconnects
1219+
USER_PRINT(F("Heap too low! (step 2, force reconnect): "));
1220+
USER_PRINTLN(heap);
1221+
forceReconnect = true;
1222+
strip.purgeSegments(true); // remove all but one segments from memory
1223+
// WLEDMM
1224+
errorFlag = ERR_LOW_MEM;
1225+
retryCount ++;
1226+
}
1227+
errorFlag = ERR_LOW_MEM;
12211228
} else if (heap < MIN_HEAP_SIZE) {
12221229
USER_PRINT(F("Heap too low! (step 1, flush unread UDP): "));
12231230
USER_PRINTLN(heap);
@@ -1226,7 +1233,10 @@ void WLED::handleConnection()
12261233
rgbUdp.flush();
12271234
notifier2Udp.flush();
12281235
ntpUdp.flush();
1229-
}
1236+
// WLEDMM
1237+
errorFlag = ERR_LOW_MEM;
1238+
retryCount = 1;
1239+
} else retryCount = 0; // WLEDMM memory OK - reset counter
12301240
lastHeap = heap;
12311241
heapTime = now;
12321242
}
@@ -1235,15 +1245,23 @@ void WLED::handleConnection()
12351245
if (now - heapTime > 5000) {
12361246
uint32_t heap = ESP.getFreeHeap();
12371247
if (heap < MIN_HEAP_SIZE && lastHeap < MIN_HEAP_SIZE) {
1238-
USER_PRINT(F("Heap too low! (step 2, force reconnect): "));
1239-
USER_PRINTLN(heap);
1240-
forceReconnect = true;
1241-
strip.purgeSegments(true); // remove all but one segments from memory
1248+
if (retryCount < 5) { // WLEDMM avoid repeated disconnects
1249+
USER_PRINT(F("Heap too low! (step 2, force reconnect): "));
1250+
USER_PRINTLN(heap);
1251+
forceReconnect = true;
1252+
strip.purgeSegments(true); // remove all but one segments from memory
1253+
// WLEDMM
1254+
errorFlag = ERR_LOW_MEM;
1255+
retryCount ++;
1256+
}
12421257
} else if (heap < MIN_HEAP_SIZE) {
12431258
USER_PRINT(F("Heap too low! (step 1, purge segments): "));
12441259
USER_PRINTLN(heap);
12451260
strip.purgeSegments();
1246-
}
1261+
// WLEDMM
1262+
errorFlag = ERR_LOW_MEM;
1263+
retryCount = 1;
1264+
} else retryCount = 0; // WLEDMM memory OK - reset counter
12471265
lastHeap = heap;
12481266
heapTime = now;
12491267
}

wled00/wled.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2402180
11+
#define VERSION 2402252
1212

1313
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
1414
#define _MoonModules_WLED_
@@ -822,11 +822,13 @@ WLED_GLOBAL volatile uint8_t jsonBufferLock _INIT(0);
822822
#define DEBUGOUT(x) (netDebugEnabled || !canUseSerial())?NetDebug.print(x):Serial.print(x)
823823
#define DEBUGOUTLN(x) (netDebugEnabled || !canUseSerial())?NetDebug.println(x):Serial.println(x)
824824
#define DEBUGOUTF(x...) (netDebugEnabled || !canUseSerial())?NetDebug.printf(x):Serial.printf(x)
825+
#define DEBUGOUTFP(x...) (netDebugEnabled || !canUseSerial())?NetDebug.printf_P(x):Serial.printf_P(x)
825826
#define DEBUGOUTFlush() (netDebugEnabled || !canUseSerial())?NetDebug.flush():Serial.flush()
826827
#else
827828
#define DEBUGOUT(x) {if (canUseSerial()) Serial.print(x);}
828829
#define DEBUGOUTLN(x) {if (canUseSerial()) Serial.println(x);}
829830
#define DEBUGOUTF(x...) {if (canUseSerial()) Serial.printf(x);}
831+
#define DEBUGOUTFP(x...) {if (canUseSerial()) Serial.printf_P(x);}
830832
#define DEBUGOUTFlush() {if (canUseSerial()) Serial.flush();}
831833
#endif
832834

@@ -837,10 +839,12 @@ WLED_GLOBAL volatile uint8_t jsonBufferLock _INIT(0);
837839
#define DEBUG_PRINT(x) DEBUGOUT(x)
838840
#define DEBUG_PRINTLN(x) DEBUGOUTLN(x)
839841
#define DEBUG_PRINTF(x...) DEBUGOUTF(x)
842+
#define DEBUG_PRINTF_P(x...) DEBUGOUTFP(x)
840843
#else
841844
#define DEBUG_PRINT(x)
842845
#define DEBUG_PRINTLN(x)
843846
#define DEBUG_PRINTF(x...)
847+
#define DEBUG_PRINTF_P(x...)
844848
#endif
845849

846850
#define USER_PRINT(x) DEBUGOUT(x)

0 commit comments

Comments
 (0)