Opersys Releases Their Android and Linux Training Materials

Opersys has decided to release their courseware under a Creative Common license (CC-BY-SA 3.0). The materials are available in PDF and ODP format for the following classes: Embedded Android – 5-days hands-on class covering Android (AOSP) for Embedded Systems (not only smartphones and tablets) Presentation Slides: PDF | ODP Exercises: PDF | ODT Android App Development – 5-day class to learn how to build your own Android Apps using Google’s SDK Presentation Slides: PDF | Tarball with Beamer files Exercises: PDF | ODT Embedded Linux– 4-days hands-On class learning about cross development, the kernel, the rootFS and the bootloader Presentation Slides: PDF | ODP Exercises: PDF | ODT Linux Device Drivers– 3-days hands-on class about modules, locking, interrupts and memory management, as well as  char, block, network and USB drivers training. Presentation Slides:PDF | ODP Exercises: PDF | ODT You can freely use this material to learn more about Android and […]

Adding Google Plus to Light Social Plugin for WordPress

I’ve just switched to Light Social plugin because I have problems with other plugins such as Digg Digg and Sexy Bookmarks. The Light Social plugin is not updated anymore, so Google Buzz button is still there, but there is no Google+ button. In order to replace Google Buzz button by Google+ button, you simply need to modify code_google_buzz function in wp-content/plugins/light-social/lightsocial.php as follows:

‘; } Jean-Luc Aufranc (CNXSoft)Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011. www.cnx-software.com

Run Windows 7 (or Any OS) on Android Tablets with PCoIP Protocol

Teradici has developed PCoIP (PC-over-IP) protocol, a technology that allows to  run a full desktop remotely over the network on thin clients, desktops, integrated displays, laptops and even Android tablets. The PCoIP protocol compresses, encrypts and encodes the entire computing experience at the data center and transmits it ‘pixels only’ across any standard IP network to stateless PCoIP zero clients. The PCoIP protocol is implemented in silicon for hardware accelerated performance and in software in VMware View. It supports high resolution, full frame rate 3D graphics and HD media, multiple large displays, full USB peripheral connectivity, and high definition audio all via LAN or WAN networks. A typical network made of PCoIP clients is shown below. Teradici emphasizes three key features of PCoIP technology: PCoIP technology uses host rendering Most other remote desktop technologies uses client rendering which may not be optimal and requires somewhat powerful clients. PCoIP uses host […]

EMAC SOM-3517M: System-on-Module based on TI AM3517

Emac announced the SoM-3517M, a System-on-Module (SoM) based on TI AM3517 Cortex-A8 processor clocked at 600 MHz. This SOM has an Ethernet PHY included along with 4 serial ports. It supports up to 512MB of external DDR2 SDRAM, 1GB of NAND Flash, 2GB of eMMC Flash. Here are SOM-3517M specifications: CPU:  TI ARM Cortex-A8 600 MHZ Fanless processor System Memory: Up to 512 MB of DDR2 SDRAM (default: 256 MB) Storage: Up to 1 GB of NAND Flash (default: 256 MB) UP to 4 GB of eMMC Flash (default: 2 GB) LCD Interface – 16-bit DSTN/TFT Graphics: 2D/3D Accelerated Video w/ Resistive Touch Connectivity: 10/100 BaseT Ethernet I/O interfaces: 4 Serial Ports 2 Full Speed USB 1.1/2.0 Host ports 1 Full Speed USB OTG port 2 I2C and 2 SPI ports I2S Audio port High-End CAN Controller CAN 2.0B Controller Timer/Counters and Pulse Width Modulation (PWM) ports 1 Channel, 12-bit […]

Penandfree PT- Pen Transforms Your Laptop into A Tablet

Penandfree has unveiled the PT-pen  (Presentation pen) at the 2012 ISE exhibition. The company claims this pen can transform ordinary laptops or netbooks  into touch-screen tablets, replacing the need for both a mouse and keyboard. PT-Pen can be used for capturing handwritten notes,  digital signatures and all sorts of creative sketches. MINT Interactive software is included with the PT-pen and provides access to a full color pallet, a variety of line thicknesses, a virtual keyboard and a handwriting recognition mode. Penandfree explains that PT-pen allows navigation in web browsers and can be used with office software such as Microsoft Excel and Powerpoint as it conforms with Microsoft tablet and standard HID specifications. Mint Interactive Software can be download for Windows XP/Visata/&, MacOS and Linux. For Android Tablet and/or iPad users, Penandfree unveiled the “Legato Smart-Pen”. The PT-pen digitally “inks” a laptop’s LCD using ultrasonic technology.  A magnetized receiver sits at […]

ConnectPort X2e SEP 2.0 Compliant Home Energy Gateway with Zigbee Connectivity

Digi International announced the “ConnectPort X2e for Smart Energy”, a Linux-based Home Energy Gateway with Zigbee connectivity based on Freescale Home Energy Gateway Reference Platform powered by Freescale i.MX28 processor. The “ConnectPort X2e for Smart Energy” is upgradable to comply with the new Smart Energy 2.0 Profile (SEP 2.0)  and  enables ZigBee devices on a Home Area Network (HAN) to communicate with an energy service provider. The new gateway is a low-cost, enhanced version (hence the “e” in X2e)  of Digi’s ZigBee Smart Energy Gateways.  The device connects ZigBee Smart Energy devices from a Home Area Network (HAN) to an energy service provider via broadband. It supports over-the-air updates of connected Smart Energy devices, making it easier for utilities and application partners to establish and maintain large Smart Energy device deployments. The company offers two models namely: ConnectPort X2e, ZigBee SE Coordinator for stand-alone Smart Energy networks that do not […]

Raspberry Pi Codecs and Graphics/Video APIs

The Raspberry Pi Foundation has announced which codecs and API would be supported in the Raspberry Pi. The Raspberry Pi board will support the following Graphics and Video API via a set of closed source libraries that give access to the GPU acceleration features: OpenGL ES 2.0 –  OpenGL is a 3D Graphics API defined by the Khronos Group. OpenVG – OpenVG is a 2D vector drawing API also defined by the Khronos Group. EGL – EGL is the interface between Khronos rendering APIs such as OpenGL ES or OpenVG and the underlying native platform window system. OpenMAX IL – OpenMAX supplies a set of API’s that provides abstractions for routines used during audio, video, and still images processing. OpenMAX defines 3 layers, Raspberry Pi library will provide an interface to the IL layer, which provides an interface between media framework such as Gstreamer and a set of multimedia components. […]

Debugging Embedded Linux with GDBserver and Insight (gdb GUI)

Although it it sometimes possible to debug applications using GDB (The GNU Debugger) on the target boards, there is often not enough memory available to run GDB on embedded systems running Linux. To work around this issue, you can use gdbserver to perform remote debugging. Installing and running gdbserver on the target board First of all you need to install gdbserver on the target board. Assuming you use a Debian based distribution:

If you distribution, does not have binary repository, you can download gdb source code and cross-compile gdbserver. Once gdbserver is installed, (cross-)compile your application in debug mode and start gdbserver as follows:

Where target_ip and target_port are respectively the IP address of the board and the chosen TCP port, and prog_dbg, the program under test compile in debug mode (CFLAGS=-g). Remote Debugging with GDB If you are familiar with gdb and prefer to use the command […]

UP 7000 x86 SBC