Sony's LANC camera control protocol project.
Dependencies: aconno_LANC aconno_bsp aconno_SEGGER_RTT
aconnoI2S/aconno_i2s.h
- Committer:
- jurica238814
- Date:
- 2018-08-28
- Revision:
- 12:69dbd9ef58e8
- Parent:
- 9:978106d4b181
File content as of revision 12:69dbd9ef58e8:
/* * 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