2023-09-08 14:17:58 +03:00
|
|
|
|
/*
|
|
|
|
|
|
* ZD24C02A.h
|
|
|
|
|
|
*
|
|
|
|
|
|
* Created on: 8 <EFBFBD><EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|
|
|
|
|
* Author: seklyuts
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_ZD24C02A_H_
|
|
|
|
|
|
#define SRC_ZD24C02A_H_
|
|
|
|
|
|
|
2023-09-12 16:09:57 +03:00
|
|
|
|
#define I2C_SLAVE_ADDRESS 0x51U
|
|
|
|
|
|
#define I2C_OWN_ADDRESS 0x30U
|
2023-09-08 14:17:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
2023-09-12 16:09:57 +03:00
|
|
|
|
void ZD24C02A_write(uint16_t byteCount, uint16_t * Array);
|
|
|
|
|
|
void ZD24C02A_read(uint16_t byteCount, uint16_t * Array);
|
|
|
|
|
|
void ZD24C02A_test(uint16_t * Array);
|
|
|
|
|
|
|
2023-09-08 14:17:58 +03:00
|
|
|
|
#endif /* SRC_ZD24C02A_H_ */
|