We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library does not fully support writing operation. It is important to remember about switching WP (Write Protection) pin before call write function.
_Bool status = false; status = EE24_Init(&eeprom24, &hi2c1, EE24_ADDRESS_DEFAULT); uint8_t data[4] = {0xBE, 0xEF, 0xAB, 0xCD}; HAL_GPIO_WritePin(EEPROM_WP_GPIO_Port, EEPROM_WP_Pin, GPIO_PIN_RESET); status = EE24_Write(&eeprom24, 0u, &data, 4, 1000); HAL_GPIO_WritePin(EEPROM_WP_GPIO_Port, EEPROM_WP_Pin, GPIO_PIN_SET); memset(&data, 0u, sizeof(data)); status = EE24_Read(&eeprom24, 0u, &data, 4, 1000);
The rest of library is ok. Simple and working library. Thanks :D
The text was updated successfully, but these errors were encountered:
Hello. OK. I will add WP pin support soon.
Sorry, something went wrong.
I have updated the LIB. please try again for any devices you have.
No branches or pull requests
Library does not fully support writing operation.
It is important to remember about switching WP (Write Protection) pin before call write function.
The rest of library is ok. Simple and working library.
Thanks :D
The text was updated successfully, but these errors were encountered: