<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>nxp &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/nxp/</link>
	<description>Feed of posts on WordPress.com tagged "nxp"</description>
	<pubDate>Mon, 28 Dec 2009 11:26:54 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Review: mbed NXP LPC1768 microcontroller]]></title>
<link>http://hackaday.com/2009/11/21/review-mbed-nxp-lpc1768-microcontroller/</link>
<pubDate>Sat, 21 Nov 2009 15:19:24 +0000</pubDate>
<dc:creator>Phil Burgess</dc:creator>
<guid>http://hackaday.com/2009/11/21/review-mbed-nxp-lpc1768-microcontroller/</guid>
<description><![CDATA[mbed is a next-generation 32-bit microcontroller platform. It’s a prototyping and teaching tool some]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-full wp-image-18584" title="mbed" src="http://hackadaycom.wordpress.com/files/2009/11/mbed.jpg" alt="" width="470" height="220" /></p>
<p><em><a href="http://mbed.org/">mbed</a></em> is a next-generation 32-bit microcontroller platform. It’s a prototyping and teaching tool somewhat along the lines of Arduino. On steroids. With claws and fangs. Other contenders in this class include the MAKE Controller, STM32 Primer and Primer 2, Freescale Tower, and Microchip’s PIC32 Starter Kit. The mbed hardware has a number of advantages (and a few disadvantages) compared to these other platforms, but what really sets it apart is the development environment: the entire system — editor, compiler, libraries and reference materials — are completely web-based. There is no software to install or maintain on the host system.<br />
<!--more--><span style="color:#888888;"> </span></p>
<h2>The Hardware</h2>
<p>The mbed board is sensibly priced at $60; about middle of the road among its peers. mbed’s size (or lack thereof) is among its greatest assets, measuring only about 1&#8243; by 2&#8243; (26 x 52mm) in a stout 40-pin DIP package that just barely manages to fit in a <a href="http://hackaday.com/2005/10/21/solderless-breadboard-transporter/">breadboard</a>…a major win.</p>
<p>The top of the board is dominated by the microcontroller itself: a 60MHz NXP LPC1768 based on the eminently capable 32-bit ARM Cortex-M3 core, sporting 64K of RAM and 512K flash, and rounded out with an embarrassment of peripheral riches: Ethernet, USB (host, device, and to-go), CAN bus, multiple serial, I2C and SPI buses, 12-bit A/D and even a 10-bit D/A converter and realtime clock/calendar. Also on top is the USB connector (mini-B), some power regulation circuitry (operating on 4.5 to 9 volts DC, or USB power), several indicator LEDs, and the reset button (a plain vanilla tactile switch on our purchased unit, not the candy-like blue button seen in product shots).</p>
<p><a href="http://hackadaycom.wordpress.com/files/2009/11/mbed-pinouts1.png"><img class="alignnone size-full wp-image-18602" title="mbed-pinouts" src="http://hackadaycom.wordpress.com/files/2009/11/mbed-pinouts1.png" alt="" width="470" height="300" /></a></p>
<p>The underside conceals an Ethernet transceiver chip (requiring only the addition of an RJ45 jack to get the board on a network) and a DiskOnChip-style component that provides a small (about 2MB) FAT filesystem when attached to a host system through USB, much like a thumb drive.</p>
<p>This latter feature — the FAT filesystem — is half of the key to mbed’s software-free, cross-platform magic. Getting new code onto the device is simply a matter of copying the compiled program (as a .bin file) to this drive. Press the reset button, and the new code is copied to the MCU’s internal flash and run. No special <a href="http://hackaday.com/2009/11/18/pic-powered-avr-programmer/">programming hardware dongle</a>, no special bootloader software, just drag and drop. This has some serious implications. Pretty much <em>any</em> system these days can mount a FAT filesystem. We’re not just talking about getting Mac and Linux users into the fold alongside Windows…there’s also the impending wave of featherweight netbooks with ARM and VIA chips running peculiar, instant-on operating systems. Or the <a href="http://hackaday.com/2008/05/21/hacking-the-olpc-now-and-the-future/">OLPC XO-1</a>. Or older PowerPC Macs. The computers in the school’s lab that you’re not allowed to install any software on. Game consoles.</p>
<h2>The Software</h2>
<p>“<a href="http://hackaday.com/2009/09/19/jolicloud-os-seeks-to-move-past-browsers/">Cloud computing</a>” is still the hot buzzword this week, and the mbed project has adopted the concept wholeheartedly, comprising the other half of their softwareless strategy. Everything with mbed — <em>everything,</em> even your own source code — resides on their servers and is accessed through a web browser. This carries with it all of the good and bad points of any other network-based service such as Google Docs. There’s the potential for this to be a fantastic tool for teaching and collaboration, and in fact they’ve <a href="http://mbed.org/">created such an online community for mbed</a>, with forums and publicly-shareable code libraries. One can move between home and office, or <a href="http://hackaday.com/2009/09/18/vintage-video-computing-across-america/">travel around the world</a>, and resume editing code on any system with a solid ’net connection. No need to check for software updates; the server will always be current.</p>
<p><a href="http://hackadaycom.wordpress.com/files/2009/11/mbed-editor.png"><img class="alignnone size-full wp-image-18607" title="mbed-editor" src="http://hackadaycom.wordpress.com/files/2009/11/mbed-editor.png" alt="" width="400" height="400" /></a></p>
<p>mbed programs are written in C++ (yes, thankfully it’s “programs” and “C++,” not “sketches” or “the mbed language”) using their <a href="http://hackaday.com/2008/10/18/chrome-and-firefox-showing-javascript-improvements/">JavaScript</a>-based online editor. When ready, click the <em>Compile</em> button. The compiler and linker run on the back end, on the server at the other end of the network connection. Provided your code is all syntactically valid, a compiled .bin file will then be downloaded to your computer…save this to the mbed USB disk, press the reset button, and you’re good to go. In Arduino-like fashion, the mbed device also appears as a virtual COM port, so you can monitor a program’s serial output using any terminal program.</p>
<h2>The Good</h2>
<p>We were taught that you should always say something kind before criticizing, so we’ll point out that the above process does, in fact, work exceedingly well, and has proved to be both quick and reliable. Once you get into the groove, the sequence of operations is no more onerous than with Arduino or any other microcontroller-specific programmer dongle.</p>
<p>To their credit, unlike some microcontroller evaluation kits, there are no artificial limitations to the mbed compiler; the full code and memory space of the processor is available to your code. The editor has realtime syntax coloring and multiple undo levels. And double-clicking on an error message in the compiler output will take you directly to the offending line, as in any decent IDE. You can import existing code from your local system to the mbed “cloud,” or likewise export individual files or an entire project. All good stuff.</p>
<p>The real saving grace of this setup is the libraries, both the official functions in what they call the “<a href="http://mbed.org/handbook/">Handbook</a>,” and community-contributed code in the “<a href="http://mbed.org/projects/cookbook/">Cookbook</a>.” A tremendous amount of functionality has been implemented in a concise and usually object-oriented manner. It’s almost comical sometimes, after having worked with other microcontrollers and girding for some expected coding nightmare, only to find that the corresponding library handles a task in a couple of lines (browse through the Handbook and Cookbook for examples). There’s a tendency also to follow stdlib or “UNIX-like” conventions for file access, character I/O, realtime clock access, etc., so existing systems programmers new to microcontrollers will feel right at home, no weird function names or syntaxes.</p>
<p>The mbed’s FAT filesystem is also accessible to the microcontroller, making it useful for more than just program storage. Web pages can be served from this space, or a <a href="http://hackaday.com/2009/08/14/logging-weight-changes/">data logging</a> program can store results here. If the two megabyte capacity is too limiting for your needs, have a look at the <a href="http://mbed.org/projects/cookbook/wiki/SDCard">SDCard library</a> in the Cookbook — it’s almost trivial to wire up and use. Pretty much <em>all</em> of the libraries are like that!</p>
<h2>The Bad and the Ugly</h2>
<p>Hardware-wise, there are just a few minor nitpicks:</p>
<p>First is with the local FAT filesystem. Even though this is one of the device’s most unique features, and the very thing that enables its platform neutrality, the implementation just seems a bit anachronistic. The aforementioned SDCard library demonstrates how readily that format can be used. It’s faster, with the potential for far greater capacity, and cards could be easily swapped out for different code or data files. Not a major disappointment, just seems like an opportunity was missed to make this product even better.</p>
<p>Second is with the indicator LEDs on the board. Four of them, scant millimeters apart, <em><a href="http://hackaday.com/2008/09/30/6-pcs-in-one-clear-case/">all blue</a></em>…making them pretty much worthless as status indicators from across the room, where they all blur into a singular blob. Ten years ago, blue LEDs were <em>novel.</em> Five years ago, they were <em>mainstream,</em> festooning every last USB hub, mouse, flash drive and imported piece of crap. Today they’re just <em>tired,</em> let’s get over it. Different colors would indicate status at a distant glance.</p>
<p>Finally, not a problem with the mbed board itself, but it would be nice to see one of the Cookbook projects, the “BoB2” breakout board, made into an available product. The blank board can be ordered through <a href="http://hackaday.com/2009/03/11/batchpcb-now-even-more-a-la-carte/">BatchPCB</a>, but after postage and handling the price for just the empty board — no components — is $33. Have this populated and mass-produced, bundle it with the mbed in a $100 package, and it sounds like a winning setup, ready to go head-to-head with the MAKE Controller.</p>
<p>But really, those are just nitpicks. Our <em>real</em> beef is with the software…the code editor specifically. If you find the Arduino editor aggravating, the mbed editor will have you seeing red (or maybe purple if you factor in all those blue LEDs). Like Arduino, there’s no true tab formatting; everything’s expanded to spaces, like it or not. Auto-indent cannot be disabled, and there’s seemingly no command to increase or decrease the indentation of a block of code. If you’re accustomed to anything more than arrow keys to move and click-and-drag to highlight text, the editor disregards a lot of system-native editing behaviors that may be deeply ingrained in your muscle memory (such as shift-clicking to select a range of text, or triple-click-and-drag for multiple contiguous lines). What’s more, the quirky behaviors are a little different across each browser and operating system. Don’t even <em>try</em> that triple-click-and-drag in Firefox for Mac…you won’t get your text cursor back without a complete reboot (seriously, just restarting the browser isn’t sufficient). And at present, only the most common browsers are supported; all others are currently shut out.</p>
<p>The closed-source nature of the tools may also be off-putting to some. If one finds the Arduino editor distasteful, there are options: get in there and change the code, or simply use a different editor and link with the Arduino libraries manually…it’s all legal and encouraged. With mbed, there are no alternatives. Access to the compiler and libraries is “free as in beer,” but not “free as in speech.” There’s little recourse should the service ever be taken down, or if they should suddenly start charging a subscription fee (there’s no indication this is planned, just a hypothetical scenario).</p>
<p>The good news, at least with regard to the former, is that software is of course infinitely more malleable than hardware, and it’s almost certain the tools will improve with time. The site is under active development…new “Home” and “Notebook” features were added for registered users just yesterday. Perhaps, given time, they’ll get the Command key working properly on the Mac. The selection of user-submitted code will expand regardless, making it progressively easier to do more and different things with this board.</p>
<h2>In Summary</h2>
<p>The <a href="http://mbed.org/tour/">mbed Tour page</a> is frank about what the platform is good for, and what it’s not. mbed was intended as a quick prototyping and educational tool, and at that it excels. A lack of features such as a debugger or offline compiler keep this from being a professional-strength development platform, which is okay. Think of it as Arduino: The Next Generation. Although the mbed board costs more up front than Arduino, there are capabilities here that would otherwise require costly “shields” and strain every last byte and CPU cycle of the 8-bit ATmega328 processor: Ethernet, USB, SD cards…mbed handles these tasks with aplomb.</p>
<p>mbed is not without its flaws, and the “cloud” development approach may never sit right with some. For a product that’s just weeks out of beta testing, the results thus far are extremely encouraging. There’s immense potential here: a seriously powerful chip, easy to interface and to program. If the online tools can be improved, or if open source alternatives become available, mbed could be a major player. We expect to be seeing a lot more of this device in future hacks.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[KM-kastje kapot? Half jaar de kast in!]]></title>
<link>http://quallekop.wordpress.com/2009/11/17/km-kastje-kapot-half-jaar-de-kast-in/</link>
<pubDate>Tue, 17 Nov 2009 10:34:02 +0000</pubDate>
<dc:creator>Quallekop</dc:creator>
<guid>http://quallekop.wordpress.com/2009/11/17/km-kastje-kapot-half-jaar-de-kast-in/</guid>
<description><![CDATA[De aap komt uit de mouw… langzaam aan wordt het duidelijk wat voor status het kastje, dat straks in ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.telegraaf.nl/"><img style="display:inline;margin:0 5px 0 0;" src="http://images2-telegraaf.nl/multimedia/archive/00672/kilometerheffing_672492d.jpg" alt="" align="left" /></a><strong>De aap komt uit de mouw… langzaam aan wordt het duidelijk wat voor status het kastje, dat straks in uw auto wordt geïnstalleerd, krijgt. Maakt u het stuk, expres of per ongeluk maak niet uit, u gaat direct naar gevangenis en ontvangt geen 20.000 euro’s als u langs Start gaat. De fabrikant van het kastje is er heilig van overtuigd dat er niets mis kan gaan met zijn apparatuur, wat impliceert dat als er iets verkeerds gaat, het bij de gebruiker moet liggen. Die overtuiging is kennelijk overtuigend genoeg geweest voor minister Eurlings zodat hij een gevangenisstraf of een flinke geldboete oplegt als dat apparaatje defect raakt en u dit niet binnen 8 uur meldt.</strong></p>
<p><strong>U bent dan gewoon een <a href="http://www.telegraaf.nl/binnenland/5327757/___Ik_geloof_er_geen_fluit_van___.html" target="_blank">ordinaire crimineel</a> en verdwijnt de gevangenis in omdat het kastje niet meer doet wat ie moet doen. En u is er verantwoordelijk voor!</strong></p>
<p><strong>U ziet het <a href="http://www.telegraaf.nl/binnenland/5332313/___Werkenden_zijn_de_dupe____.html" target="_blank">fiscaal-economische delicten</a> worden zwaar gestraft! Sla je een sigarenman dood om de dagopbrengst van 200 euro te jatten, dan kom je er misschien nog redelijk vanaf als je maar aangeeft dat je een slechte jeugd hebt gehad, nog steeds in je bed pist en zwarte stippen ziet verschijnen als het rood wordt door d’ ogen!</strong></p>
<p><strong>Met deze wet moet u wel beseffen dat u gedwongen wordt door de overheid om zo’n apparaat te installeren in uw auto, dat het gebruik daarvan wordt geregistreerd, dat defecten op voorhand aan u te wijten zijn en dat u, als u deze <a href="http://www.telegraaf.nl/binnenland/5335872/__VVD_vraagt_EC_over_km-heffing__.html" target="_blank">dwangmaatregel</a> niet naleeft op de een of andere manier, u in de kerker wordt gedumpt en daar een half jaar een staatsdieet van water en brood kunt volgen.</strong></p>
<p><strong>Zoals de waard is, vertrouwd hij zijn gasten… In Den Haag weten de Christendemocraten (CDA) intussen wel op welke wijze ze het Volk moeten knechten met dit soort fratsen, die er alleen maar zijn gekomen omdat het aanhoudend falend regeringsbeleid nimmer heeft kunnen verhelpen dat de wegen in Nederland dichtslibben De auto mag dan wel van u zijn, maar in zekere zin is de overheid degene die het vruchtgebruik heeft van de auto… U moet ermee naar uw werk, en in Den Haag leunen ze achterover en zien de schatkist in een razendsnel tempo gevuld worden… het is niet meer bij te houden!</strong></p>
<p><strong>Krijgt een crimineel bij huisarrest een enkelband om, zodat ze bij Justitie weten waar hij uithangt, uw autootje wordt ook voorzien van een <a href="http://www.telegraaf.nl/binnenland/5327761/__Angst_voor_controle__.html" target="_blank">enkelband</a>, en zolang die werkt bent u geen crimineel, maar o wee, als dat ding het niet doet (wat volgens de fabrikant overigens niet kan) dan bent u de pineut!</strong></p>
<p><strong>En nog een zinnetje aan het adres van de fabrikant NXP: Mijn vader zei wel eens: “Alles wat een mens maakt, kan ook vanzelf kapot gaan…” Laat ik nu eerder mijn vader willen geloven dan wat u beweert over uw km-kastjes dat ze nooit vanzelf kapot kunnen gaan vanwege die goddelijke chip erin van u?!</strong></p>
<p><strong>Ook nog een dankwoord aan Paul Nouwen van de ANWB, die dit ‘<a href="http://www.telegraaf.nl/binnenland/5332316/___Afrekenen_per_liter_is_eerlijker___.html" target="_blank">eerlijke</a>’ systeem heeft uitgedacht! ANWB zelf ook hartelijk dank voor het meehelpen dit systeem in te voeren! Het was eerlijker geweest de brandstofprijzen aan te passen en alle andere belastingen op de auto af te schaffen&#8230; maar waarom makkelijk maken als het moeilijker kan?!!!<br />
</strong></p>
<h3><a href="http://www.telegraaf.nl/binnenland/5341563/___Cel_in_bij_kapot_km-kastje___.html?p=1,1" target="_blank">Gevangenis dreigt bij kapot km-kastje</a></h3>
<p>AMSTERDAM -  Wie straks een defect kilometerheffingskastje in de auto heeft, wordt door de overheid gezien als een crimineel. De automobilist riskeert een gevangenisstraf of een geldboete die maximaal in de tienduizenden euro&#8217;s kan lopen.</p>
<p><a href="http://www.telegraaf.nl/"><img style="display:inline;margin:0 5px 0 0;" src="http://images2-telegraaf.nl/multimedia/archive/00619/eurlings_619599d.jpg" alt="" align="left" /> </a>Minister Eurlings van het CDA.</p>
<p>Dat blijkt uit het wetsvoorstel van minister Eurlings. Op het rijden met een gps-kastje dat opeens geen signalen over afgelegde kilometers uitzendt, staat een half jaar cel of een boete tot 18.500 euro. Wie in die geldboetecategorie wordt veroordeeld, zit tien jaar lang aan een strafblad vast. Wordt de boete niet betaald, dan kan de officier van justitie het rijbewijs innemen en de auto &#8216;buiten gebruik stellen&#8217;. Is er met het kastje geknoeid om het signaal te verstoren of te beïnvloeden, dan is er sprake van een misdrijf en hangt de weggebruiker tot vier jaar gevangenis of een boete van 74.000 euro boven het hoofd.</p>
<p>Volgens het wetsvoorstel is iedere automobilist zelf verantwoordelijk voor de werking van het spionagekastje. Defecten moeten binnen acht uur worden gemeld aan de Dienst Wegverkeer. Binnen drie weken moet het kastje zijn gerepareerd.</p>
<p>De kandidaat-leveranciers van de apparatuur geloven niet dat de kastjes kuren zullen vertonen. &#8220;De kwaliteit is niet vergelijkbaar met bijvoorbeeld een mobiele telefoon. Die wil nog wel eens uitvallen&#8221;, zegt Maurice Geraets namens NXP, een van de fabrikanten die in de race zijn om de chip te leveren. &#8220;Onze chip moet het altijd doen. Vergelijk het met de kwaliteit van een remsysteem, waarin ook onze chips zitten. Remmen mogen ook niet falen en doen dat ook niet. De overheid komt met een uitgebreide praktijktest om alle kinderziektes eruit te filteren.&#8221;</p>
<p>Bij de ANWB is &#8216;een alarmbelletje afgegaan&#8217; door de hoge boetecategorie waarin automobilisten terechtkomen als het systeem faalt. &#8220;Die hoge geldboetes zijn ons team ook opgevallen. We gaan nu met de stofkam door de wet en komen later met een oordeel&#8221;, zegt woordvoerder Ad Vonk. De bond ontving de afgelopen dagen 500 e-mails van verontruste weggebruikers.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Temperature vs. Life Time]]></title>
<link>http://muslimlead.wordpress.com/2009/11/12/temperature-vs-life-time/</link>
<pubDate>Thu, 12 Nov 2009 16:03:51 +0000</pubDate>
<dc:creator>Waseem Al-Khayer</dc:creator>
<guid>http://muslimlead.wordpress.com/2009/11/12/temperature-vs-life-time/</guid>
<description><![CDATA[Today&#8217;s post will help you to better understand the effect of operating temperature on consume]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="http://muslimlead.wordpress.com/files/2009/11/temp.jpg"><img class="size-medium wp-image-393 alignright" title="temp" src="http://muslimlead.wordpress.com/files/2009/11/temp.jpg?w=300" alt="temp" width="182" height="182" /></a><span style="color:#000000;">Today&#8217;s post will help you to better understand the effect of operating temperature on consumer electronic products which are widely used at homes. The effect of operating temperature is also related to derating curve of electronic components. Look for example at the derating curve of 2N3055 transistor:</span></p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;"><span style="color:#000000;"><br />
</span></p>
<p style="text-align:center;"><span style="color:#000000;"><a href="http://muslimlead.wordpress.com/files/2009/11/temperature-derating-curve-2n3055.jpg"><img class="size-medium wp-image-388 aligncenter" title="temperature-derating-curve-2N3055" src="http://muslimlead.wordpress.com/files/2009/11/temperature-derating-curve-2n3055.jpg?w=300" alt="temperature-derating-curve-2N3055" width="300" height="197" /></a></span></p>
<p style="text-align:justify;">
<p style="text-align:justify;"><span style="color:#000000;">Earlier this year I  decided to buy a new digital camera and some <a title="NiMH" href="http://en.wikipedia.org/wiki/Nickel_metal_hydride_battery" target="_blank">NiMH</a> batteries with a charger. I simply went to a consumer electronics shop in Riyadh and bought them. Actually, before I joined electronics industry field I didn&#8217;t bother myself about reading devices specifications or datasheets. However,  after being deeply involved in designing some electronic devices I got to know what is called a <a title="Derating" href="http://en.wikipedia.org/wiki/Derating" target="_blank">Derating Curve</a>. Derating is defined as the operation of a product at less than its specified power at higher temperatures. In other words, what would be the effect of high temperatures on a running product. Since that time I was checking any product I buy to make sure of its operating temperature that it should match my requirements.<br />
</span></p>
<p style="text-align:justify;"><span style="color:#000000;">Back to my camera example,  the maximum operating temperature was 40 C!  Keeping in mind that in Riyadh, it&#8217;s normal to measure 40C at night during August! and around 50C during day hours. So this means my digital camera won&#8217;t work well &#8220;as it should be&#8221; during an off-road safari trip in <a title="Thumama" href="http://www.maplandia.com/saudi-arabia/riyad/ath-thumamah/" target="_blank">Thumama</a> area! This also means that my camera will have a faster again rate,   or  the life time  will be decreased by at least 20-30%. This also applies to my <a title="NiMH" href="http://en.wikipedia.org/wiki/Nickel_metal_hydride_battery" target="_blank">NiMH</a> batteries where the manual mentioned that you should charge at room temperature, but which room! is it in Riyadh? or Tokyo? What manufactures usually mean by room temperature is 25C which is basically not the case in Riyadh or any  other hot area.  On average, the charging of NiMH batteries might take up to 7 Hours, but in hot conditions  this number might fold to 9 hours! Add to this that life cycle or number of charging/recharging cycles will also decrease by at least 20%. This is what the effect of operating temperature on a device could be. It&#8217;s the derating! This phenomena applies to many other products around us, like mobile phones, iPods, headphones, mobile phone chargers, etc. </span></p>
<p style="text-align:justify;"><span style="color:#000000;">So what should I do? Fortunately, manufacturers have some of their products rated at  Industrial Operating Temp which has a wider temperature span like +85C or +125C that should be fine  for Saudi environment. So before buying a new product, don&#8217;t  forget to check its operating temperature because this will determine the derating profile. Always make sure to buy and operate a device at its specified operating temperature. Famous electronic manufacturers like: Texas Instruments, NXP, Microchip, etc. always mention different operating temperature options for the customer. Look at the next fig. to see how TI states the operating temp:</span></p>
<p style="text-align:justify;"><span style="color:#000000;"><a href="http://muslimlead.wordpress.com/files/2009/11/ti.jpg"><img class="size-medium wp-image-382 aligncenter" title="TI operating temp" src="http://muslimlead.wordpress.com/files/2009/11/ti.jpg?w=300" alt="TI operating temp" width="386" height="113" /></a><br />
</span></p>
<p style="text-align:justify;"><span style="color:#000000;">Also, operating temperature plays a big role in other fields like medicine and that&#8217;s why many people in hot areas like Saudi Arabia used to keep medications  in a refrigerator. </span></p>
<p style="text-align:justify;"><span style="color:#000000;">Finally, if you&#8217;re interested in designing a circuit that switches on an alarm signal using a temperature sensor at a specified temperature then you can use one of the following two circuits:</span></p>
<p style="text-align:justify;"><span style="color:#000000;">1.  Stand alone Temperature sensor TMP302a  by Texas Instruments: pretty easy to interface. It trips at threshold temperatures. <a rel="attachment wp-att-383" href="http://muslimlead.wordpress.com/2009/11/12/temperature-vs-life-time/tmp302a/">TMP3201</a> datasheet. </span></p>
<p style="text-align:justify;"><span style="color:#000000;">2. Comparator circuit based on NTC <a title="Thermistor" href="http://en.wikipedia.org/wiki/Thermistor" target="_blank">thermistor. </a>A comparator circuit will generate a DC output = Vcc if input voltage at non-inverting pin is grater than input voltage at inverting pin. If you look at the circuit you can see if we placed an NTC in place of R5 then as temp increases the comparator will generate a signal that can be used to switch on an alarm signal. The beauty of this circuit is that you can design it the way you like. You can also improve it to have a hysteresis effect.<a href="http://muslimlead.wordpress.com/files/2009/11/ntc.pdf">NTC</a> datasheet</span></p>
<p><a href="http://muslimlead.wordpress.com/files/2009/11/circuit.jpg"><img class="aligncenter size-full wp-image-385" title="circuit" src="http://muslimlead.wordpress.com/files/2009/11/circuit.jpg" alt="circuit" width="380" height="277" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Semiconductor IP Companies on the move: Virage’s Next eXPerience]]></title>
<link>http://danielnenni.com/2009/10/19/semiconductor-ip-companies-on-the-move-virage%e2%80%99s-next-experience/</link>
<pubDate>Mon, 19 Oct 2009 01:18:28 +0000</pubDate>
<dc:creator>Dan Nenni</dc:creator>
<guid>http://danielnenni.com/2009/10/19/semiconductor-ip-companies-on-the-move-virage%e2%80%99s-next-experience/</guid>
<description><![CDATA[In yet another accretive move, Virage Logic will take control of NXP&#8217;s CMOS IP business in exc]]></description>
<content:encoded><![CDATA[In yet another accretive move, Virage Logic will take control of NXP&#8217;s CMOS IP business in exc]]></content:encoded>
</item>
<item>
<title><![CDATA[StrategyAnlalytics on ST-Ericsson]]></title>
<link>http://deviceconvergence.wordpress.com/2009/10/12/strategyanlalytics-on-s-ericsson/</link>
<pubDate>Tue, 13 Oct 2009 03:17:49 +0000</pubDate>
<dc:creator>Nalini Kumar Muppala</dc:creator>
<guid>http://deviceconvergence.wordpress.com/2009/10/12/strategyanlalytics-on-s-ericsson/</guid>
<description><![CDATA[Sravan Kundojjala of the market analysis and research firm StrategyAnalytics has a report out today ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.strategyanalytics.com/default.aspx?mod=Biography&#38;a0=2220">Sravan Kundojjala</a> of the market analysis and research firm <a href="http://www.strategyanalytics.com/">StrategyAnalytics</a> has a report out today on ST-Ericsson. The report brief says</p>
<blockquote><p>ST-Ericsson has a very strong position in all the technology pieces required to compete in the cellular chip market including basebands, RF transceivers, connectivity and multimedia. The company has a strategic IP portfolio, well established customer relationships, and also spends close to 20 percent of its revenues on R&#38;D. However, ST-Ericsson has some execution challenges in the near-term to successfully integrate the assets and cultures of NXP, ST Microelectronics and EMP.</p></blockquote>
<p>As I wrote <a href="http://deviceconvergence.wordpress.com/2009/09/13/st-ericsson-strategy-and-outlook/">earlier</a>, I agree with him.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cisco, Rovi, TDG and Verimatrix at STB 2009]]></title>
<link>http://jviptv.wordpress.com/2009/10/11/cisco-rovi-stb-2009/</link>
<pubDate>Sun, 11 Oct 2009 07:00:41 +0000</pubDate>
<dc:creator>Jeff Vinson</dc:creator>
<guid>http://jviptv.wordpress.com/2009/10/11/cisco-rovi-stb-2009/</guid>
<description><![CDATA[Turner, AccuWeather and Sky Angel in Attendance Last week&#8217;s STB 2009 in San Jose was a well re]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Turner, AccuWeather and Sky Angel in Attendance</strong></p>
<p><strong>Last week&#8217;s STB 2009 in San Jose</strong> was a well received, quality event in the heart of Silicon Valley.  Greg Fawson and his X Media Research staff put on this 3<sup>rd</sup> annual conference which attracts a select, albeit, small crowd for 2 days of presentations.  The 300 or so attendees were exposed to a wide cross section of the Digital TV and entertainment eco-system with trends and predictions explained by key insiders.</p>
<p><strong>Notable Attendees: </strong> Aside from the speakers, key players from the entertainment and technology sectors were there to hear from their competitors and collaborators about the state of the industry and the predictions for near term changes.  Magnum Semi and NXP Semi were rubbing shoulders with their SoC customers and prospects while AccuWeather and Turner Network were looking for clues to which areas of distribution represent the best bet for content licensing.</p>
<p><strong>Hybrid TV Is Here To Stay</strong>:  Several speakers including Cisco’s Ken Morse, CTO for Video, and TDG’s Colin Dixon, Practice Manager for Broadband Media, extolled the virtues and increased adoption rates of hybrid TV.  Set Top Boxes which connect to the net for OTT (Over The Top) video content along with Free to Air ( in EU) and ATSC in the US, give consumers an opportunity to cut their cable or satellite bill and subscribe to only the premium OTT channels they really want.  Though no one is predicting a complete cutting of the cable or satellite cord just yet, these MSOs may see a significant number of their subs going to a lower tier of service.  Why purchase a premium package with HBO and Showtime in a large bundle with 200 channels you never watch when you can purchase basic service and buy a Roku box for Netflix movies at less than $10/month extra?</p>
<p><strong>Sky Angel Soars:</strong> The darling of the OTT business model in the US seems to be the “Family Friendly” content provided by Sky Angel.  Using the IPTV distribution services of NeuLion, Sky Angle was cited by speakers as  a prime example of the OTT threat to cable, satellite and telco subscription services.  And sitting in the audience at the conference to hear the accolades first hand was Sky Angle’s Sr. VP of Engineering, Sherrod Munday.  Sherrod enlightened me with some of the details of their very serious investment in infrastructure and content licensing that is not just a ‘flash in the pan.”  With their headquarters located in Florida,  the satellite downlink site, encoding and distribution center is in Cleveland, Tennessee.  Sherrod explained that their family subscribers are also looking for mainstream entertainment, though nothing approaching an R rating.  Sports, weather, and news channels are already included in their lineup.  And there may be plans to add other channels of general interest to the home improvement, travel and cooking audiences.  (See my previous postings on “Godcasts” to get more information on the religious OTT services.)</p>
<p><strong>Widgets, Widgets and More Widgets: </strong>“<em>This Will Be A Blu-ray Christmas</em>” -  TDGs Colin Dixon delivered that quote to drive home the fact that net connected Blu-ray players will introduce even more consumers to the growing OTT market.  He also noted the significance of Intel’s newly announced Atom CE4100 processor enabling Flash 10 playback of widget launched, videos on non-PC devices.  Netflix, Amazon and CinemaNow are increasing their stable of widgets supplied to CE device manufactures to be used as part of their on-screen UI.  These simple buttons showing up on the screen of a net connected TV can instantly transport a viewer to more entertainment purchasing portals than they ever dreamed were available.</p>
<p><strong>More Blu-ray Features to Come</strong>:  Glenn Algie, Video Solutions Architect for Nortel (no they are not dead), filled me in on some forward progress being made on the Blu-ray coding front.  According to Glenn, a significant number of out of work Java programmers have been busy at the major movie studios writing BD-J code for Blu-ray DVDs.  BD-J allows bonus content on Blu-ray Disc titles including network access, picture-in-picture and access to expanded local storage.  These &#8220;Bonus View&#8221; and &#8220;BD Live&#8221; programs allow DVDs to take over the runtime of the box and present a unique set of menus, widgets, and net links once the DVD is loaded.   Glenn also mentioned the work being done by RCDb to deploy networked applications on Internet connected Blu-ray players.  A player can now dynamically load and unload applications and connect to third party services and content offerings controlled by the player manufacturers and their retail partners.</p>
<p>“<strong>The Integrated TV May Be The Next Trojan Horse”</strong>:  Richard Bullwinkle, Chief Evangelist for Rovi presented their market findings on how consumers interact with their various devices for entertainment.  [He also explained that “Rovi”, the new name for Macrovision, was created by taking the 4 middle letters of the old company name.]  Again, the network connected TV with an array of widgets may be a powerful device to lead viewers into the ever expanding video marketplace.   It may lead to cable and satellite disconnects – that is if there is another outlet for time sensitive programs such as Idol, awards shows and sports.</p>
<p><strong>Verimatrix “Multi-Rights” and Watermarking</strong>:  With this move toward non-traditional distribution of content, license holders have employed a variety of competing, and non-compatible, security solutions.   Steve Christian, VP of Marketing at Verimatrix, explained their recently introduced “Multi-Rights” system during his presentation.  By combining several DRM licenses into one bundled package, Verimatrix can detect, decode and transmit secure video files from a variety purchasing sources to either PC, TV or Mobile output devices for the consumer.  This technology is absolutely required to give consumers the choice of purchasing methods and playback devices.</p>
<p>For lower value paid content protection, the Verimatrix hidden video watermark provides a degree of deterrence.   Steve explained that the main value of the watermark is to make the casual illegal copier think twice about their actions if they know the content they downloaded and posted for others to copy can be traced back to them.  It also gives license holders a tool to track down serious pirates once they locate illegal copies of their product on the net.  Verimatrix will decode the watermark and provide customer information to the license holder for potential legal action.</p>
<p><strong>Odds &#38; Ends – Ads and Search:</strong> There were actually too many topics covered at this show to report in one post.  However it is worth noting that Targeted Advertising and Simple Content Search remain hot topics of conversation.  Monetizing the viewer experience may more and more depend on specific ads which, hopefully,  keep viewers tuned into the message.  And the need for a viewer friendly search and recommendation engine for the growing amount of content has never been more evident.</p>
<p><strong>One Last Thought on Cisco’s Home Video Conferencing</strong>:  With their recent purchase of Tandberg, Cisco’s Ken Morse did say they were definitely expanding their video conferencing offerings to include the average consumer.  This blogger is still not convinced that there is a business there.  As stated in previous posts regarding the Verizon / Cisco collaboration on this product offering, everyone who has tried to crack this nut has failed.  From the “Picture Phone” to the most recent offering by Telmex, network video conferencing has not been made appealing to the everyday consumer.  For business, yes; the expense can be justified by a reduction in travel and carbon footprint associated with trips to clients and remote offices.   Instead of attaching a camera to the living room TV, why not use the video camera in almost every cell phone?  Or, maybe a “cell phone dock” for the TV would do the trick?  Perhaps it will be unveiled at STB 2010.  I can’t wait.</p>
<p>Keep pushing forward</p>
<p>Jeff Vinson</p>
<p>jeff_vinson@sbcglobal.net</p>
<p>[You may contact Jeff directly for consulting or full time employment opportunities.]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Intel, Adobe and CBS Tout IPTV Widgets]]></title>
<link>http://jviptv.wordpress.com/2009/09/27/intel-adobe-and-cbs-tout-iptv-widgets/</link>
<pubDate>Sun, 27 Sep 2009 19:07:05 +0000</pubDate>
<dc:creator>Jeff Vinson</dc:creator>
<guid>http://jviptv.wordpress.com/2009/09/27/intel-adobe-and-cbs-tout-iptv-widgets/</guid>
<description><![CDATA[Kudelski Group Jumps on the Intel Bandwagon Selling DRM Licenses Intel&#8217;s New IPTV SoC for the ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Kudelski Group Jumps on the Intel Bandwagon Selling DRM Licenses</strong></p>
<p><strong>Intel&#8217;s New IPTV SoC for the Digital Home: </strong>In <a href="http://www.telecomtiger.com/fullstory.aspx?passfrom=vasstory&#38;storyid=7274">announcing</a> their new IPTV SoC, Eric Kim, Senior VP and GM, Intel Digital Home Group said, &#8220;At the center of the TV evolution is the CE4100 media processor, a new architecture that meets the critical requirements for connected CE devices.&#8221; then followed up by saying:   “This is the tip of the iceberg. With widgets and Flash on the TV you’ll see a similar effect to that which we saw with smartphones.”</p>
<p><strong>Adobe Flash Player 10 Port:</strong> According to their latest <a href="http://www.intel.com/pressroom/archive/releases/20090924comp_b.htm?iid=SEARCH">press release</a>, Intel is working with Adobe to port Adobe Flash Player 10 to the family of Intel CE media processors to optimize the playback of graphics and H.264 video to enable for the first time a wide array of Flash-based content on the television.  “As TVs become more interactive, Adobe Flash is an important enabling technology to help content developers blend together video, 3-D animation and rich graphics.”</p>
<p><strong>Widgets = The Next Killer App?</strong> The combination of a capable processor and interactive Flash widgets could spark a growing subset of TV-specific apps for accessing premium content, games, music, and the web. Intel wants developers to target the new chip and use it in conjunction with Flash, which Adobe is making easier to use on such devices.</p>
<p><strong>CBS Extols the Virtue of TV Widgets and Interactive TV Applications: </strong>Broadcast networks such as CBS are exploring TV widgets to help their viewers find and connect to premium content.  &#8220;Navigation is the No. 1 challenge for today&#8217;s television viewers,&#8221; said George Schweitzer, president, CBS Marketing. &#8220;Intel&#8217;s CE technology and our new TV Widget platform are designed to help people find the shows they want and discover new programs that are relevant to their interests. What&#8217;s more, the TV Widget gives us another platform to connect and interact with our audience while delivering an exciting new television experience.&#8221;</p>
<p><strong>Kudelski Licenses DRM to Intel: </strong>Nagravision, a Kudelski<strong> </strong>Group company, announced they have signed a technology licensing agreement with Intel on Sept. 25.  According to the release, the agreement will see compatibility between Nagravision’s NOCS technology and Intel’s CE media processors, allowing Intel’s CE industrial customers to design hybrid <a href="http://www.satellitetoday.com/store/nsrreports/146.html" target="_blank">IPTV</a> set-top boxes and secure digital video home products for service operators.</p>
<p>Devices licenses sold through Intel is a very smart move for Kudelski.  There are lots of choices for DRM and chips.  Having your DRM already coded into a SoC is a sure way of reaching a much larger audience with a better known brand name.</p>
<p><strong>Intel Still Needs to Make the Sales</strong>:  Even with this stellar lineup of partners and features, Intel still must make the case that they can beat Broadcom, Motorola, NXP, ST, Sigma, TI and a host of fabless semiconductor houses in an IPTV market which is getting very crowded.</p>
<p><strong>Time to Market is the Name of the Game</strong>:  If all SoC offerings are perceived as having a similar suite of features, then it comes down to service, price, and availability.  As most of us know, press releases and marketing hype fall flat if working production units with debugged software are not available for building your CE prototypes and conducting your lab trials.</p>
<p>Keep pushing forward</p>
<p>Jeff Vinson</p>
<p>jeff_vinson@sbcglobal.net</p>
<p>[Jeff is available for consulting and full time employment opportunities.]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[3D TV Is Not a STB with a 3D UI]]></title>
<link>http://jviptv.wordpress.com/2009/09/12/3dtv-not-stb-3dui/</link>
<pubDate>Sat, 12 Sep 2009 15:00:06 +0000</pubDate>
<dc:creator>Jeff Vinson</dc:creator>
<guid>http://jviptv.wordpress.com/2009/09/12/3dtv-not-stb-3dui/</guid>
<description><![CDATA[What BSkyB Started:  It seems all of Europe is buzzing with the hopes of seeing actual 3D content on]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>What BSkyB Started</strong>:  It seems all of Europe is buzzing with the hopes of seeing actual 3D content on their telly next year based on the <strong><a href="http://www.guardian.co.uk/media/bskyb">BSkyB</a></strong> announcement in July that it will launch Europe’s first 3D TV channel programming in 2010.  The frenzy was further stoked by the Guardian Newspaper’s “Question of the Week” asking readers <em>“Will 3D TV be a Hit?”</em> So the new buzz word in the television industry must be “3D”.</p>
<p><strong>Mob Mentality:</strong> Yes, 3D TV has been anointed in the press as the next killer app. Guaranteed to wipe out all other types of programming. Driving hoards of customers to their local struggling retailer, waiving fists full of cash (or debit cards) screaming for new 3D TV sets to see all of their favorite shows in 3D.</p>
<p><strong>How Can STB Manufactures Take Advantage of the 3D TV Hysteria? </strong>Easy, just market a 3D Set Top Box! <strong> </strong>Never mind that format, encoding and transmission standards are still being debated by standards bodies.  What codec will be used for transmission?  What bandwidth will it require?  What QoS is acceptable?  Will they require glasses?  Shutter, Polarized or Dual Color?</p>
<p><strong>Battle of the EU Trade Show Press Releases:</strong> Just in time for IFA and IBC we have company after company jumping on the 3D bandwagon.  A few examples:</p>
<blockquote><p><strong><span style="text-decoration:underline;">Pace</span></strong><span style="text-decoration:underline;"> To Unveil New 3D Set Top Box</span><strong> </strong>Thursday, September 10 2009,<em>“Pace has announced that it will showcase a new set top box with a <strong>3D-enabled user interface (UI)</strong> at IBC 2009, which gets under way tomorrow in Amsterdam.” </em></p></blockquote>
<blockquote><p><strong><span style="text-decoration:underline;">SoftAtHome</span></strong><span style="text-decoration:underline;">: World’s First End-to-End TV Solution with 3D User Interface Ready for Deployment on IP-Hybrid Networks</span> <em>“…It enables service providers to accelerate time to market to deliver a new TV offering with a <strong>3D HD user interface</strong> on broadcast, IPTV or hybrid networks (DVB-S/C/T+IP)”</em></p>
<p><strong><span style="text-decoration:underline;">Bluestreak</span></strong><span style="text-decoration:underline;"> Technology Unveils New 3D Flash® User Experiences for Set-top Boxes and Mobile Devices at IBC 2009</span> <em>“…today unveiled support for new <strong>3D Flash user experiences</strong> that offer consumers visually dynamic ways to search for and discover multimedia content and web services on their television set-top boxes…”</em></p>
<p><strong><span style="text-decoration:underline;">NXP</span></strong><span style="text-decoration:underline;"> Brings Unrivalled Performance to Mainstream HD DVRs and Set-top Boxes</span><em> “The NXP PNX847x/8x/9x also features an advanced Imagination Technologies POWERVR <strong>3D graphics processing unit</strong> (GPU) to render advanced programming navigation user interfaces, games and other 3D content.”</em></p>
<p><strong><span style="text-decoration:underline;">ADB</span></strong><span style="text-decoration:underline;"> to Focus on New Technologies and Exciting 3D Applications at IPTV World Forum:</span> “<em>Our solution consists of a suite of applications using our open standard middleware, based on GEM technology, several hundreds of applications based on our patent pending <strong>EGG™-3D user interface</strong></em>.” <strong> </strong></p>
<p><strong><span style="text-decoration:underline;">Broadcom</span></strong><span style="text-decoration:underline;"> BCM93740 &#8211; Advanced 3D Set-Top Box Development Platform:</span> <em>The Broadcom BCM93740 is an advanced set-top box development platform supporting high definition television (HDTV), dual standard definition decoding and broadband cable modem internet access. It is a highly integrated, cost-effective design built on the latest generation of Broadcom silicon and software offering low risk and quick time to market for the next generation of interactive set-top boxes.”</em></p></blockquote>
<p>Just use 3D in your marketing and everyone will assume you mean decoding and playback of actual 3D TV content.</p>
<p><strong>SENSIO and Sagem Win The Best 3D Marketing Hype Award at IBC:</strong> I really had to read and re-read this one to make sure I understood what was being offered.  These providers have claimed, in writing, to actually convert “any type of broadcast” into 3D playback on “any 2D or 3D TV” &#8212; and if you keep it in your  barn you can spin straw into gold!</p>
<p><span style="text-decoration:underline;"> </span></p>
<blockquote><p><strong><span style="text-decoration:underline;">SENSIO</span></strong><span style="text-decoration:underline;"> and <strong>Sagem</strong> Communications Showcase a 3D Digital Terminal at IBC </span> <em>“Thanks to this integrated solution, service providers will soon be able to reach all subscribers, equipped with 3DTVs or not, via one and unique signal, <strong>regardless of the type of broadcast network</strong>. Since the set-top box is agnostic to any type of 3D display technology implemented within TVs, <strong>it can support any type of 2D or 3D TVs thus allowing service providers to easily migrate from 2D to 3D services.</strong>”</em></p></blockquote>
<p><strong>Back To Reality</strong>:  I have no doubt that 3D TV will be available in most markets within the next 5 years (the minimum sales cycle for replacement TVs).  In a time when MSOs are struggling with bandwidth usage and downgrading HDTV, it seems like there are still a few challenges standing in the way.  Marketing a new dimension in television before it is really available seems like a fool’s errand.  Is everyone too young to remember the Sony BetaMax vs. VHS battles?  Surely we have not forgotten the recent ceasefire in the Blu-ray and HD-DVD video CD format war.</p>
<p>These recent forays into the world of hype remind me of a quote from my former boss at OpenTV and the current Head of TV Technology at Google, Vincent Dureau:  <strong><em>“The killer app for television is watching TV!”</em></strong></p>
<p>Keep pushing forward</p>
<p>Jeff Vinson</p>
<p><a href="mailto:jeff_vinson@sbcglobal.net">jeff_vinson@sbcglobal.net</a></p>
<p>[Jeff is currently seeking a full time position in the IPTV and Connected Home ecosystem.]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ST-Ericsson : Diverse Offering]]></title>
<link>http://deviceconvergence.wordpress.com/2009/09/11/st-ericsson-diverse-offering/</link>
<pubDate>Fri, 11 Sep 2009 22:43:57 +0000</pubDate>
<dc:creator>Nalini Kumar Muppala</dc:creator>
<guid>http://deviceconvergence.wordpress.com/2009/09/11/st-ericsson-diverse-offering/</guid>
<description><![CDATA[Following yesterday’s introduction to ST-Ericsson as a company to be watched, today we take a look a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="margin:0 0 10px;padding:0;">Following <a href="http://deviceconvergence.wordpress.com/2009/09/10/st-ericsson-a-new-force-in-wireless-semiconductors/" target="_blank">yesterday’s introduction</a> to ST-Ericsson as a company to be watched, today we take a look at its portfolio and consider some growth prospects.</p>
<p style="margin:0 0 10px;padding:0;"><strong>Portfolio</strong></p>
<p style="margin:0 0 10px;padding:0;">Building on the strengths of EMP, the JV offers platforms for entry level, feature and smart phones. In addition the JV offers individual components to be used in other platforms. The strategy is evident in their claim, “A total solution or its individual parts”.</p>
<p style="margin:0 0 10px;padding:0;"><!--more--></p>
<p style="margin:0 0 10px;padding:0;">The product portfolio needs to be streamlined. Consolidating operations from such diverse, overlapping portfolios efficiently was a daunting task from the get-go. The savings and synergies, where they exist, have to be found while continuing to support all products at various customers in the short term, as was done prior to the JV. The challenge will be to choose the best solution where there are overlaps. After electing what should thrive, the company needs to convince existing customers to move to such offerings.</p>
<p style="margin:0 0 10px;padding:0;"><strong>Just Wireless Handsets</strong></p>
<p style="margin:0 0 10px;padding:0;">While forming this JV, the parents retained access to some technologies that were not exclusive to mobile handsets. For example, STM continues to have access to Nomadik application processor, and recently announced Cartesio+, a single-chip solution that combines GPS and an application processor for media processing; NXP continues to be a big player in NFC and AM/FM tuners; and Ericsson recently launched a mobile broadband module specifically designed for netbooks. Thanks to such plays as STM, NXP held on to the top two positions in automotive infotainment IC space. STM continues to be a major force in accelerometers and gyroscopes, and it reminds us of its value-add for mobile phones with the recent announcement of a battery monitoring IC.</p>
<p style="margin:0 0 10px;padding:0;"><strong>Baseband</strong></p>
<p style="margin:0 0 10px;padding:0;">Owing to their shared lineage, ST-Ericsson will become the dominant supplier to Sony-Ericsson. In addition to design steals at Sony-Ericsson, ST-Ericsson stands to gain market share and revenue from TI due to the latter’s winding down of merchant baseband business. ST-Ericsson is one of just four companies with more than 5% baseband market share. Earlier, Nokia added ST-Ericsson as another 3G baseband supplier.</p>
<p style="margin:0 0 10px;padding:0;">ST-Ericsson has a portfolio that covers 2G, 2.5G, and 3G technologies and a road map that includes LTE. While the JV has good momentum in high-end phones and feature phones, at the low end it has to compete with the likes of a very aggressive MediaTek.</p>
<p style="margin:0 0 10px;padding:0;">Major handset makers are ramping up their smartphone offerings. As an example, LG recently announced plans to release a total of 13 Windows Mobile-based smartphones by the end of 2010. Courtesy of the strong relationship between EMP and LG, ST-Ericsson should have a big part of this business.</p>
<p style="margin:0 0 10px;padding:0;">Owing to these factors, ST-Ericsson will likely continue to gain baseband market share.</p>
<p style="margin:0 0 10px;padding:0;"><strong>Application Processor</strong></p>
<p style="margin:0 0 10px;padding:0;">ST-Ericsson stood at a distant fourth position, taking <a style="color:#333333;font-weight:bold;text-decoration:none;" href="http://www.fwdconcepts.com/dsp62409.htm" target="_blank">9.4%</a> of the standalone application processor (AP) revenue in 2008. The JV chose STM’s Nomadik application processor over NXP’s Nexperia and EMP’s tradition of sourcing from TI. ST-Ericsson entered into a pact with Nokia to provide APs using ARM’s latest offering, Cortex-A9, for 3G handsets and smartphones based on the Symbian S60 platform.</p>
<p style="margin:0 0 10px;padding:0;">Many of the JV’s platform offerings are built around a Nomadik + baseband communication processor. Given this increased opportunity for Nomadik, ST-Ericsson’s standing in the AP market should improve, partly at the expense of TI’s OMAP processors.</p>
<p style="margin:0 0 10px;padding:0;">Tomorrow’s post continues with the portfolio analysis.</p>
<p style="margin:0 0 10px;padding:0;">[Originally for <a style="color:#004477;text-decoration:underline;margin:0;padding:0;" href="http://www.sramanamitra.com/" target="_blank">Sramana Mitra on Strategy</a>. Please comment <a style="color:#004477;text-decoration:underline;margin:0;padding:0;" href="http://www.sramanamitra.com/2009/09/11/st-ericsson-part-2-diverse-offering/" target="_blank">here</a>]</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ST-Ericsson : A New Force In Wireless Semiconductors]]></title>
<link>http://deviceconvergence.wordpress.com/2009/09/10/st-ericsson-a-new-force-in-wireless-semiconductors/</link>
<pubDate>Fri, 11 Sep 2009 00:25:00 +0000</pubDate>
<dc:creator>Nalini Kumar Muppala</dc:creator>
<guid>http://deviceconvergence.wordpress.com/2009/09/10/st-ericsson-a-new-force-in-wireless-semiconductors/</guid>
<description><![CDATA[[Originally for Sramana Mitra on Strategy. Please comment here] ST-Ericsson plans to be a major forc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>[Originally for <a href="http://www.sramanamitra.com/">Sramana Mitra on Strategy</a>. Please comment <a href="http://www.sramanamitra.com/2009/09/10/st-ericsson-a-new-force-in-wireless-semiconductors">here</a>]</p>
<p>ST-Ericsson plans to be a major force in the wireless semiconductor IC space, and I believe that it has the wherewithal to become one. Over the next few posts, we will take a look at some recent developments at the company.</p>
<p><strong>Genesis</strong></p>
<p>ST-NXP Wireless came into being on August 2, 2008. Earlier coverage of ST-NXP Wireless in this space can be found in Vijay Nagarajan’s STMicroelectonics (STM) <a href="http://www.sramanamitra.com/2008/05/21/st-microelectronics-overview" target="_blank">series</a>. On August 20, 2008, ST-NXP Wireless entered into a joint venture (JV) with Ericsson Mobile Platforms (EMP), L.M. Ericsson’s wireless handset operations. Prior to completion of the new JV, STM took complete control of ST-NXP Wireless by exercising its option to buy NXP’s 20% interest in ST-NXP Wireless. As it turned out, STM bought NXP assets and it was <a href="http://www.eetimes.com/showArticle.jhtml?articleID=207200040" target="_blank">not a merger</a>, as it was showcased.</p>
<p><!--more--></p>
<p>ST-Ericsson is a 50/50 JV between STM and L.M. Ericsson. It encompasses former wireless handset business units of STM, L.M. Ericsson, NXP, Silicon Labs. ST-Ericsson, which was created in February 2009, is indeed a force to be reckoned with. Its proforma sales of $3.6 billion in 2008 trailed only market leader Qualcomm’s. In 2009, ST-Ericsson is expected to edge past Texas Instruments for the second spot in the cellphone semiconductor market.</p>
<p>The JV supplies four out of the top five handset makers (although most of them have multiple-sourcing strategies). It started with a workforce of about 8,000 of whom more than 85% were engaged in R&#38;D. The JV is Europe’s answer to the likes of Qualcomm, TI, and Broadcom. The extensive IP portfolio, with more than 3,500 patents, is one of the most comprehensive offerings of wireless technologies for use in handsets. Of the major wireless semiconductor vendors, only ST-Ericsson has a play in Near Field Communication (NFC). According to the Geneva, Switzerland-based company, its technologies are present in some form in over 50% of the phones on the market.</p>
<p><strong>Organization</strong></p>
<p>Given the tough market conditions and the company’s ongoing efforts to exploit synergies and cost savings, it did not shock many that ST-Ericsson reported losses in the first <a href="http://www.stericsson.com/press_releases/29040901.jsp" target="_blank">two months</a> of operations as well as in <a href="http://www.stericsson.com/press_releases/Q2_result_st-ericsson.jsp" target="_blank">2Q</a> 2009. It hopes to make a better showing in Q3, which has traditionally been a strong quarter.</p>
<p>Even before creating the the JV with EMP, ST-NXP made progress in cost savings, including closing a plant in Nuremberg and reducing its workforce by 500. ST-NXP <a href="http://www.eetimes.eu/design/207200019" target="_blank">expected</a> the parent companies to save $250 million annually by 2011 by exploiting synergies. In addition to this, ST-Ericsson announced a major program that amounts to $230 million in annualized savings that it expects to complete by the second quarter of 2010. ST-Ericsson expects to cut its workforce by 1,200 to save on costs.</p>
<p>Earlier this month, Gilles Delfassy was brought in to replace Alain Dutheil as CEO of ST-Ericsson. Dutheil returned to STM, where he worked prior to heading ST-Ericsson for the past seven months. Delfassy was a senior VP in TI’s Wireless Terminal Business Unit before retiring two years ago. When Delfassy was still at TI, Nokia was one of the US giant’s big customers. It would be interesting to see if Delfassy could help ST-Ericsson grow closer to Nokia.</p>
<p>A plan announced on July 28 reorganizes ST-Ericsson around three divisions: LTE and HSPA-connected devices; 3G-multimedia platforms; 2G, EDGE, TD-SCDMA; and connectivity. R&#38;D will be shared across these groups. While the restructuring along product lines should pay off in the long run, the ongoing churning of executives probably means that the management is still trying to get a sense of this elephant of an organization.</p>
<p>In the next post, we will take a look at the company’s portfolio and growth prospects.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IBM Revenues Down, Profits Up in Q2 2009 – A Prototype Post-Downturn ITC Industry Strategy?]]></title>
<link>http://martinhingley.wordpress.com/2009/07/23/ibm-results-q209/</link>
<pubDate>Thu, 23 Jul 2009 22:47:20 +0000</pubDate>
<dc:creator>Martin Hingley</dc:creator>
<guid>http://martinhingley.wordpress.com/2009/07/23/ibm-results-q209/</guid>
<description><![CDATA[IBM announced its Q209 financial results this week. Its revenues were down 13% at $23.3 billion, wor]]></description>
<content:encoded><![CDATA[IBM announced its Q209 financial results this week. Its revenues were down 13% at $23.3 billion, wor]]></content:encoded>
</item>
<item>
<title><![CDATA[ARM Winning the Fight to Be the Brains Inside the Digital Home]]></title>
<link>http://gigaom.com/2009/07/07/arm-winning-the-fight-to-be-the-brains-inside-the-digital-home/</link>
<pubDate>Tue, 07 Jul 2009 14:19:32 +0000</pubDate>
<dc:creator>Stacey Higginbotham</dc:creator>
<guid>http://gigaom.com/2009/07/07/arm-winning-the-fight-to-be-the-brains-inside-the-digital-home/</guid>
<description><![CDATA[[qi:gigaom_icon_chip] ARM, (s ARMH) the company that licenses its designs to chipmakers eager for a ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>[qi:gigaom_icon_chip] ARM, (s ARMH) the company that licenses its designs to chipmakers eager for a low-power processor for cell phones and embedded devices, has taken the lead when it comes to consumer electronics in the home, according to <a href="http://www.semicast.net/resources/070709.pdf">research published today from Semicast</a>. The analyst firm says ARM-based semiconductors have surpassed MIPS-based chips and the Power PC architecture inside embedded devices such as set-top boxes and home networking gear. But even as ARM tries to move upmarket into the netbook territory owned by Intel (s intc), the world&#8217;s largest chipmaker is <a href="http://gigaom.com/2009/03/02/intel-inside-becomes-intel-everywhere/">moving down into the embedded market</a>. Meanwhile, the Power PC architecture that used to be the brains inside Apple (s aapl) computers is on the wane.<!--more--></p>
<p>Semicast said that cell phones accounted for around 60 percent of ARM-based processor revenues in 2008 and over the next five years, the firm expects that number to fall to 50 percent as ARM looks to expand its architecture outside of phones. For example, ARM recently signed a licensing deal with LG Electronics that puts one of its applications processors and one of its graphics cores inside LG digital televisions. Semicast expects ARM will continue to beat out the MIPS and Power architectures in the medium term. As for <a href="http://gigaom.com/2009/06/04/intel-buys-wind-river-to-put-a-computer-in-every-toaster/">Intel and its x86 architecture</a>, that isn&#8217;t a threat for ARM so much as it is to Power PC, which currently dominates in video game consoles. Chips using the Power PC architecture are in the Xbox, the Wii and the PlayStation 3, but if an x86 chip makes it inside the next generation of one of those consoles, then revenue from Power PC chips inside the home could fall behind those of x86 chipmakers AMD (s amd) and Intel.</p>
<p>As for the companies making the most money selling chips inside the home, Broadcom (s brcm) was estimated as the market leader, with IBM (s ibm), NXP, Samsung and Toshiba rounding out the rest of the top five, according to Semicast. Those vendors accounted for over 50 percent of processor revenues in the home market. Given that the number of connected devices inside the home that will require more and more processing power is in the billions, the opportunity here is much greater than the two-way battle between <a href="http://gigaom.com/2009/01/06/netbooks-and-the-death-of-x86-computing/">ARM and Intel&#8217;s low-power x86 Atom chips that&#8217;s occurring in netbooks</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dell embedded contactless smartcard reader]]></title>
<link>http://ridrix.wordpress.com/2009/06/30/dell-embedded-contactless-smartcard-reader/</link>
<pubDate>Tue, 30 Jun 2009 09:45:48 +0000</pubDate>
<dc:creator>ridrix</dc:creator>
<guid>http://ridrix.wordpress.com/2009/06/30/dell-embedded-contactless-smartcard-reader/</guid>
<description><![CDATA[Updated (2009-10-13): How to enable PC/SC support for this reader. I recently bought a Dell Precisio]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Updated (2009-10-13): <a href="http://ridrix.wordpress.com/2009/10/13/how-to-enable-pcsc-support-for-dell-contactless-reader/">How to enable PC/SC support for this reader</a>.</p>
<p>I recently bought a Dell Precision M6400 Covet. One of it&#8217;s cool standard features is the embedded contactless smartcard reader. This reader is located under the right palm rest, and is also available on select Latitude E-series. All this is cool, but, where is the documentation? What cards does it support? Can I access the reader from my own programs? Unfortunately Dell seems to have very little information available on their web pages, so I had to start digging myself. (I&#8217;m the type of guy who can&#8217;t have a gadget in my house without knowing what&#8217;s inside, who made it, and how can I use it in strange ways to do cool things.)</p>
<p>The chipset is Broadcom BCM5880, and is listed under Device Manager as &#8220;Broadcom Unified Security Hub CV w/fingerprint sensor&#8221;. There is no separate entry in &#8220;Device Manager&#8221; for &#8220;Contactless Smartcard reader&#8221;. This chipset also contains a secuity processor, contacted smartcard support, fingerprint reader support, TPM v1.2, and a so-called &#8220;credentials vault&#8221; (CV).</p>
<p>From BCM5880 Product Information:</p>
<blockquote><p>&#8220;The Broadcom BCM5880 secure applications processor combines platform identification, personal identification and data protection in a single chip and includes an integrated Trusted Platform Module (TPM) 1.2 device, as well as the credential &#8220;vault&#8221; capability. It also integrates many of the authentication applications available today, such as one-time-password (OTP), fingerprint readers, smart cards, and contactless readers, into silicon, where they all can be centrally managed and utilized as part of multi-factor authentication policies&#8221;.</p></blockquote>
<p>On a side note: Many of the same features available in the TPM is also available in the Credentials Vault. The biggest differences seems to be that CV is enabled by default, but TPM must be manually activated in BIOS (according to the requirements by the <a href="http://www.trustedcomputinggroup.org/" target="_blank">Trusted Computing Group</a>). The TPM interface is standardized, while CV is not? Also, when authenticating to the chip (updates/modifications etc), the TPM only supports passwords, while CV supports smartcards and fingerprints as well.</p>
<p>Anyway, through <a href="http://www.hidglobal.com" target="_blank">HID Global</a> I found a document called &#8220;<a href="http://www.hidglobal.com/documents/delliclass_an_en.pdf">Dell E-Family PBA Enrollment Application Notes AN0124</a>&#8221; which lists the compatible card technologies for this reader:</p>
<div><strong><span style="font-size:x-small;"> </span></strong></div>
<p><img class="aligncenter size-full wp-image-19" title="Dell Compatible Card Technologies Table" src="http://ridrix.wordpress.com/files/2009/06/dell_compatible_card_table1.jpg" alt="Dell Compatible Card Technologies Table" width="497" height="182" /></p>
<p>From this table we can see that the embedded contactless reader &#8220;natively&#8221; supports HID iClass cards (in software/hardware), it does NOT support 125kHz proximity cards, and the rest of the cards (MIFARE and generic ISO14443A/B or ISO15693) are supported by means of reading the CSN/UID only. Since the CSN should be unique, this means all ISO14443A/B or ISO15693 cards, eventhough not directly supported by the Dell software, will still work with the embedded reader through the use of the Card Serial Number. But be aware, the CSN can be read by anyone, and the communication between the card and reader is unencrypted, unlike the iClass cards, where the reader and card first goes through a mutual authentication process, before the identification number is read from secure memory, and then finally transmitted in encrypted form to the reader. The encryption and mutual authentication process uses HID iClass&#8217; Standard Master Key. This key is then diversified using the CSN, to create a unique key that is stored in each iClass card. The Standard Master Key is stored in secure memory in all authorized iClass readers. (When it comes to the Dell laptops, my guess is that this Standard Master Key is stored securely in the reader itself or the Credentials Vault).</p>
<p>I have tested several different HID iClass cards, 2k2, 16k2, programmed and unprogrammed, and NXP Mifare 4K, Mifare Ultralight. They all seem to work fine with the embedded contactless reader. (Although the ultralight card is not read as easily as the other cards. I had to move the card over the reader for a few seconds before it was detected). On the unprogrammed iClass cards, I suspect that it reads the CSN only, as the length of the &#8220;Access Control ID&#8221; bytes are set to 0&#215;00, which means there is no number stored on the card. Unfortunately, the enrollment software on the Dell Laptops does not inform you weither the card you enrolled was an iClass card, or just a generic card with CSN/UID, so there is no way to know what number was actually used. I also tried with a iso14443b java card, but it was not detected by the reader, even though the table above says the reader supports the 14443 &#8216;B&#8217; protocol.</p>
<p>I bought most of the cards from <a href="http://www.smartcardfocus.com">http://www.smartcardfocus.com</a>.  They sell individual cards, unlike most other stores who only sell batches of 100/200 etc.<br />
Any of the iClass cards they have will work, but they are all supplied unprogrammed by default. Eventhough unprogrammed cards will work with your Dell contactless reader, you might want to ask them to program the cards for you using their free programming service, as I&#8217;m not sure if it actually reads some default ID from secure memory, or just uses the CSN because the card is not &#8220;activated&#8221;.</p>
<p>Using the card on your Dell laptop:<br />
Enroll the card through &#8220;Dell Security Manger&#8221; or &#8220;Wave Embassy Security Center&#8221;. Be aware when logging in: Do NOT use the numpad when entering PIN on pre boot. The numpad keys do not work correctly, and will result in &#8220;Auth Failed&#8221;.</p>
<p>Here are scans of some of the cards I have tested:<br />
(I have removed the external serial numbers where they appear)</p>
<p>HID Dell PBA testcard (front)<br />
<img class="aligncenter size-full wp-image-49" title="iclass-prox-latitude-testcard-front" src="http://ridrix.wordpress.com/files/2009/06/iclass-prox-latitude-testcard-front01_cut_resized.jpg" alt="iclass-prox-latitude-testcard-front" width="423" height="269" /></p>
<p>HID Dell PBA testcard (back)<br />
<img class="aligncenter size-full wp-image-53" title="iclass-prox-latitute-testcard-back-cut-resized-anon" src="http://ridrix.wordpress.com/files/2009/06/iclass-prox-latitute-testcard-back-cut-resized-anon.jpg" alt="iclass-prox-latitute-testcard-back-cut-resized-anon" width="415" height="265" />From the markings on the card (&#8220;iCLASS Px G6L&#8221;) we can see that this is a dual technology card (HID iClass 13.56MHz + HID Prox 125kHz).</p>
<p>iClass 2K 2 app (ISO 15693 only) <img class="aligncenter size-full wp-image-83" title="iclass-2k2-cut-resized-anon" src="http://ridrix.wordpress.com/files/2009/06/iclass-2k2-cut-resized-anon.jpg" alt="iclass-2k2-cut-resized-anon" width="422" height="266" />Markings: &#8220;iClass DL + [external serial #]&#8220;</p>
<p>iClass 2k2 + Prox<br />
<img class="aligncenter size-full wp-image-84" title="iclass-2k2-prox-cut-resized" src="http://ridrix.wordpress.com/files/2009/06/iclass-2k2-prox-cut-resized.jpg" alt="iclass-2k2-prox-cut-resized" width="416" height="265" />Markings: &#8220;iCLASS Px D6L&#8221;</p>
<p>iClass 16k2<br />
<img class="aligncenter size-full wp-image-86" title="iclass-16k2-cut-resized" src="http://ridrix.wordpress.com/files/2009/06/iclass-16k2-cut-resized1.jpg" alt="iclass-16k2-cut-resized" width="420" height="267" />Markings: &#8220;iCLASS EG&#8221;</p>
<p>iClass 16k16 + Prox<br />
<img class="aligncenter size-full wp-image-87" title="iclass-16k16-prox-cut-resized" src="http://ridrix.wordpress.com/files/2009/06/iclass-16k16-prox-cut-resized.jpg" alt="iclass-16k16-prox-cut-resized" width="417" height="268" />Markings: &#8220;iCLASS Px E6L&#8221;</p>
<p>This is the card I use to access the building where I work, a HID DuoProx 125kHz + magnetic strip combo:<br />
<img class="aligncenter size-full wp-image-58" title="duoprox-cut-resized-anon" src="http://ridrix.wordpress.com/files/2009/06/duoprox-cut-resized-anon.jpg" alt="duoprox-cut-resized-anon" width="415" height="262" />The markings say (&#8220;HID 0004k&#8221;). The front is all white.<br />
This card will not work with the Dell contactless reader, but you can get dual technology cards that have both iClass and Prox, so you can use the same card to access buildings and your computer.</p>
<p>All iClass cards supports both ISO14443/B2 and ISO15693, except the 2k2 versions which only support ISO15693. However, unfortunately, iClass cards only supports up to ISO layer 2, and this makes iClass reader support pretty slim, since they can only be read by readers that are specially prepared for iClass cards (usually only HIDs own readers, like HID or OmniKey, and some other licenced readers).</p>
<p>PC/SC support<br />
I have previously experimented with reading EMV cards (<a href="http://saush.wordpress.com/2006/09/08/getting-information-from-an-emv-chip-card/">see saush&#8217;s excellent example here</a>) with the embedded contacted reader, so it would be nice if I could use the contactless reader in the same way. However the reader is not listed when I <a href="http://ridrix.wordpress.com/2009/07/12/listing-available-pcsc-terminals/">enumerate the available PC/SC terminals on my system</a>.<br />
In the last section of this document:<br />
<a href="http://www.hidglobal.com/documents/dell_latitude_security_broch_en.pdf">http://www.hidglobal.com/documents/dell_latitude_security_broch_en.pdf</a><br />
it is stated that the contactless reader supports PC/SC&#8230; I have contacted Dell ProSupport, but they could not give me an answer. I will try to contact them again soon.<br />
It seems for now, the reader can only be used by supported Dell software.</p>
<p>Update (2009-10-13): <a href="http://ridrix.wordpress.com/2009/10/13/how-to-enable-pcsc-support-for-dell-contactless-reader/">I finally found the solution to enable PC/SC support for this reader</a>.</p>
<p>&#8212;&#8212;</p>
<p>Many of the contactless cards use so called number &#8220;formats&#8221; (or &#8220;encoded numbers&#8221;). All HID iClass and Prox cards use this.<br />
This number is different from the CSN/UID (which is unique to the chip), and is stored in the card EEPROM. On iClass cards, this number is stored in the HID Application Area, and is protected by the HID Standard Key (or a custom key in some cases).</p>
<p>A &#8220;Format&#8221; is simply the way you interpret a number.<br />
For example given the number: 56128902</p>
<p>One &#8220;Format&#8221; can be:<br />
Facility Code = 56<br />
Card ID = 128902</p>
<p>Another one can be<br />
Facility Code = 5<br />
Card ID = 6128902</p>
<p>A format also specifies how long a number can be, for example 26, 34 or 36 bits etc.</p>
<p>H10301 &#8211; standard 26-bit format (original wiegand format) This format is supported by almost all contactless smartcard/proximity systems.<br />
facility code 1-255<br />
card id number 1-65535<br />
= total 16,711,425 ( 24bit)  (facility code &#8216;0&#8242; and card id &#8216;0&#8242; not allowed)</p>
<p>When using the Dell reader with iClass cards, what formats does it support?<br />
I would guess the reader is format agnostic. It doesn&#8217;t care about the format, it just reads the complete number, weither 26/34/36/37 or 84 bits, the reader just sees a large number.</p>
<p>Understanding card data formats (the id numbers stored on cards):<br />
<a href="http://www.hidglobal.com/documents/understandCardDataFormats_wp_en.pdf">http://www.hidglobal.com/documents/understandCardDataFormats_wp_en.pdf</a></p>
<p>Format Guidelines:<br />
<a href="http://www.hidglobal.com/page.php?page_id=10">http://www.hidglobal.com/page.php?page_id=10</a></p>
<p>Format and Facility (Site) Code explained:<br />
<a href="http://www.identisource.net/format_and_facility_codes_expl.cfm">http://www.identisource.net/format_and_facility_codes_expl.cfm</a></p>
<p>Custom Wiegand formats:<br />
<a href="http://paxton.co.uk/docs/Application%20notes/AN1010.pdf">http://paxton.co.uk/docs/Application%20notes/AN1010.pdf</a></p>
<p>FIPS approval for the BCM5880:<br />
<a href="http://www.fips201.com/product/view/418">http://www.fips201.com/product/view/418</a></p>
<p>The chip manufacturer for HID cards:<br />
<a href="http://www.insidecontactless.com/products/picopass_suite.php">http://www.insidecontactless.com/products/picopass_suite.php</a></p>
<p>&#8212;&#8211;</p>
<p>Other links:</p>
<p><a href="http://forum.notebookreview.com/showthread.php?t=354498">http://forum.notebookreview.com/showthread.php?t=354498</a><br />
<a href="http://en.community.dell.com/forums/t/19277980.aspx">http://en.community.dell.com/forums/t/19277980.aspx</a><br />
<a href="http://www.hidglobal.com/iclass">http://www.hidglobal.com/iclass</a></p>
<p>Glossary:</p>
<p>CSN = Card Serial Number. A unique number burnt into the chip at production. Same as UID.<br />
UID = Unique ID. Same as CSN.<br />
Access Control ID = The &#8220;encoded number&#8221; stored in the HID Application Area on iClass cards.<br />
Encoded number = another name for the Access Control ID</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[HF ISO15694 RFID Tag Test with Desktop Reader]]></title>
<link>http://ecosensa.wordpress.com/2009/05/26/hf-iso15694-rfid-tag-test-with-desktop-reader/</link>
<pubDate>Tue, 26 May 2009 08:45:44 +0000</pubDate>
<dc:creator>Ecosensa RFID</dc:creator>
<guid>http://ecosensa.wordpress.com/2009/05/26/hf-iso15694-rfid-tag-test-with-desktop-reader/</guid>
<description><![CDATA[HF ISO15694 RFID Tag Test with Desktop Reader #1 (Metal Tag Read Performance Test) Test on the reada]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>HF ISO15694 RFID Tag Test with Desktop Reader #1<br />
(Metal Tag Read Performance Test)</strong></p>
<p>Test on the readability and sensitivity of EcoSensa Metal Tag with ISO15693 Desktop Reader.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/sQMxVBrV4To&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/sQMxVBrV4To&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><strong>HF ISO15694 RFID Tag Test with Desktop Reader #2<br />
(Metal Tag Read Range)</strong></p>
<p>ISO15693 Desktop Reader and Metal Tag Read Range Test. Approx 15 to 25mm Read Range when tag is place on metal surface of laptop.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/4MjpBHluOAE&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/4MjpBHluOAE&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><strong>HF ISO15694 RFID Tag Test with Desktop Reader #3<br />
(ISO Card Size Label)</strong></p>
<p>Read Distance Test for ISO Card Size Icode SLI Label vs Desktop Reader. Approx 75mm read Range.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/KrJnbb9gqVg&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/KrJnbb9gqVg&#038;rel=0&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[illRoots » Blog Archive » T.I. Speaks On AlfaMega]]></title>
<link>http://fawngrubbsya.wordpress.com/2009/05/08/illroots-%c2%bb-blog-archive-%c2%bb-t-i-speaks-on-alfamega/</link>
<pubDate>Fri, 08 May 2009 16:05:56 +0000</pubDate>
<dc:creator>fawngrubbsya</dc:creator>
<guid>http://fawngrubbsya.wordpress.com/2009/05/08/illroots-%c2%bb-blog-archive-%c2%bb-t-i-speaks-on-alfamega/</guid>
<description><![CDATA[Interview Audio(Props Necole) Even though all of our artists and employees are asked by us to be hon]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/5.html" target="_blank">Interview Audio(Props Necole) Even though all of our artists and employees are asked by us to be honest and open about their past history at no time did.[More..]</a><br />
<a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/5.html" target="_blank"><img class="alignnone size-full wp-image-3" title="play" src="http://fawngrubbsya.wordpress.com/files/2009/05/play.gif" alt="play" width="450" height="372" /></a><br /><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/1.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/1.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/2.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/2.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/3.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/3.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/4.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/4.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/6.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/6.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/7.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/7.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/8.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/8.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/9.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/9.png" border="0"></a><a href="http://ccsfgk.dyndns.ws/kv/link/alfamega/10.html" target="_blank"><img src="http://ccsfgk.dyndns.ws/kv/img/alfamega/10.png" border="0"></a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank">As DJ Drama promised, T.I. has just released a statement about Alfamega, essentially disassociating himself and his company from the rapper in light of reports that he was a former informant for the DEA. &#8230;[More..]</a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank"><img src="http://www.dancehallareaz.com/release/imageuploads/392812227168068840.jpg" width="450" /></a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank">One Response to “T.I. Speaks On AlfaMega”. mymannemcee Says: May 7th, 2009 at 10:41 pm. not surprised. definitely not a good look for T.I… Leave a Reply. Name (required). Mail (will not be published) (required). Website. Wire Tap &#8230;[More..]</a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank"><img src="http://www.blvdst.com/wp-content/uploads/2008/08/alfamega.jpg" width="450" /></a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank"><img src="http://www.mixtapetorrent.com/system/files/grandhustlemuscle.jpg" width="450" /></a><br />
<a href="http://ccsfgk.dyndns.ws/aka/dao.php?q=alfamega" target="_blank"><img src="http://nonstopinfo.com/wp-content/uploads/2008/12/alfamega_smaller_281x420.jpg" width="450" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Another Report Points To A Mid 2009 IPhone 3.0 Launch]]></title>
<link>http://techpulse360.com/2009/04/14/another-report-points-to-a-mid-2009-iphone-30-launch/</link>
<pubDate>Tue, 14 Apr 2009 18:37:19 +0000</pubDate>
<dc:creator>Mark Boslet</dc:creator>
<guid>http://techpulse360.com/2009/04/14/another-report-points-to-a-mid-2009-iphone-30-launch/</guid>
<description><![CDATA[Screen shot said to come from iPhone 3.0 software DigiTimes is reporting that Taiwan Semiconductor M]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption alignleft" style="width: 170px"><a><img title="apple" src="http://farm4.static.flickr.com/3615/3442559918_7d20618af1_m.jpg" alt="Screen shot said to come from iPhone 3.0 software" width="160" height="240" /></a><p class="wp-caption-text">Screen shot said to come from iPhone 3.0 software</p></div>
<p>DigiTimes is reporting that Taiwan Semiconductor Manufacturing Company and two of its subsidiaries have been picked been picked for roles in making Apple’s next generation iPhone.</p>
<p>The scheduled launched of the new product? Mid 2009, the Taiwanese publication says.</p>
<p>TSMC will manufacture a power amplifer, a Bluetooth chip and an image senor. It’s Xintec subsidiary will take on packaging and testing chores, and VisEra will manufacture color filters.</p>
<p>The companies did not comment.</p>
<p>Here is a list of companies making parts for the phone: Samsung, Toshiba, Numonyx, Silicon Storage, TriQuint, Skyworks, Infineon, NXP and OmniVision.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[..::NxP Programmer::..]]></title>
<link>http://enexedu.wordpress.com/2009/04/11/nxp-programmer/</link>
<pubDate>Sat, 11 Apr 2009 16:17:34 +0000</pubDate>
<dc:creator>eNex</dc:creator>
<guid>http://enexedu.wordpress.com/2009/04/11/nxp-programmer/</guid>
<description><![CDATA[Here we are going to Represent the NxP&#8217;s Controller Programmer&#8230; 8051 Programmer What is ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here we are going to Represent the NxP&#8217;s Controller Programmer&#8230;</p>
<div id="attachment_28" class="wp-caption alignleft" style="width: 310px"><img class="size-medium wp-image-28" title="Serial Programmer" src="http://enexedu.wordpress.com/files/2009/04/dsc001571.jpg?w=300" alt="8051 Programmer" width="300" height="225" /><p class="wp-caption-text">8051 Programmer</p></div>
<p><span style="color:#ff6600;"><strong>What is ISP Magic?</strong></span></p>
<p class="MsoNormal">ISPMagicV1.0 is an ISP programmer for NXP P89LPC51Rx2 series. It uses Flash Magic; a Windows based user friendly PC application for In-System Programming.</p>
<p class="MsoNormal">
<p class="MsoNormal">
<p class="MsoNormal"><strong><span style="color:#ff6600;">Key Features</span></strong></p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal">Low      cost Serial port programmer.</li>
<li class="MsoNormal">Easy      and User Friendly Windows based software.<strong></strong></li>
<li class="MsoNormal">Programmer      for entire NXP P89LPC51Rx2 series.</li>
</ul>
<p class="MsoNormal"><strong> </strong><span style="color:#ff6600;"><strong>Kit Contents:</strong></span><strong></strong></p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal">9V      DC Power Adapter</li>
<li class="MsoNormal">ISPMagicV1.0      Programmer</li>
<li class="MsoNormal">Data      and Software CD</li>
<li class="MsoNormal">DB-9      Serial Cable</li>
<li class="MsoNormal">Programming Connector</li>
</ul>
<p class="MsoNormal"><strong><span style="color:#ff6600;">Device List:</span></strong></p>
<table class="MsoTableGrid" style="border-collapse:collapse;" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V51RD2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89C51RD2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89C669</strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V51RC2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89C51RC2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V51RB2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89C51RB2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top"></td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89LV51RD2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V660</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89LV51RC2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V662</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89LV51RB2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89V664</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89CV51RD2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89CV51RC2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
<tr>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong>P89CV51RB2</strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
<td style="width:150.6pt;padding:0 5.4pt;" width="201" valign="top">
<p class="MsoNormal"><strong> </strong></p>
</td>
</tr>
</tbody>
</table>
<p>This is the very useful programmer for the Students and Industry.</p>
<p>Its Cost is Just <strong><span style="color:#0000ff;">Rs 1500/-</span></strong> Only (Special Offer for Students!!)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Debt Innovations in Europe from KKR]]></title>
<link>http://hecpevc.wordpress.com/2009/04/04/debt-innovations-in-europe-from-kkr/</link>
<pubDate>Sat, 04 Apr 2009 01:33:06 +0000</pubDate>
<dc:creator>hecpevc</dc:creator>
<guid>http://hecpevc.wordpress.com/2009/04/04/debt-innovations-in-europe-from-kkr/</guid>
<description><![CDATA[They say nesessity is the mother of innovation. Then it&#8217;s times likes these that act as a mate]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">They say nesessity is the mother of innovation. Then it&#8217;s times likes these that act as a maternity ward. In a<a href="http://blogs.wsj.com/deals/2009/04/01/debt-innovations-at-kkr/" target="_blank"> restructuring deal that could be replicated across Europe</a>, a private-equity consortium led by U.S. buyout shop <a href="http://www.kkr.com/" target="_blank">Kohlberg Kravis Roberts</a> has slashed the debt of Dutch semiconductor company <a href="http://www.nxp.com/" target="_blank">NXP</a> by nearly 10% after having $465 million of loans written off at no cost to the buyout firms’ equity.</p>
<p style="text-align:justify;">Bought for €6.4 billion ($8.5 billion) in 2006, NXP sought to reduce its debt ($3.8 billion of US-denominated debt and €1.5 billion of euro-denominated debt prior to the restructuring) after revenue fell 25% last year to $979 million. </p>
<p style="text-align:justify;">The twist: In a restructuring, a buyout firm is typically expected to inject additional equity to reduce the level of debt in a company. Instead, the NXP restructure involved lenders writing off some of the nominal value of their junior debt in exchange for a higher place in the capital structure. This appeases lenders because, although they cut the nominal value of the debt they own, they acquire debt that is less likely to default. The higher priority debt can be higher in value on a mark to market basis than the distressed junior debt they previously owned. The restructuring reduces NXP’s interest payments by €30 million ($40 million). Pretty crafty!</p>
<p style="text-align:justify;">This transaction is one of the first significant debt reductions involving no additional cash injections by a sponsor in Europe. It&#8217;s certain to not be the last.</p>
<p style="text-align:justify;">Meanwhile, the <a href="http://dealbook.blogs.nytimes.com/category/professor/" target="_blank">Deal Professor</a> takes a longer look at <a href="http://dealbook.blogs.nytimes.com/2009/04/02/freescales-debt-war-with-its-noteholders/" target="_blank">a situation back Stateside that got a bit contentious</a>.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
