Skip to content
New issue

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

Added support for MB85RS64T (0x04 0x2303) and MR45V064B (0xae 0x8305) #15

Merged
merged 1 commit into from
Jan 15, 2021
Merged

Conversation

MalteP
Copy link
Contributor

@MalteP MalteP commented Jan 14, 2021

I've added the IDs of two low voltage FRAM chips. The ROHM chip uses a slightly different scheme of the RDID command.
Changes are tested with the original Adafruit SPI Non-Volatile FRAM Breakout (Product ID 1897) and both new FRAMs.

@ladyada
Copy link
Member

ladyada commented Jan 14, 2021

@hathach can you verify our existing FRAM still works?

@ladyada ladyada requested a review from hathach January 14, 2021 17:54
Copy link
Member

@hathach hathach left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much, actually most device does not response with continuation code 0x7f in my exp

Serial.print(F("Unexpected Manufacturer ID: 0x"));
Serial.println(manufID, HEX);
return false;
}
if ((prodID != 0x0302) && (prodID != 0x7f7f) && (prodID != 0x4903) &&
(prodID != 0x4803) && (prodID != 0x0101)) {
(prodID != 0x4803) && (prodID != 0x0101) && (prodID != 0x2303) &&
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we better move this to device lookup table, but it is scope of next PR.

@hathach hathach merged commit e41ed9f into adafruit:master Jan 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants