Skip to content

Commit ebae46a

Browse files
authored
Esp32c3 Support
Esp32c3 Support
2 parents 1a838f3 + 2a47861 commit ebae46a

File tree

6 files changed

+1825
-38
lines changed

6 files changed

+1825
-38
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ $? -ne 0 ]; then exit 1; fi
2020
source ./tools/install-esp-idf.sh
2121
if [ $? -ne 0 ]; then exit 1; fi
2222

23-
TARGETS="esp32s2 esp32"
23+
TARGETS="esp32c3 esp32s2 esp32"
2424

2525
echo $(git -C $AR_COMPS/arduino describe --all --long) > version.txt
2626

components/fb_gfx/fb_gfx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ uint8_t fb_gfx_putc(fb_data_t *fb, int32_t x, int32_t y, uint32_t color, unsigne
108108
return xa;
109109
}
110110

111-
uint32_t fb_gfx_print(fb_data_t *fb, int x, int y, uint32_t color, const char * str)
111+
uint32_t fb_gfx_print(fb_data_t *fb, int32_t x, int32_t y, uint32_t color, const char * str)
112112
{
113113
uint32_t l = 0;
114114
int xc = x, yc = y, lc = fb->width - gfxFont->glyph[0].xAdvance;

0 commit comments

Comments
 (0)