Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
ipm_console_receiver_config_info Struct Reference

#include <ipm_console.h>

Data Fields

char * bind_to
 Name of the low-level IPM driver to bind to.
 
k_thread_stack_tthread_stack
 Stack for the receiver's thread, which prints out messages as they come in.
 
uint32_tring_buf_data
 Ring buffer data area for stashing characters from the interrupt callback.
 
unsigned int rb_size32
 Size of ring_buf_data in 32-bit chunks.
 
char * line_buf
 Line buffer for incoming messages, characters accumulate here and then are sent to printk() once full (including a trailing NULL) or a carriage return seen.
 
unsigned int lb_size
 Size in bytes of the line buffer.
 
unsigned int flags
 Destination for received console messages, one of IPM_CONSOLE_STDOUT or IPM_CONSOLE_PRINTK.
 

Field Documentation

◆ bind_to

char* ipm_console_receiver_config_info::bind_to

Name of the low-level IPM driver to bind to.

◆ flags

unsigned int ipm_console_receiver_config_info::flags

Destination for received console messages, one of IPM_CONSOLE_STDOUT or IPM_CONSOLE_PRINTK.

◆ lb_size

unsigned int ipm_console_receiver_config_info::lb_size

Size in bytes of the line buffer.

Must be at least 2

◆ line_buf

char* ipm_console_receiver_config_info::line_buf

Line buffer for incoming messages, characters accumulate here and then are sent to printk() once full (including a trailing NULL) or a carriage return seen.

◆ rb_size32

unsigned int ipm_console_receiver_config_info::rb_size32

Size of ring_buf_data in 32-bit chunks.

◆ ring_buf_data

uint32_t* ipm_console_receiver_config_info::ring_buf_data

Ring buffer data area for stashing characters from the interrupt callback.

◆ thread_stack

k_thread_stack_t* ipm_console_receiver_config_info::thread_stack

Stack for the receiver's thread, which prints out messages as they come in.

Should be sized CONFIG_IPM_CONSOLE_STACK_SIZE


The documentation for this struct was generated from the following file: