JBBoardに接続したモーター2つをRCBControllerでコントロールするテストです。

Dependencies:   FatFileSystem TB6612FNG2 mbed

Fork of BTstackLE by Ken Todotani

uvc/myjpeg.h

Committer:
jksoft
Date:
2014-05-12
Revision:
7:3ed1e36587d4
Parent:
0:1ed23ab1345f

File content as of revision 7:3ed1e36587d4:

#ifndef MYJPEG_H
#define MYJPEG_H
class myjpeg {
public:
    myjpeg(uint8_t* buf, int len, int capacity);
    void analytics();
    int insertDHT();
    int SOS_pos;
    int DHT_pos;
private:
    int getc();
    int getBE16();
    uint8_t* m_buf;
    int m_len;
    int m_pos;
    int m_capacity;
};

void QcamCopy(const char* destination, const char* source);

#endif //MYJPEG_H