summaryrefslogtreecommitdiffstats
path: root/test/test.c
blob: 87e1b214e961a4f55f2e0062a9fd1445a10a6481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#include <stdio.h>
#include "uca.h"

int main(int argc, char *argv[])
{
    struct uca_t *uca = uca_init();
    if (uca == NULL) {
        printf("Couldn't find a camera\n");
        return 1;
    }

    uint32_t width = 2560, height = 2160;

    uca->cam_set_dimensions(uca, &width, &height);

    if (uca->camera_name != NULL)
        printf("Camera name: %s\n", uca->camera_name);

    uca_destroy(uca);
    return 0;
}