BLE demo for mbed Ported RunningElectronics's SBDBT firmware for BLE. It can communicate with iOS

Dependencies:   FatFileSystem mbed

Fork of BTstack by Norimasa Okamoto

Committer:
todotani
Date:
Wed Feb 20 14:18:38 2013 +0000
Revision:
6:cf06ba884429
Parent:
0:1ed23ab1345f
Change tick timer to 1ms. Change attribute 0xFFF1 as read of DigitalIn p5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:1ed23ab1345f 1 #ifndef MYJPEG_H
va009039 0:1ed23ab1345f 2 #define MYJPEG_H
va009039 0:1ed23ab1345f 3 class myjpeg {
va009039 0:1ed23ab1345f 4 public:
va009039 0:1ed23ab1345f 5 myjpeg(uint8_t* buf, int len, int capacity);
va009039 0:1ed23ab1345f 6 void analytics();
va009039 0:1ed23ab1345f 7 int insertDHT();
va009039 0:1ed23ab1345f 8 int SOS_pos;
va009039 0:1ed23ab1345f 9 int DHT_pos;
va009039 0:1ed23ab1345f 10 private:
va009039 0:1ed23ab1345f 11 int getc();
va009039 0:1ed23ab1345f 12 int getBE16();
va009039 0:1ed23ab1345f 13 uint8_t* m_buf;
va009039 0:1ed23ab1345f 14 int m_len;
va009039 0:1ed23ab1345f 15 int m_pos;
va009039 0:1ed23ab1345f 16 int m_capacity;
va009039 0:1ed23ab1345f 17 };
va009039 0:1ed23ab1345f 18
va009039 0:1ed23ab1345f 19 void QcamCopy(const char* destination, const char* source);
va009039 0:1ed23ab1345f 20
va009039 0:1ed23ab1345f 21 #endif //MYJPEG_H