This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new d12e2778a5 Adds device descriptor for the MB5RS2MTA 256KB FRAM part
d12e2778a5 is described below

commit d12e2778a532fd81c1706f93c23f2a2cfaf71b01
Author: Charles Cross <char...@missionrobotics.us>
AuthorDate: Thu Jun 16 15:04:26 2022 -0700

    Adds device descriptor for the MB5RS2MTA 256KB FRAM part
---
 drivers/mtd/ramtron.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/mtd/ramtron.c b/drivers/mtd/ramtron.c
index 0243aaead9..fbdff6245d 100644
--- a/drivers/mtd/ramtron.c
+++ b/drivers/mtd/ramtron.c
@@ -297,6 +297,18 @@ static const struct ramtron_parts_s g_ramtron_parts[] =
 #ifdef CONFIG_RAMTRON_CHUNKING
     , false,                      /* chunked */
     RAMTRON_EMULATE_PAGE_SIZE     /* chunksize */
+#endif
+  },
+  {
+    "MB85RS2MT",                  /* name */
+    0x48,                         /* id1 */
+    0x03,                         /* id2 */
+    256L * 1024L,                 /* size */
+    3,                            /* addr_len */
+    25000000                      /* speed */
+#ifdef CONFIG_RAMTRON_CHUNKING
+    , false,                      /* chunked */
+    RAMTRON_EMULATE_PAGE_SIZE     /* chunksize */
 #endif
   },
   {

Reply via email to