How to judge the Production time&batch according to the code? - Defy General

I know someone come across the earpiece problem.
https://supportforums.motorola.com/community/non-us/motoblur-android/defy_non_us?view=all
Is it just the batch problem?
How to judge the Production time&batch according to the code?
For example
TA7200202P stC OTU B09
SJUG6083AA 0101 Made in China
or other code?
anyone knows?
Thanks in advance.

Here's the info from my USA/T-Mo phone which has been flawless, so far. I've had it since Nov. 5. This came from the "About phone" menu under settings. The Built number may be the important issue here.
Firmware 2.1 - update 1; Kernel version: 2.6.29; baseband version: EPU93_U_00.47.03; BPflex version: USAJTMOB1B4B5DE1028.0R; Build number: JORDN_U3_6.19.0

It says this at a German Forum:
Use the MSN number on the box or under the battery:
then fifth symbol is year and sixth symbol is month
das Jahr = 5 Symbol in MSN:
A = 2000
B = 2001
C = 2002
D = 2003
E = 2004
F = 2005
G = 2006
H = 2007
J-K = 2008
L-M = 2009
N-P = 2010
Monat = 6 Symbol:
A-B Januar
C-D Februar
E-F März
G-H April
J-K Mai
L-M Juni
N-P Juli
Q-R August
S-T September
U-V Oktober
W-X November
Y-Z Dezember
So: L026NU7WFN means 2010 october
Don't know is this is valid for US models though.

My US T-Mo phone, MSN: L026NU3LK2. So, apparently, Oct. 2010 as well? MSN = "mobile serial number." BTW, my phone does not have this issue.

right thanks

Related

Problem with TAPI and GPRS

I have the next problem with this PDA, HTC Artemis or p330 or XDA Orbit or....
When i do a call to lineMakeCall this failed for unknown reason, error: 80000048, the code is the CEDialer example of the SDK but
with "T ~GPRS!movistar.es"
lpCallParams->dwTotalSize = dwSizeOfCallParams;
lpCallParams->dwBearerMode = LINEBEARERMODE_DATA;
lpCallParams->dwMediaMode = LINEMEDIAMODE_DATAMODEM;
lpCallParams->dwCallParamFlags = LINECALLPARAMFLAGS_IDLE;
lpCallParams->dwAddressMode = LINEADDRESSMODE_ADDRESSID;
lpCallParams->dwAddressID = g_dwCurrentLineAddr;
lpCallParams->dwDisplayableAddressSize = lpTransOutput->dwDisplayableStringSize;
lpCallParams->dwDisplayableAddressOffset = sizeof (LINECALLPARAMS);
g_MakeCallRequestID = lineMakeCall (g_CurrentLineInfo.hLine,
&g_hCall,
_T("T ~GPRS!movistar.es"),
//_T("+555555555"),
0,
lpCallParams);
with a telephone number run perfectly, may be GSM not GPRS, but with this translated parameter "T ~GPRS!movistar.es" not with this PDA with AKU 3.0.0.
An Idea?
Thanks and sorry my english is horrible.

Samsung i780 versions explained

Hi,
I was just wondering if anyone could explain or point me in the right direction for information on the different version numbers for PDA and Phone. What do they mean exactly?
I have i780XBHA3 at the moment. Whats the difference between that and DXHE1 for example?
Thanks
7
i780XBHA3
XB = country/operator code
H = year = 8 = 2008
A = month = 1 = january
3 = version = 1
i780DXHE1
DX = country/operator code
H = year = 8 = 2008
E = month = 5 = may
1 = version = 1
So i780DXHE1 is newer then i780XBHA3
Thanks Ralph!
Now it makes sense
then what about:
PXKHI2
the K can not be explained.
molekuul said:
then what about:
PXKHI2
the K can not be explained.
Click to expand...
Click to collapse
do you have i2 ??
molekuul said:
then what about:
PXKHI2
the K can not be explained.
Click to expand...
Click to collapse
It's probably the P that can't be explained

[I9000M][ROM] UGJK3, build date 2010.11.18

