You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//TODO: if there are multiple packets (like for a GIF), get all packets and split them into 210 byte pieces. currently only the first packet gets split, which breaks bigger GIFs
130
+
size_t previousSize = 0;
131
+
uint8_t previousBuffer[210];
131
132
132
133
while (true) {
133
134
data_packet_t dataPacket;
134
135
if (xQueueReceive(parsePacketQueue, &dataPacket, (TickType_t)10) == pdPASS) {
0 commit comments