CTS-SAT-1-OBC-Firmware
Loading...
Searching...
No Matches
log_telecommand_defs.h
Go to the documentation of this file.
1
2#ifndef INCLUDE_GUARD__LOG_TELECOMMAND_DEFS_H__
3#define INCLUDE_GUARD__LOG_TELECOMMAND_DEFS_H__
4
5#include <stdint.h>
7
8uint8_t TCMDEXEC_log_set_sink_enabled_state(const char *args_str,
9 char *response_output_buf, uint16_t response_output_buf_len);
10
12 char *response_output_buf, uint16_t response_output_buf_len);
13
14uint8_t TCMDEXEC_log_report_sink_enabled_state(const char *args_str,
15 char *response_output_buf, uint16_t response_output_buf_len);
16
17uint8_t TCMDEXEC_log_report_all_sink_enabled_states(const char *args_str,
18 char *response_output_buf, uint16_t response_output_buf_len);
19
20uint8_t TCMDEXEC_log_report_system_file_logging_state(const char *args_str,
21 char *response_output_buf, uint16_t response_output_buf_len);
22
24 char *response_output_buf, uint16_t response_output_buf_len);
25
26uint8_t TCMDEXEC_log_set_sink_debugging_messages_state(const char *args_str,
27 char *response_output_buf, uint16_t response_output_buf_len);
28
29uint8_t TCMDEXEC_log_set_system_debugging_messages_state(const char *args_str,
30 char *response_output_buf, uint16_t response_output_buf_len);
31
32uint8_t TCMDEXEC_log_set_system_severity_mask(const char *args_str,
33 char *response_output_buf, uint16_t response_output_buf_len);
34
35uint8_t TCMDEXEC_log_report_n_latest_messages_from_memory(const char *args_str,
36 char *response_output_buf, uint16_t response_output_buf_len);
37
38#endif /* INCLUDE_GUARD__LOG_TELECOMMAND_DEFS_H__ */
uint8_t TCMDEXEC_log_report_sink_enabled_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Report a LOG sink's enabled state.
Definition log_telecommand_defs.c:103
uint8_t TCMDEXEC_log_set_sink_debugging_messages_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Enable or disable debugging messages for LOG sink.
Definition log_telecommand_defs.c:178
uint8_t TCMDEXEC_log_set_system_debugging_messages_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Enable or disable debugging messages for LOG subsystem.
Definition log_telecommand_defs.c:212
uint8_t TCMDEXEC_log_set_sink_enabled_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Set a LOG sink's enabled state.
Definition log_telecommand_defs.c:21
uint8_t TCMDEXEC_log_set_system_severity_mask(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: set the severity levels that a system will log.
Definition log_telecommand_defs.c:270
uint8_t TCMDEXEC_log_report_all_sink_enabled_states(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Report all LOG sink enable states.
Definition log_telecommand_defs.c:124
uint8_t TCMDEXEC_log_report_all_system_file_logging_states(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Report all LOG subsystem file logging states.
Definition log_telecommand_defs.c:161
uint8_t TCMDEXEC_log_set_system_file_logging_enabled_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Set a LOG subsystem's file logging enabled state.
Definition log_telecommand_defs.c:70
uint8_t TCMDEXEC_log_report_system_file_logging_state(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Report LOG subsystem's file logging state (and show logging filename)
Definition log_telecommand_defs.c:140
uint8_t TCMDEXEC_log_report_n_latest_messages_from_memory(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Telecommand: Report the N latest log messages into response_output_buf.
Definition log_telecommand_defs.c:304