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_all_sink_enabled_states(const char *args_str,
15 char *response_output_buf, uint16_t response_output_buf_len);
16
18 char *response_output_buf, uint16_t response_output_buf_len);
19
20uint8_t TCMDEXEC_log_set_sink_debugging_messages_state(const char *args_str,
21 char *response_output_buf, uint16_t response_output_buf_len);
22
23uint8_t TCMDEXEC_log_set_system_debugging_messages_state(const char *args_str,
24 char *response_output_buf, uint16_t response_output_buf_len);
25
26uint8_t TCMDEXEC_log_set_system_severity_mask(const char *args_str,
27 char *response_output_buf, uint16_t response_output_buf_len);
28
29uint8_t TCMDEXEC_log_report_n_latest_messages_from_memory(const char *args_str,
30 char *response_output_buf, uint16_t response_output_buf_len);
31
32#endif /* INCLUDE_GUARD__LOG_TELECOMMAND_DEFS_H__ */
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:134
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:168
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:226
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:102
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:117
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_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:260