Skip to content

Commit

Permalink
fdb: version 37 (SKHynix25 optimizations)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeratX committed Oct 22, 2019
1 parent db87b5c commit 76e9cfe
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 29 deletions.
37 changes: 10 additions & 27 deletions FlashDetector/resources/fdb.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"info": {
"name": "iTXTech FlashDetector Flash Database",
"version": "36",
"version": "37",
"website": "https:\/\/github.com\/iTXTech\/FlashDetector",
"time": "Tue, 15 Oct 2019 05:28:54 +0000",
"time": "Tue, 22 Oct 2019 04:44:29 +0000",
"controllers": [
"SM321AC",
"SM321BB",
Expand Down Expand Up @@ -14056,7 +14056,7 @@
"AU6989SN-GTE"
]
},
"H25QFT8A1A8R": {
"H25QFT8A1A": {
"id": [
"AD5E28221090",
"AD5E283300A0",
Expand All @@ -14066,9 +14066,11 @@
"c": "TLC",
"t": [
"SM3268AB",
"SM3271AB",
"SM3281AB",
"SM3281BB",
"SM2258XT",
"SM2258",
"AU6989SN-GTC",
"AU6989SN-GTD",
"AU6989SN-GTE",
Expand All @@ -14086,17 +14088,7 @@
"SM3281BB"
]
},
"H25QFT8A1A": {
"id": [
"AD5E28221090"
],
"l": "3DV4",
"t": [
"SM3271AB",
"CBM2199"
]
},
"H25BFT8B3M8R": {
"H25BFT8B3M": {
"id": [
"AD5E283300A0"
],
Expand All @@ -14105,7 +14097,7 @@
"SM3271AB"
]
},
"H25BFT8A1M8R": {
"H25BFT8A1M": {
"id": [
"AD5E283300A0"
],
Expand Down Expand Up @@ -14825,7 +14817,7 @@
"SM2258"
]
},
"H25QFTMF4A9R": {
"H25QFTMF4A": {
"id": [
"AD5E29221090"
],
Expand Down Expand Up @@ -14899,15 +14891,6 @@
"CBM2199"
]
},
"H25QFT8A1ADA": {
"id": [
"AD5E28221090"
],
"t": [
"SM2258",
"CBM2199"
]
},
"H27Q2T8QPM": {
"id": [
"AD5C29BA0080"
Expand Down Expand Up @@ -15397,7 +15380,7 @@
"AU6989SN-GTE"
]
},
"H25QFT8B3A8R": {
"H25QFT8B3A": {
"l": "3D V4",
"c": "TLC",
"t": [
Expand All @@ -15406,7 +15389,7 @@
"AU6989SN-GTE"
]
},
"H25QFT8D4A8R": {
"H25QFT8D4A": {
"l": "3D V4",
"c": "TLC",
"t": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public static function getFlashInfoFromFdb(FlashInfo $info) : ?PartNumber{
}

public static function removePackage(string $pn) : string{
if(StringUtil::startsWith($pn, "H27") and strlen($pn) == 12){
if(strlen($pn) == 12 and (StringUtil::startsWith($pn, "H27") or StringUtil::startsWith($pn, "H25"))){
$pn = substr($pn, 0, 10);
}
return $pn;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

namespace iTXTech\FlashDetector\Decoder;


use iTXTech\FlashDetector\Constants;
use iTXTech\FlashDetector\FlashInfo;
use iTXTech\FlashDetector\Property\FlashInterface;
Expand Down

0 comments on commit 76e9cfe

Please sign in to comment.