20 lines
380 B
C
20 lines
380 B
C
/*
|
|
* ZD24C02A.h
|
|
*
|
|
* Created on: 8 ñåíò. 2023 ã.
|
|
* Author: seklyuts
|
|
*/
|
|
|
|
#ifndef SRC_ZD24C02A_H_
|
|
#define SRC_ZD24C02A_H_
|
|
|
|
#define I2C_SLAVE_ADDRESS 0x51U
|
|
#define I2C_OWN_ADDRESS 0x30U
|
|
|
|
|
|
void ZD24C02A_write(uint16_t byteCount, uint16_t * Array);
|
|
void ZD24C02A_read(uint16_t byteCount, uint16_t * Array);
|
|
void ZD24C02A_test(uint16_t * Array);
|
|
|
|
#endif /* SRC_ZD24C02A_H_ */
|