Skip to content

Commit

Permalink
issue #1853
Browse files Browse the repository at this point in the history
  • Loading branch information
olikraus committed Aug 13, 2022
1 parent f1770e5 commit 84da12a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ https://github.com/olikraus/u8g2 ChangeLog
* ST7567 ERC13232 (issue 1869)
* ST7920 160x32 (issue 1873)
* ST7586 JLX384160 (issue 1932)
* LC7981 128X128, NOT TESTED (issue 1913)
* Added support for IST3088 (issue 1887)
* Added support for GP1287AI (issue 1907)
* Double size font functions: drawGlyphX2, drawStrX2, drawUTF8X2 (issue 1919)
* Experimental support for ST75160, TESTING REQUIRED (issue 1642)
5 changes: 4 additions & 1 deletion csrc/u8x8_d_st75160.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
https://github.com/olikraus/u8g2/issues/1642
REQUESTED IN
https://github.com/olikraus/u8g2/issues/1642
STATUS 13 Aug 2022: NOT TESTED, MAY NOT WORK..
0x030 ext 00
Expand Down
2 changes: 1 addition & 1 deletion sys/sdl/2x/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CFLAGS = -g -Wall -I../../../csrc/. `sdl2-config --cflags`
CFLAGS = -g -Wall -Wunused-but-set-variable -I../../../csrc/. `sdl2-config --cflags`

SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c

Expand Down
15 changes: 15 additions & 0 deletions tools/font/bdfconv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,21 @@ CalLite24: bdfconv
./bdfconv -v -f 1 -m '32-79' ./tmp/7_Seg_33x19.bdf -o tmp.c -n u8g2_font_helvB18_tn -d ../bdf/helvB18.bdf
convert bdf.tga out.png

noto: bdfconv
./bdfconv -v -f 1 -m '32-65535,~9939,~10084' NotoEmoji-SemiBold-32.bdf -o u8g2_font_noto_semi_32_t.c -n u8g2_font_noto_semi_32_t -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_32_t.png
./bdfconv -v -f 1 -m '32-127,$$1f300-$$1ffff>$$f300,~127995' NotoEmoji-SemiBold-32.bdf -o u8g2_font_noto_semi_32_t2.c -n u8g2_font_noto_semi_32_t2 -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_32_t2.png
./bdfconv -v -f 1 -m '32-127,$$1f300-$$1f32c>$$f300' NotoEmoji-SemiBold-32.bdf -o u8g2_font_noto_semi_32_t_weather.c -n u8g2_font_noto_semi_32_t_weather -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_32_t_weather.png
./bdfconv -v -f 1 -m '32-127,$$1f600-$$1f64f>$$f600, $$1f910-$$1f92f>$$f910, $$1f970-$$1f97a>$$f970, $$1fae0-$$1fae5>$$fae0' NotoEmoji-SemiBold-32.bdf -o u8g2_font_noto_semi_32_t_emoji.c -n u8g2_font_noto_semi_32_t_emoji -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_32_t_emoji.png
./bdfconv -v -f 1 -m '32-127,$$1f300-$$1f32c>$$f300,~127745,~127746,~127747,~127748,~127749,~127750,~127751' NotoEmoji-SemiBold-48.bdf -o u8g2_font_noto_semi_48_t_weather.c -n u8g2_font_noto_semi_48_t_weather -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_48_t_weather.png
./bdfconv -v -f 1 -m '32-127,$$1f600-$$1f64f>$$f600, $$1f910-$$1f92f>$$f910, $$1f970-$$1f97a>$$f970, $$1fae0-$$1fae5>$$fae0' NotoEmoji-SemiBold-48.bdf -o u8g2_font_noto_semi_48_t_emoji.c -n u8g2_font_noto_semi_48_t_emoji -d ../bdf/helvB18.bdf
convert bdf.tga u8g2_font_noto_semi_48_t_emoji.png


mystery_quest: bdfconv
-../otf2bdf/otf2bdf -a -r 72 -p 24 -o mystery-quest.regular.bdf ../ttf/mystery-quest.regular.ttf
./bdfconv -v -f 1 -m '32-127' mystery-quest.regular.bdf -o u8g2_font_mystery_quest_24_t.c -n u8g2_font_mystery_quest_24_t -d ../bdf/helvB18.bdf
Expand Down

0 comments on commit 84da12a

Please sign in to comment.