Loggy_McLogger/Core/Inc/IS66.h
2024-06-24 20:13:52 -05:00

26 lines
574 B
C

/**
*********************************************************************
*
* @file IS66.h
* @brief IS66 external SPI RAM driver header
*
* @date 2024-04-20 14:18:36
* @author CT
*
* @details
*
*************************************************************************
**/
#ifndef INC_IS66_H_
#define INC_IS66_H_
uint32_t IS66_init(SPI_HandleTypeDef* hspi);
uint32_t IS66_Read(uint32_t addr);
uint32_t IS66_Write(uint32_t addr, uint32_t data);
void IS66_Deep_Power_Down(void);
void IS66_Exit_Deep_Power_Down(void);
void IS66_Reset(void);
#endif /* INC_IS66_H_ */