Home
last modified time | relevance | path

Searched full:character (Results 1 – 25 of 261) sorted by relevance

1234567891011

/Zephyr-latest/samples/subsys/display/cfb/
DREADME.rst1 .. zephyr:code-sample:: character-frame-buffer
2 :name: Character frame buffer
5 Display character strings using the Character Frame Buffer (CFB).
10 This sample displays character strings using the Character Frame Buffer
/Zephyr-latest/drivers/console/
Dipm_console_sender.c20 static int console_out(int character) in console_out() argument
22 if (character == '\r') { in console_out()
23 return character; in console_out()
27 * We just stash the character into the id field and don't supply in console_out()
30 ipm_send(ipm_console_device, 1, character, NULL, 0); in console_out()
32 return character; in console_out()
Djailhouse_debug_console.c15 * @brief Output one character to SIMULATOR console
16 * @param c Character to output
17 * @return The character passed as input.
Defi_console.c27 * @brief Output one character to EFI console
31 * @param c Character to output
33 * @return The character passed as input.
Dram_console.c36 static int ram_console_out(int character) in ram_console_out() argument
38 ram_console[pos] = (char)character; in ram_console_out()
41 return character; in ram_console_out()
Dxtensa_sim_console.c14 * @brief Output one character to SIMULATOR console
15 * @param c Character to output
16 * @return The character passed as input.
Drtt_console.c36 static int rtt_console_out(int character) in rtt_console_out() argument
38 char c = (char)character; in rtt_console_out()
75 return character; in rtt_console_out()
/Zephyr-latest/include/zephyr/sys/
Dprintk-hooks.h13 * @param c Character to output
15 * @returns The character passed as input.
20 * @brief Install the character output routine for printk
23 * routine that outputs one ASCII character at a time.
29 * @brief Get the current character output routine for printk
/Zephyr-latest/samples/subsys/console/getchar/
DREADME.rst4 Use console_getchar() to read an input character from the console.
12 character or blocks waiting for one. Using this function, it should be
14 process console input character by character. The sample also allows to
15 see key/character codes as returned by the function.
40 hex values and in character form. Be sure to press Enter, Up/Down, etc.
/Zephyr-latest/subsys/debug/gdbstub/
Dgdbstub_backend.h32 * @brief Output a character
34 * @param ch Character to send
39 * @brief Receive a character
42 * character to return.
44 * @return A character
/Zephyr-latest/subsys/fb/
DKconfig7 bool "Character framebuffer for dot matrix displays"
9 Character framebuffer for dot matrix displays.
20 bool "Character Framebuffer shell"
32 Character Framebuffer Display Driver Name
/Zephyr-latest/subsys/shell/
Dshell_wildcard.h16 SHELL_WILDCARD_NOT_FOUND /* wildcard character not found */
25 /* Function returns true if string contains wildcard character: '?' or '*'
29 * @retval true wildcard character found
30 * @retval false wildcard character not found
Dshell_vt100.h73 /* Set United Kingdom G0 character set */
75 /* Set United Kingdom G1 character set */
77 /* Set United States G0 character set */
79 /* Set United States G1 character set */
85 /* Set G0 alternate character ROM */
87 /* Set G1 alternate character ROM */
97 /* Turn off character attributes */
99 /* Turn off character attributes */
/Zephyr-latest/include/zephyr/drivers/
Dauxdisplay.h57 /** @brief Used for setting character append position */
59 /** Each character will be placed to the right of existing characters */
62 /** Each character will be placed to the left of existing characters */
81 /** Number of character columns */
84 /** Number of character rows */
99 /** Width (in pixels) of a custom character, supplied custom characters should match. */
102 /** Height (in pixels) of a custom character, supplied custom characters should match. */
118 /** @brief Structure for a custom character. */
120 /** Custom character index on the display */
123 /** Custom character pixel data, a character must be valid for a display consisting
[all …]
/Zephyr-latest/drivers/serial/
Duart_ql_usbserialport_s3b.c45 * @brief Output a character in polled mode.
50 * @param c Character to send
65 * @param c Pointer to character
67 * @return 0 if a character arrived, -1 if the input buffer if empty.
Duart_native_ptty.c126 * @brief Output a character towards the serial port
129 * @param out_char Character to send.
160 * @param p_char Pointer to character.
162 * @retval 0 If a character arrived and was stored in p_char
163 * @retval -1 If no character was available to read
188 * @param p_char Pointer to character.
190 * @retval 0 If a character arrived and was stored in p_char
191 * @retval -1 If no character was available to read
DKconfig.intel_lw24 Assert RTS before polling out a character,
25 and deassert RTS after the character is polled out.
/Zephyr-latest/dts/bindings/spi/
Dnordic,nrf-spis.yaml15 Default character. Character clocked out when the slave was not
/Zephyr-latest/drivers/auxdisplay/
Dauxdisplay_serlcd.c52 * bitmask for custom character detection
273 struct auxdisplay_character *character) in auxdisplay_serlcd_custom_character_set() argument
281 const uint8_t char_index = character->index; in auxdisplay_serlcd_custom_character_set()
290 character->character_code = SERLCD_CUSTOM_CHAR_INDEX_BASE | char_index; in auxdisplay_serlcd_custom_character_set()
298 * the display expects the custom character as 8 lines of 5 bit each, shades are not in auxdisplay_serlcd_custom_character_set()
305 if (character->data[(l * 5) + i]) { in auxdisplay_serlcd_custom_character_set()
343 uint8_t character = text[i]; in auxdisplay_serlcd_write() local
348 if ((character & SERLCD_CUSTOM_CHAR_BITMASK) == SERLCD_CUSTOM_CHAR_INDEX_BASE) { in auxdisplay_serlcd_write()
350 (character & ~SERLCD_CUSTOM_CHAR_BITMASK); in auxdisplay_serlcd_write()
357 } else if (character == SERLCD_BEGIN_COMMAND || in auxdisplay_serlcd_write()
[all …]
/Zephyr-latest/samples/subsys/console/getline/
DREADME.rst17 If you are interested in character by character console input, see
40 will be printed back, with a hex code of the last character, to show that
/Zephyr-latest/scripts/west_commands/zspdx/
Dspdxids.py10 Converts a character to an SPDX-ID-safe character.
13 - c: character to test
/Zephyr-latest/include/zephyr/display/
Dcfb.h9 * @brief Public Monochrome Character Framebuffer API
24 * @brief Public Monochrome Character Framebuffer API
25 * @defgroup monochrome_character_framebuffer Monochrome Character Framebuffer
66 * @param _fc Character mapped to first font element.
67 * @param _lc Character mapped to last font element.
236 * @brief Initialize Character Framebuffer.
245 * @brief Deinitialize Character Framebuffer.
/Zephyr-latest/subsys/console/
DKconfig17 bool "Character by character input and output"
/Zephyr-latest/arch/riscv/core/
Duserspace.S32 add a4, a0, a5 # Determine character address
34 lbu a4, 0(a4) # Load string's character
/Zephyr-latest/samples/drivers/lcd_cyclonev_socdk/src/
Dcommands.h30 * [addr] 1 byte Custom character address, 0 – 7
31 * [D0...D7] 8 bytes Custom character pattern bit map
33 * Example: ¿ Character

1234567891011