External EEPROM not working
I have a 24FC01, 1 Kbit EEPROM on my board. The SDA and SCL lines are pulled up to 3.3V through two 2K resistors. I'm using a STM32F407 MCU to read and write data to the EEPROM. Using the HAL libraries, I'm trying to check if the device is ready using
HAL_I2C_IsDeviceReady(&i2c2, 0x50, 2, 100) function. However, this fails, returns false and triggers a hard fault. The I2C is configured in CubeMX with 100KHz clock speed and 7-bit addressing. What am I missing?
