Merge pull request #110 from claycoleman/patch-1

Fix broken compilation code in tiny training tutorial
This commit is contained in:
Yujun(Xavier) Lin 2024-11-27 13:51:37 -05:00 committed by GitHub
commit 47bb283ce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include "User_Config.h"
#include <stdio.h>
#include <cstdint>
#if defined(ESP8266) || defined(ESP32)

View File

@ -19,6 +19,7 @@
#ifndef LCD_H_
#define LCD_H_
#include <stdio.h>
#include <cstdint>
void loadRGB565LCD(uint32_t x, uint32_t y, uint32_t width, uint32_t height,
uint16_t *src, uint8_t resize);

View File

@ -173,6 +173,7 @@ int DecodeandProcessRGB565(int image_width, int image_height,
}
}
}
return 0;
}
int DecodeandProcessAndRGB(int image_width, int image_height,
@ -271,6 +272,7 @@ int DecodeandProcessAndRGB(int image_width, int image_height,
}
}
}
return 0;
}
int DecodeandProcess(int image_width, int image_height, uint8_t *image_data) {