SD_HAL_AT24
SD_HAL_AT24 copied to clipboard
This library is based on I2C HAL Drivers of STM32 for AT24 EEPROM
Results
1
SD_HAL_AT24 issues
Sort by
recently updated
recently updated
newest added
I'm using STMF1 with your library My init function ``` static void MX_I2C1_Init(void) { hi2c1.Instance = I2C1; hi2c1.Init.ClockSpeed = 400000; hi2c1.Init.DutyCycle = I2C_DUTYCYCLE_2; hi2c1.Init.OwnAddress1 = 0; hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; hi2c1.Init.DualAddressMode...