usb_uvc.h 249 B

1234567891011
  1. #ifndef __USB_UVC_H
  2. #define __USB_UVC_H
  3. int usb_uvc_scan(void);
  4. void usb_uvc_disconnect(void);
  5. int usb_uvc_init(void);
  6. int uvc_start(void);
  7. int uvc_stop(void);
  8. int uvc_set_disp_size(int width, int height);
  9. int uvc_set_disp_pos(int x, int y);
  10. #endif