1
0
Fork 0
forked from len0rd/rockbox

nwztools: add NW-ZX300A

Change-Id: I8b311ed6b48b92b9ecf4fb25c19119cfb2d5beb1
This commit is contained in:
Amaury Pouly 2017-10-24 11:45:51 +01:00
parent a644489ccf
commit 2ae792c2f5
4 changed files with 6 additions and 4 deletions

View file

@ -210,6 +210,7 @@ struct nwz_model_info_t nwz_model[NWZ_MODEL_COUNT] =
{ 0x22000004, "NW-A35" }, { 0x22000004, "NW-A35" },
{ 0x22000005, "NW-A36" }, { 0x22000005, "NW-A36" },
{ 0x22000006, "NW-A37" }, { 0x22000006, "NW-A37" },
{ 0x23000004, "NW-ZX300A" },
{ 0x23000006, "NW-ZX300" }, { 0x23000006, "NW-ZX300" },
{ 0x24000006, "NW-A47" }, { 0x24000006, "NW-A47" },
}; };
@ -1439,7 +1440,7 @@ static unsigned long models_nwz_x1000[] = { 0x5000002, 0x5000004, 0x5000005,
static unsigned long models_nw_zx100[] = { 0x1c000007, 0x1c000001, 0x1c000002, static unsigned long models_nw_zx100[] = { 0x1c000007, 0x1c000001, 0x1c000002,
0x1c000004, 0x1c000005, 0x1c000006 }; 0x1c000004, 0x1c000005, 0x1c000006 };
static unsigned long models_nw_zx300[] = { 0x23000006 }; static unsigned long models_nw_zx300[] = { 0x23000004, 0x23000006 };
static unsigned long models_nwz_noname[] = { 0x5010002, 0x5010004, 0x5010005 }; static unsigned long models_nwz_noname[] = { 0x5010002, 0x5010004, 0x5010005 };
@ -1481,6 +1482,6 @@ struct nwz_series_info_t nwz_series[NWZ_SERIES_COUNT] =
{ "nw-wm1", "NW-WM1 Series", 2, models_nw_wm1, &nvp_index_398250 }, { "nw-wm1", "NW-WM1 Series", 2, models_nw_wm1, &nvp_index_398250 },
{ "nwz-x1000", "NWZ-X1000 Series", 9, models_nwz_x1000, &nvp_index_4edba7 }, { "nwz-x1000", "NWZ-X1000 Series", 9, models_nwz_x1000, &nvp_index_4edba7 },
{ "nw-zx100", "NW-ZX100 Series", 6, models_nw_zx100, &nvp_index_92faee }, { "nw-zx100", "NW-ZX100 Series", 6, models_nw_zx100, &nvp_index_92faee },
{ "nw-zx300", "NW-ZX300 Series", 1, models_nw_zx300, &nvp_index_139d65 }, { "nw-zx300", "NW-ZX300 Series", 2, models_nw_zx300, &nvp_index_139d65 },
{ "nwz-noname", "NONAME", 3, models_nwz_noname, 0 }, { "nwz-noname", "NONAME", 3, models_nwz_noname, 0 },
}; };

View file

@ -152,7 +152,7 @@ enum nwz_nvp_node_t
/* Invalid NVP index */ /* Invalid NVP index */
#define NWZ_NVP_INVALID -1 /* Non-existent entry */ #define NWZ_NVP_INVALID -1 /* Non-existent entry */
/* Number of models */ /* Number of models */
#define NWZ_MODEL_COUNT 188 #define NWZ_MODEL_COUNT 189
/* Number of series */ /* Number of series */
#define NWZ_SERIES_COUNT 38 #define NWZ_SERIES_COUNT 38

View file

@ -184,5 +184,6 @@
0x22000004,NW-A35 0x22000004,NW-A35
0x22000005,NW-A36 0x22000005,NW-A36
0x22000006,NW-A37 0x22000006,NW-A37
0x23000004,NW-ZX300A
0x23000006,NW-ZX300 0x23000006,NW-ZX300
0x24000006,NW-A47 0x24000006,NW-A47

View file

@ -34,5 +34,5 @@ nw-s780,NW-S780 Series,0x19000001,0x19000002,0x19000004,0x19000005
nw-wm1,NW-WM1 Series,0x20000007,0x21000008 nw-wm1,NW-WM1 Series,0x20000007,0x21000008
nwz-x1000,NWZ-X1000 Series,0x5000002,0x5000004,0x5000005,0x5020002,0x5040002,0x5020004,0x5040004,0x5020005,0x5040005 nwz-x1000,NWZ-X1000 Series,0x5000002,0x5000004,0x5000005,0x5020002,0x5040002,0x5020004,0x5040004,0x5020005,0x5040005
nw-zx100,NW-ZX100 Series,0x1c000007,0x1c000001,0x1c000002,0x1c000004,0x1c000005,0x1c000006 nw-zx100,NW-ZX100 Series,0x1c000007,0x1c000001,0x1c000002,0x1c000004,0x1c000005,0x1c000006
nw-zx300,NW-ZX300 Series,0x23000006 nw-zx300,NW-ZX300 Series,0x23000004,0x23000006
nwz-noname,NONAME,0x5010002,0x5010004,0x5010005 nwz-noname,NONAME,0x5010002,0x5010004,0x5010005