core_bits, tools

This commit is contained in:
Zack Buhman 2024-12-31 13:27:43 -06:00
parent da041de646
commit 2e2290cc8c
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ constexpr uint32_t fb_concat(uint32_t num) { return (num & 0x3) << 4; }
namespace fb_depth { namespace fb_depth {
constexpr uint32_t _0555_rgb_16bit = 0 << 2; constexpr uint32_t _0555_rgb_16bit = 0 << 2;
constexpr uint32_t _0565_rgb_16bit = 1 << 2; constexpr uint32_t _565_rgb_16bit = 1 << 2;
constexpr uint32_t _888_rgb_24bit_packed = 2 << 2; constexpr uint32_t _888_rgb_24bit_packed = 2 << 2;

View File

@ -14,7 +14,7 @@ FREETYPE_LDFLAGS = $(shell pkg-config --libs freetype2)
FTDI_CFLAGS = $(shell pkg-config --cflags libftdi1) -I. FTDI_CFLAGS = $(shell pkg-config --cflags libftdi1) -I.
FTDI_LDFLAGS = $(shell pkg-config --libs libftdi1) FTDI_LDFLAGS = $(shell pkg-config --libs libftdi1)
all: ttf_outline all: ftdi_transfer
crc32.o: crc32.c crc32.o: crc32.c
$(CC) -std=gnu2x $(CFLAGS) -I. -c $< -o $@ $(CC) -std=gnu2x $(CFLAGS) -I. -c $< -o $@