Home
last modified time | relevance | path

Searched refs:console_getchar (Results 1 – 12 of 12) sorted by relevance

/Zephyr-latest/samples/subsys/console/getchar/
DREADME.rst1 .. zephyr:code-sample:: console_getchar
2 :name: console_getchar()
4 Use console_getchar() to read an input character from the console.
9 This example shows how to use :c:func:`console_getchar` function.
11 :c:func:`console_getchar` either returns the next available input
/Zephyr-latest/samples/subsys/console/getchar/src/
Dmain.c18 uint8_t c = console_getchar(); in main()
/Zephyr-latest/samples/subsys/console/echo/src/
Dmain.c20 uint8_t c = console_getchar(); in main()
/Zephyr-latest/include/zephyr/console/
Dconsole.h75 int console_getchar(void);
/Zephyr-latest/subsys/console/
DKconfig30 int "console_getchar() buffer size"
33 Buffer size for console_getchar(). The default is optimized
Dgetchar.c37 int console_getchar(void) in console_getchar() function
/Zephyr-latest/samples/subsys/console/echo/
DREADME.rst10 This example shows how the :c:func:`console_getchar` and
24 :zephyr:code-sample:`console_getchar`.
/Zephyr-latest/samples/boards/nxp/mimxrt1170_evk_cm7/magic_addr/src/
Dmain.c47 tmp = console_getchar(); in main()
/Zephyr-latest/samples/bluetooth/iso_broadcast_benchmark/src/
Dmain.c32 role = tolower(console_getchar()); in device_role_select()
Dbroadcaster.c122 char c = tolower(console_getchar()); in get_chars()
805 c = tolower(console_getchar()); in test_run_broadcaster()
851 c = tolower(console_getchar()); in test_run_broadcaster()
/Zephyr-latest/samples/bluetooth/iso_connected_benchmark/src/
Dmain.c161 role_char = tolower(console_getchar()); in device_role_select()
521 char c = tolower(console_getchar()); in get_chars()
973 c = tolower(console_getchar()); in change_central_settings()
992 c = tolower(console_getchar()); in change_central_settings()
995 c = tolower(console_getchar()); in change_central_settings()
1016 c = tolower(console_getchar()); in change_central_settings()
1019 c = tolower(console_getchar()); in change_central_settings()
1032 c = tolower(console_getchar()); in change_central_settings()
1218 c = tolower(console_getchar()); in run_central()
/Zephyr-latest/samples/subsys/console/getline/
DREADME.rst18 :zephyr:code-sample:`console_getchar`.