Intel and Google to work on Android for Atom

Intel officially announced it will collaborate with Google to optimize the Android OS for Intel’s Atom processor platform in order to help Intel entering the smartphone market. In his keynote on the 13th of September – the first day of the Intel Developer Forum 2011 – Intel CEO Paul Otellini announced the partnership with Google to support Android on Atom processors and said the first Intel-based smartphones will be available in the first half of 2012. Paul Otellini demoed Intel’s Android smartphone reference platform running Android 2.3 (Gingerbread). The phone is 9.5mm thick, had an HDMI output, NFC support and features Intel’s 32nm Medfield processor which is said to include a newer generation GPU. Intel also showed off the new ISP (Image Signal Processor) capabilities in Medfield which is capable of capturing up to 20 fps at 1600 x 1200. However, the reference platform could only deliver 10 fps from […]

Microsoft demoes Windows 8 on Tegra 3 Tablet

Microsoft demonstrated several Windows 8 features running on a quad-core NVIDIA Tegra 3 tablet at the company’s BUILD developer conference in Anaheim, California. During the event, Mike Angulio – Microsoft’s VP of Windows planning – demonstrated: Windows 8 devices’ ability to instantly switch on and off The new Windows 8 user interface, designed to work equally well with both touch-based tablets and keyboard/mouse-based PCs New applications, mostly written in HTML5, which are always running in the background Platform agnostic applications (running on both ARM and x86) Anguilo also emphasized that all Windows 8 applications will feature hardware accelerated graphics so that developers will not need to do additional work to support hardware acceleration and their applications will automatically take advantage of graphics on both ARM and x86 platforms. Source: Microsoft Wows BUILD Crowd with Windows 8 on Quad-Core NVIDIA Tegra Tablet You can watch Windows 8 Demo from Build Conference […]

Khadas Edge2 Arm mini PC

Sony Announced the Android Walkman NW-Z1000

Sony Corp announced three new series of its Walkman portable music including the “NW-Z1000” series powered by Nvidia Tegra 2, equipped with an 4.3-inch TFT LCD panel and running Android 2.3 (gingerbread). NW-Z1000 user interface is slightly customized and its sound quality is improved thanks to a digital amplifier chip called “S-Master MX.” The changes made to the UI include shortcut icons for Sony’s music applications and video players at the bottom of the screen. The NW-Z1000 has wireless LAN capability, GPS and sensors such as acceleration sensor and is pre-installed with GMS (Google Mobile Service) which includes Google Maps, YouTube and Android Market. Here are the specifications of the NW-Z1000 series Walkmans: Android 2.3 with access to the Google market YouTube, Gmail, Google Maps and various Sony apps pre-installed (Sony Music Player, Photo Player, etc.) 4.3-inch LCD with 480×800 resolution NVIDIA Tegra 2 dual core mobile CPU (1GHz) 512MB main […]

Ziilabs Unveils Low Cost Jaguar3 Android Tablet Reference Designs

Earlier this May, Ziilabs announced the ZMS-20 dual core processors targeted at Android Honeycomb tablets. They have now unveil the 3rd generation of Android Tablet reference designs based on ZMS-20 and ZMS-40 called Jaguar3. Here’s an excerpt of the press release: ZiiLABS, a pioneering media processor and platforms company (a wholly-owned subsidiary of Creative Technology Ltd), today introduced its JAGUAR3, the most powerful 3rd Generation Android 3.2 tablet series. JAGUAR3 is a series of ultra-slim, ultra-lightweight and stylish 10.1” tablet reference designs targeted at the OEM markets. With over a decade of designing experience in portable mobile devices, Creative provided the ergonomic and sexy design of this series of JAGUAR3 tablets. ZMS-20 StemCell Processors JAGUAR3’s superior performance, low power consumption and rich feature set comes from the dual-core 1.5GHz ARM Cortex-A9 based ZMS-20 StemCell Processors. ZMS-20 has another 48 StemCell Processing cores within, which effectively make it into a 50-core processor. […]

Google Devfest Comes to Southeast Asia

Google is coming to Southeast Asia with SE Asia Google DevFests 2011 to provide keynote and hand-on sessions on Android, Cloud, Maps, Apps and Chrome. You can now register to those events in Manilla, Chiang Mai and Kuala Lumpur.Jakarta and Singapore will be open for registration very soon. Here are the dates for the events in SE Asia: Manila: 19 September 2011 Chiang Mai: 24 September 2011 Kuala Lumpur: 29 September 2011 Singapore: 12 November 2011 Jakarta: 16 November 2011 Currently, the venue details and agenda are not available as they have just opened registration and probably wait to see how many attendees there will be and what the attendees wants to learn about (You can select the Google products you are interested in during registration). Update: The agenda and venues are now available for Manilla, Chiang Mai and Kuala Lumpur. The Agenda is different from the one India shown […]

Faster JPEG decoding on ARM with libjpeg-turbo and NEON Instructions

libjpeg-turbo is based on libjpeg, but uses SIMD instructions (MMX, SSE2, etc.) to accelerate JPEG compression and decompression on x86 targets. On such systems, libjpeg-turbo is generally 2-4x as fast as the original version of libjpeg with the same hardware. ARM does not support MMX or SSE2 instructions, but it has its own SIMD instructions processed by the NEON Engine on ARM Cortex Core A5, A8, A9 and A15. ARM claims that “NEON technology can accelerate multimedia and signal processing algorithms such as video encode/decode, 2D/3D graphics, gaming, audio and speech processing, image processing, telephony, and sound synthesis by at least 3x the performance of ARMv5 and at least 2x the performance of ARMv6 SIMD.” Linaro worked on libjpeg-turbo and added NEON support to it. The code is available on launchpad at https://code.launchpad.net/~tom-gall/linaro/libjpeg-turbo Linaro has also provide benchmark result for libjpeg-turbo with a 12 Mpixel image on TI OMAP4 (Pandaboard) using the […]

Rockchip RK3568/RK3588 and Intel x86 SBCs

Setting Up a Git Server on Ubuntu

Git is a version control system used by many projects such as Linaro, the Linux kernel, Android, Eclipse, Qt and more. For projects that can not afford their own servers and still need to collaborate, hosted git is available from github and as today there are a total of 2,769,642 repositories (private and public) hosted on github. For software developed internally, you can start to setup you own Git server by following some simple steps (in Ubuntu). Installing the Git Server Update Ubuntu and install git-core: sudo apt-get update sudo apt-get install git-core That’s it. Installing Gitolite Gitolite allows you to setup git hosting on a central server, with fine-grained access control and many more powerful features. First get gitolite with git: git clone git://github.com/sitaramc/gitolite.git Obtain a public key based access to your server, so that you can log in from your workstation to the server without getting a password […]

Best Practices for Writing Safer C Code

Thomas Honold wrote an article published on EETimes giving 17 steps to safer C code. Not only this article provides tips to write safer C code, but I believe those steps are simply best practices when writing C code for embedded systems as they shorten the software life cycle by making it easier for a software team to write, debug and maintain code and by improving the software QA procedure. Here’s a summary of the 17 steps to achieve safer C code: Follow the rules you’ve read a hundred times: Initialize variables before use. Do not ignore compiler warnings. Check return values. Use enums as error types. Define an ENUM_MAX value at the end, so that the code to check the range does not have to be modified each time you add a new error code. Expect to fail Always assume there will be an error and set to default […]

Khadas VIM4 SBC