35 lines
964 B
C++
35 lines
964 B
C++
#include "Model_Config.h"
|
|
#ifdef POW_PD
|
|
#include "BSP.h"
|
|
#include "I2C_Wrapper.hpp"
|
|
#include "Setup.h"
|
|
#include "fusb302b.h"
|
|
#include "fusb_user.h"
|
|
|
|
/*
|
|
* Read multiple bytes from the FUSB302B
|
|
*
|
|
* cfg: The FUSB302B to communicate with
|
|
* addr: The memory address from which to read
|
|
* size: The number of bytes to read
|
|
* buf: The buffer into which data will be read
|
|
*/
|
|
bool fusb_read_buf(uint8_t addr, uint8_t size, uint8_t *buf) { return FRToSI2C::Mem_Read(FUSB302B_ADDR, addr, buf, size); }
|
|
|
|
/*
|
|
* Write multiple bytes to the FUSB302B
|
|
*
|
|
* cfg: The FUSB302B to communicate with
|
|
* addr: The memory address to which we will write
|
|
* size: The number of bytes to write
|
|
* buf: The buffer to write
|
|
*/
|
|
bool fusb_write_buf(uint8_t addr, uint8_t size, const uint8_t *buf) { return FRToSI2C::Mem_Write(FUSB302B_ADDR, addr, (uint8_t *)buf, size); }
|
|
|
|
bool fusb302_detect() {
|
|
// Probe the I2C bus for its address
|
|
return FRToSI2C::probe(FUSB302B_ADDR);
|
|
}
|
|
|
|
#endif
|