33#ifndef LOG_SYSTEM_DOT_H
34#define LOG_SYSTEM_DOT_H
71 const char *p_system_tag;
void log_message_with_32bit_unsigned_val(log_system_config_t *p_config, log_type_t level, const char *msg, uint32_t val, format_type_t format)
Sends a string, followed by a 32 bit value.
void log_message_with_8bit_unsigned_val(log_system_config_t *p_config, log_type_t level, const char *msg, uint8_t val, format_type_t format)
Sends a string, followed by an 8 bit unsigned value.
void log_message_with_16bit_unsigned_val(log_system_config_t *p_config, log_type_t level, const char *msg, uint16_t val, format_type_t format)
Sends a string, followed by a 16 bit value.
name
Enumerated constants to specify the output format of numerical values.
void log_message_with_32bit_signed_val(log_system_config_t *p_config, log_type_t level, const char *msg, int32_t val, format_type_t format)
Sends a string, followed by a 32 bit value.
void log_message_with_16bit_signed_val(log_system_config_t *p_config, log_type_t level, const char *msg, int16_t val, format_type_t format)
Sends a string, followed by a 16 bit value.
enum name format_type_t
Enumerated constants to specify the output format of numerical values.
void log_message_with_8bit_signed_val(log_system_config_t *p_config, log_type_t level, const char *msg, int8_t val, format_type_t format)
Sends a string, followed by an 8 bit value.
void log_message_with_64bit_unsigned_dec_val(log_system_config_t *p_config, log_type_t level, const char *msg, uint64_t val, format_type_t format)
Sends a string, followed by a 64 bit value.
Config object, to be instantiated in each file the log system is to be used, then pass it's address i...