This website works better with JavaScript.
Home
Explore
Help
Sign In
visus
/
teensy-serial-flash
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
add Adesto AT25SF128A
main
Frank
4 years ago
parent
c90ca7beb0
commit
a1998a302a
No account linked to committer's email address
1 changed files
with
6 additions
and
0 deletions
Split View
Show Diff Stats
+6
-0
examples/RawHardwareTest/RawHardwareTest.ino
+ 6
- 0
examples/RawHardwareTest/RawHardwareTest.ino
View File
@@ -438,6 +438,12 @@ const char * id2chip(const unsigned char *id)
if (id[2] == 0x43) return "SST26VF064";
}
}
if (id[0] == 0x1F) {
// Adesto
if (id[1] == 0x89) {
if (id[2] == 0x01) return "AT25SF128A";
}
}
return "(unknown chip)";
}
Write
Preview
Loading…
Cancel
Save