データのサイズが4800で制限されているようだったので、 /uvchost/uvc/uvc.cpp内の int uvc::get_jpeg(const char* path) const int size = 9600; に変更。
Fork of uvchost by
uvc/uvcsub.cpp
- Committer:
- Dromar
- Date:
- 2013-02-10
- Revision:
- 4:97438d526ad3
- Parent:
- 0:b0f04c137829
File content as of revision 4:97438d526ad3:
#include "mbed.h" #include "uvc.h" void uvc::wait(float s) { Timer t; t.start(); while(t.read() < s) { poll(); } } void uvc::wait_ms(int ms) { Timer t; t.start(); while(t.read_ms() < ms) { poll(); } }