1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef _PCITOOL_PCI_H
#define _PCITOOL_PCI_H
#define PCILIB_REGISTER_TIMEOUT 10000 /**< us */
#include "driver/pciDriver.h"
#include "pcilib.h"
const pci_board_info *pcilib_get_board_info(pcilib_t *ctx);
#ifdef _PCILIB_PCI_C
# include "ipecamera.h"
# include "default.h"
pcilib_model_description_t pcilib_model[3] = {
{ NULL, NULL, NULL },
{ NULL, NULL, NULL },
{ ipecamera_registers, ipecamera_register_banks, ipecamera_register_ranges }
};
pcilib_protocol_description_t pcilib_protocol[3] = {
{ pcilib_default_read, pcilib_default_write },
{ ipecamera_read, ipecamera_write },
{ NULL, NULL }
};
#else
extern void (*pcilib_error)(const char *msg, ...);
extern void (*pcilib_warning)(const char *msg, ...);
extern pcilib_protocol_description_t pcilib_protocol[];
#endif /* _PCILIB_PCI_C */
#endif /* _PCITOOL_PCI_H */
|