Home
last modified time | relevance | path

Searched refs:cfb_print (Results 1 – 7 of 7) sorted by relevance

/Zephyr-Core-3.7.0/tests/subsys/display/cfb/basic/src/
Dprint_rectspace1016.c69 zassert_ok(cfb_print(dev, " ", 0, 0)); in ZTEST()
77 zassert_ok(cfb_print(dev, " ", 1, 1)); in ZTEST()
88 zassert_ok(cfb_print(dev, " ", 9, 15)); in ZTEST()
96 zassert_ok(cfb_print(dev, " ", 10, 16)); in ZTEST()
104 zassert_ok(cfb_print(dev, " ", 11, 17)); in ZTEST()
116 zassert_ok(cfb_print(dev, " ", 0, 0)); in ZTEST()
125 zassert_ok(cfb_print(dev, " ", 1, 1)); in ZTEST()
134 zassert_ok(cfb_print(dev, " ", 9, 15)); in ZTEST()
143 zassert_ok(cfb_print(dev, " ", 10, 16)); in ZTEST()
152 zassert_ok(cfb_print(dev, " ", 11, 17)); in ZTEST()
[all …]
/Zephyr-Core-3.7.0/samples/subsys/display/cfb_custom_font/src/
Dmain.c45 err = cfb_print(display, "123456", 0, 0); in main()
/Zephyr-Core-3.7.0/samples/subsys/display/cfb/src/
Dmain.c74 if (cfb_print(dev, in main()
/Zephyr-Core-3.7.0/include/zephyr/display/
Dcfb.h89 int cfb_print(const struct device *dev, const char *const str, uint16_t x, uint16_t y);
/Zephyr-Core-3.7.0/samples/boards/reel_board/mesh_badge/src/
Dreel_board.c95 if (cfb_print(epd_dev, line, font_width * pad, font_height * row)) { in print_line()
/Zephyr-Core-3.7.0/subsys/fb/
Dcfb.c332 int cfb_print(const struct device *dev, const char *const str, uint16_t x, uint16_t y) in cfb_print() function
Dcfb_shell.c78 err = cfb_print(dev, str, col, row * ppt); in cmd_cfb_print()