Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion FDBGen/src/iTXTech/FlashDetector/FDBGen/MicronDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use iTXTech\SimpleFramework\Util\Config;

class MicronDatabase {
public const MICRON_HEADER = ["NC", "NW", "NY", "NX", "NQ"];
public const MICRON_HEADER = ["NC", "NW", "NY", "NX", "NQ", "NV"];
public const SPECTEK_HEADER = ["PF", "PFA", "PFB", "PFC", "PFD", "PFE", "PFF", "PFG", "PFH"];

public const START_FROM = [
Expand All @@ -37,6 +37,7 @@ class MicronDatabase {
"NY" => 101, // New Micron MP PN
"NQ" => 101, // Legacy Micron MP PN, mostly BGA100
"NX" => 101, // Micron ES PN
"NV" => 101,
];

/** @var Config */
Expand Down
Loading