I9000M_JK5_JK5_JK5_JK5_UG_BMC (Mislabeled, actually JK3)
ro.build.date = 2010.11.18 00:13:25 KST
ro.build.fingerprint = samsung/GT-I9000M/GT-I9000M/GT-I9000M:2.2/FROYO/UGJK3:user/release-keys
http://www.multiupload.com/WTVA1P5NEX
NOTICE: I do not have this device model, nor have I tested the ROM, I'm only telling you where to find it.
can anyone give me info on this rom
english etc

Detect Nook via code api

Just wrote this up and it works on a Nook Simple Touch Glow. It would be interesting, for completeness, to know what similar code returned on first gen nooks, and the HD nooks.
Code:
public static boolean isNook()
{
String thisManufacturer=android.os.Build.MANUFACTURER;
Log.d(TAG, "UTIL: Manu: "+thisManufacturer);
// 'BarnesAndNoble' on Nook Simple Touch with GlowLite
String thisProduct=android.os.Build.PRODUCT;
Log.d(TAG, "UTIL: PRODUCT "+thisProduct);
// 'NOOK' on Nook Simple Touch with GlowLite
//String thisBrand=android.os.Build.BRAND;
//Log.d(TAG, "UTIL: Brand "+thisBrand);
// 'nook' on Nook Simple Touch with GlowLite
//String thisModel=android.os.Build.MODEL;
//Log.d(TAG, "UTIL: Model "+thisModel);
// 'unknown' on Nook Simple Touch with GlowLite
if( thisManufacturer.equals("BarnesAndNoble") &&
thisProduct.equals("NOOK"))
return(true);
else
return(false);
}
I believe I've seen some similar code posted somewhere, but since a variety of searches didn't bring it up, perhaps this more SEO title will help.
Anders
From my old Nook Simple Touch:
Code:
android.os.Build
ALLOW_INSTORE = false
BOARD = zoom2
BRAND = nook
CPU_ABI = armeabi
DEVICE = zoom2
DISPLAY = ERD79
FINGERPRINT = generic/zoom2/zoom2/zoom2:2.1/ERD79/1.2.1:user/test-keys
HOST = dhabuildimage04
ID = ERD79
MANUFACTURER = BarnesAndNoble
MODEL = unknown
NOOK_CARRIER = unknown
NOOK_CODE = unknown
NOOK_DISTRIBUTOR = unknown
NOOK_LOCALE_LANGUAGE = unknown
NOOK_LOCALE_REGION = US
NOOK_VENDOR = unknown
NOOK_VERSION = unknown
PRODUCT = NOOK
SERIAL = unknown
TAGS = test-keys
TIME = 1354919736000
TYPE = user
UNKNOWN = unknown
USER = build
android.os.Build$VERSION
CODENAME = REL
INCREMENTAL = 1.2.1
RELEASE = 2.1
SDK = 7
SDK_INT = 7
For newer stuff, the Glowlight plus will reply with product: "ntx_6sl". Manufacturer still the same.

Help for unlock routeur Huawei

Please can somebody unlock my routeur Huawei blocked with Yalo ( Sunrise ) . I paid on directunlocks.com , and after they would like a second paiment ... i see on blug's that an arnaq.. can someone help me ? tks
Eligibility Check Results:
IMEI: 864439033881777
Model Name: B529s-23a
Model Number: B529s-23a
Manufacturer: HUAWEI Technologies Co Ltd
GSMA Blacklist Status:
Clean
Description: HUAWEI 4G Router B529 Black
Model Code: B529s-23a
IMEI Number: 864439033881777
Serial Number: XNJDW19515000979
Item Code: 51060BEJ
Offer Code: OFFE00033944
Country Code: CH
Country Name: Switzerland
Warranty Status: Expired
Warranry Start: 30 Sep, 2019
Warranty Expire: 1 Oct, 2021
Activation Date: 26 May, 2019
Production Date: 31 May, 2019
Delivery Date: 30 Sep, 2019
Device Age: 1347 days
Contract Status:
Clean
Financed Status:
Clean

Categories

Resources