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
Alternatively, you can define them as `U8G2_DISPLAY_TABLE_I2C_EXTRA` and `U8G2_DISPLAY_TABLE_SPI_EXTRA` in an external file to avoid changing the source tree. Include the extra file on the `make` command line:
84
+
```
85
+
make EXTRA_CCFLAGS='-include $(TOP_DIR)/my_extras.h'
86
+
```
87
+
83
88
#### ESP32
84
89
Enable the desired entries for I²C and SPI displays in u8g2's sub-menu (run `make menuconfig`).
85
90
@@ -96,6 +101,11 @@ Add the desired fonts to the font table in [app/include/u8g2_fonts.h](../../../a
96
101
U8G2_FONT_TABLE_ENTRY(font_unifont_t_symbols) \
97
102
```
98
103
104
+
Alternatively, you can define this as `U8G2_FONT_TABLE_EXTRA` in an external file to avoid changing the source tree. Include the extra file on the `make` command line:
105
+
```
106
+
make EXTRA_CCFLAGS='-include $(TOP_DIR)/my_extras.h'
107
+
```
108
+
99
109
#### ESP32
100
110
Add the desired fonts to the font selection sub-entry via `make menuconfig`.
0 commit comments