/Zephyr-latest/samples/subsys/display/cfb/ |
D | README.rst | 1 .. 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/ |
D | ipm_console_sender.c | 20 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()
|
D | jailhouse_debug_console.c | 15 * @brief Output one character to SIMULATOR console 16 * @param c Character to output 17 * @return The character passed as input.
|
D | efi_console.c | 27 * @brief Output one character to EFI console 31 * @param c Character to output 33 * @return The character passed as input.
|
D | ram_console.c | 36 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()
|
D | xtensa_sim_console.c | 14 * @brief Output one character to SIMULATOR console 15 * @param c Character to output 16 * @return The character passed as input.
|
D | rtt_console.c | 36 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/ |
D | printk-hooks.h | 13 * @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/ |
D | README.rst | 4 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/ |
D | gdbstub_backend.h | 32 * @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/ |
D | Kconfig | 7 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/ |
D | shell_wildcard.h | 16 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
|
D | shell_vt100.h | 73 /* 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/ |
D | auxdisplay.h | 57 /** @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/ |
D | uart_ql_usbserialport_s3b.c | 45 * @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.
|
D | uart_native_ptty.c | 126 * @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
|
D | Kconfig.intel_lw | 24 Assert RTS before polling out a character, 25 and deassert RTS after the character is polled out.
|
/Zephyr-latest/dts/bindings/spi/ |
D | nordic,nrf-spis.yaml | 15 Default character. Character clocked out when the slave was not
|
/Zephyr-latest/drivers/auxdisplay/ |
D | auxdisplay_serlcd.c | 52 * 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/ |
D | README.rst | 17 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/ |
D | spdxids.py | 10 Converts a character to an SPDX-ID-safe character. 13 - c: character to test
|
/Zephyr-latest/include/zephyr/display/ |
D | cfb.h | 9 * @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/ |
D | Kconfig | 17 bool "Character by character input and output"
|
/Zephyr-latest/arch/riscv/core/ |
D | userspace.S | 32 add a4, a0, a5 # Determine character address 34 lbu a4, 0(a4) # Load string's character
|
/Zephyr-latest/samples/drivers/lcd_cyclonev_socdk/src/ |
D | commands.h | 30 * [addr] 1 byte Custom character address, 0 – 7 31 * [D0...D7] 8 bytes Custom character pattern bit map 33 * Example: ¿ Character
|