Sony's LANC camera control protocol project.
Dependencies: aconno_LANC aconno_bsp aconno_SEGGER_RTT
Diff: aconnoI2S/aconno_i2s.h
- Revision:
- 9:978106d4b181
diff -r 3375dd304db9 -r 978106d4b181 aconnoI2S/aconno_i2s.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/aconnoI2S/aconno_i2s.h Wed Jul 11 13:53:47 2018 +0000 @@ -0,0 +1,23 @@ + /* + * Made by Jurica Resetar @ aconno + * jurica_resetar@yahoo.com + * More info @ aconno.de + * + * All rights reserved + * + */ + +#ifndef ACONNO_I2S_H +#define ACONNO_I2S_H + +#include "mbed.h" + +class aconno_i2s{ + public: + aconno_i2s(); + void init(uint8_t dataOutPin, uint8_t LrckPin, uint8_t SckPin, uint16_t bufferSize_B, uint8_t *dataPointer); + void sendData(); + private: +}; + +#endif