CTS-SAT-1-OBC-Firmware
Loading...
Searching...
No Matches
camera_telecommand_defs.h
Go to the documentation of this file.
1#ifndef INCLUDE_GUARD__CAMERA_TELECOMMAND_DEFS_H
2#define INCLUDE_GUARD__CAMERA_TELECOMMAND_DEFS_H
3
4#include <stdint.h>
6
7
9 const char *args_str,
10 char *response_output_buf, uint16_t response_output_buf_len
11);
12
14 const char *args_str,
15 char *response_output_buf, uint16_t response_output_buf_len
16);
17
19 const char *args_str,
20 char *response_output_buf, uint16_t response_output_buf_len
21);
22
23uint8_t TCMDEXEC_camera_capture(const char *args_str,
24 char *response_output_buf, uint16_t response_output_buf_len
25);
26
27
28#endif // INCLUDE_GUARD__CAMERA_TELECOMMAND_DEFS_H
uint8_t TCMDEXEC_camera_change_baud_rate(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Debugging only. Set the baud rate of the camera to the specified value. Use camera_setup normally.
Definition camera_telecommand_defs.c:66
uint8_t TCMDEXEC_camera_capture(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Send telecommand to camera and capture an image. RUN CAM_SETUP BEFORE THIS EVERY TIME!
Definition camera_telecommand_defs.c:99
uint8_t TCMDEXEC_camera_test(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Send the 't' test command to the camera, and check if the response is valid.
Definition camera_telecommand_defs.c:42
uint8_t TCMDEXEC_camera_setup(const char *args_str, char *response_output_buf, uint16_t response_output_buf_len)
Set up the camera by powering on and changing the baudrate to 230400.
Definition camera_telecommand_defs.c:17