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
读写状态是否缺少锁, 公开对外的接口,未见加锁操作
/** * read flash register status * * @param flash flash device * @param status register status * * @return result */ sfud_err sfud_read_status(const sfud_flash *flash, uint8_t *status) { uint8_t cmd = SFUD_CMD_READ_STATUS_REGISTER; SFUD_ASSERT(flash); SFUD_ASSERT(status); return flash->spi.wr(&flash->spi, &cmd, 1, status, 1); } /** * write status register * * @param flash flash device * @param is_volatile true: volatile mode, false: non-volatile mode * @param status register status * * @return result */ sfud_err sfud_write_status(const sfud_flash *flash, bool is_volatile, uint8_t status) { sfud_err result = SFUD_SUCCESS; const sfud_spi *spi = &flash->spi; uint8_t cmd_data[2]; SFUD_ASSERT(flash); if (is_volatile) { cmd_data[0] = SFUD_VOLATILE_SR_WRITE_ENABLE; result = spi->wr(spi, cmd_data, 1, NULL, 0); } else { result = set_write_enabled(flash, true); } if (result == SFUD_SUCCESS) { cmd_data[0] = SFUD_CMD_WRITE_STATUS_REGISTER; cmd_data[1] = status; result = spi->wr(spi, cmd_data, 2, NULL, 0); } if (result != SFUD_SUCCESS) { SFUD_INFO("Error: Write_status register failed."); } return result; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
读写状态是否缺少锁, 公开对外的接口,未见加锁操作
The text was updated successfully, but these errors were encountered: