Add sample systemd file

This commit is contained in:
Kamil Trzcinski
2022-04-11 17:53:06 +02:00
parent 0ff48e449e
commit 2fb7a53122
4 changed files with 31 additions and 32 deletions

View File

@ -41,7 +41,7 @@ camera_options_t camera_options = {
};
http_server_options_t http_options = {
.port = 9092,
.port = 8080,
.maxcons = 10
};

View File

@ -1,30 +0,0 @@
#include "opts/opts.h"
#include "opts/log.h"
#include "opts/fourcc.h"
#include "device/camera/camera.h"
log_options_t log_options = {
.debug = true,
.verbose = false
};
int main(int argc, char *argv[])
{
device_t *dev = NULL;
dev = device_libcamera_open("CAMERA", "/base/soc/i2c0mux/i2c@1/imx519@1a");
if (!dev) {
printf("Failed to open libcamera\n");
return -1;
}
if (device_open_buffer_list(dev, true, 2328, 1748, V4L2_PIX_FMT_VYUY, 0, 4, true) < 0) {
printf("Failed to open buffer list\n");
return -1;
}
printf("Opened libcamera\n");
device_close(dev);
return 0;
}