CTS-SAT-1-OBC-Firmware
Loading...
Searching...
No Matches
camera_init.h
Go to the documentation of this file.
1#ifndef INCLUDE_GUARD__CAMERA_INIT_H
2#define INCLUDE_GUARD__CAMERA_INIT_H
3
4#include <stdint.h>
5
6uint8_t CAM_change_baudrate(uint32_t bitrate);
7
8uint8_t CAM_setup();
9uint8_t CAM_test();
10
11#endif // INCLUDE_GUARD__CAMERA_INIT_H
uint8_t CAM_test()
Send the 't' test command to the camera, and check if the response is valid.
Definition camera_init.c:127
uint8_t CAM_change_baudrate(uint32_t bitrate)
Changes the baudrate of the camera by sending it a UART command, and then changing the baudrate of th...
Definition camera_init.c:22
uint8_t CAM_setup()
Set up the camera by powering on and changing the baudrate to 230400.
Definition camera_init.c:78