AN4503 Application note
|
|
|
- Ronald Barrett
- 10 years ago
- Views:
Transcription
1 AN4503 Application note Environmental sensors: Hardware abstraction layer for Android Introduction By Lorenzo Sarchi This application note provides guidelines for successfully integrating STMicroelectronics environmental sensors (pressure, humidity, ultraviolet) into Linux/Android operating systems. July 2014 DocID Rev 2 1/26
2 Contents AN4503 Contents 1 Document overview Android sensor HAL overview Kernel Sensor libraries Application framework Test environment / ecosystem Connecting the sensors to the PandaBoard Specific settings for the Ubuntu environment Building Android KitKat Downloading the packages Apply required patches Compile the sources Flash the image to the PandaBoard SD card Linux kernel space Overview of the environment I²C bus initialization patch I²C_board_info structure patch As an example of platform_data After rebuilding the kernel Driver description How to build and install the device drivers Controlling the device drivers from Linux user space Permission setting Output data from the driver Where to find the data Sample application for reading data Android sensor HAL Overview Sensor libraries Files /26 DocID Rev 2
3 AN4503 Contents 4.3 How to build and install the Android sensor HAL Building a simple apk for testing Troubleshooting Keywords Glossary and acronyms Revision history DocID Rev 2 3/26 26
4 Document overview AN Document overview This document explains how to integrate the STMicroelectronics environmental sensor in Linux/Android systems. It provides detailed information and procedures on how to manage this task. The ST code mentioned in the document can be available through your local sales representative. The configuration files of the sensor HAL (hardware abstraction layer) are also discussed along with the issues and possible solutions for successfully integrating different kinds of sensors. Finally, the building and installation of this library is also described. 1.1 Android sensor HAL overview The Android sensor HAL is the library which provides the links from kernel-space drivers to the Android sensor service and Android sensor manager. The architecture of the Android sensor framework is shown in the next figure 4/26 DocID Rev 2
5 AN4503 Document overview Figure 1. Android sensor HAL overview Kernel This layer contains the Linux device drivers created using the input subsystem, a generic Linux framework for all input devices. The data are exported to the user space through the Sysfs virtual file system (/sys/class/input/). The driver sends/receives data to/from the sensor through the stable Linux subsystem I²C Sensor libraries These libraries are used to create a sophisticated interface for the upper layer. This is achieved through the sensor manager class, the sensor service class and the sensor HAL Application framework This is the layer that is used by the apk application to obtain data from the sensors. Communication begins in the SensorManager class, which creates an instance of the sensor service, and then proceeds to the lower layer through the sensor JNI (Java native interface). DocID Rev 2 5/26 26
6 Test environment / ecosystem AN Test environment / ecosystem This document refers to the following test environment: Panda board: Processor: Omap4430 Board: PandaBoard ES Rev B2. Host PC: HP EliteBook 8470p Linux: Ubuntu Android: KitKat-4.4 Compile environment: androidearm-eabi7 2.1 Connecting the sensors to the PandaBoard Our STMicroelectronics DIL24 adapters STEVAL-MKI141V1 and STEVAL-MKI142V1, respectively the HTS221 humidity sensor and LPS25H pressure sensor are used for the test. Refer to for further information. The adapters are connected to the J3-expansion connectors of the PandaBoard; the tests are performed using the I²C bus. Considering, for example, the STEVAL-MK141V1 in the picture below (the same procedure can also be repeated for the STEVAL-MKI142V1), we assume that the pin-out of the adapter is the following: Figure 2. DIL 24 module Pin-1: Vdd; Pin-2: Vdd_IO; Pin-19: CS; Pin-20: SCL; Pin-21: SDA; Pin-22: SDO Where Pin-1 is top-left, Pin-12 is bottom-left, Pin-13 is bottom-right and Pin-24 is top-right. 6/26 DocID Rev 2
7 AN4503 Test environment / ecosystem These pins must be connected to the following pins of the Expansion Connector A, J3 of the PandaBoard: Table 1. DIL 24 module vs. PandaBoard connection ST DIL24 PANDA J3 Exp Conn A Pin n Signal Pin n Signal 1 Vdd 1 VIO_1V8 2 Vdd_IO 1 VIO_1V8 13 GND 28 GND 14 INT1 20 GPIO_ CS (1) 20 SCL 24 SCL 21 SDA 23 SDA 22 SDO 22 SDO/GPIO_39 1. On the LPS25 adapter, a 4.7 kω pull-up resistor must be placed between CS (Pin 19) and Vdd_IO 2.2 Specific settings for the Ubuntu environment Note: After the standard installation of Ubuntu-13.04, some specific settings are applied. Version packages used: Java: JDK1.6.0_45 and JRE1.6.0_45 GNU Make 3.82 Python Other installed packages are referred to in: , by replacing the i386 label with amd64 for 64-bit packages. At the time of writing, the specific subtitle for the 1304 package does not exist. sudo apt-get install git gnupg flex bison gperf build-essential \ zip curl libc6-dev libncurses5-dev:amd64 x11proto-core-dev \ libx11-dev:amd64 libreadline6-dev:amd64 libgl1-mesa-glx:amd64 \ libgl1-mesa-dev g++-multilib mingw32 tofrodos \ python-markdown libxml2-utils xsltproc zlib1g-dev: amd64 sudo ln -s /usr/lib/amd64-linux-gnu/mesa/libgl.so.1 /usr/lib/ amd64-linux-gnu/libgl.so The 64-bit libz.so.1 is replaced with the corresponding 32-bit libz sudo apt-get install lib32z1. To use apt-get (needed for the above and other settings) when working with a proxy, the file /etc/apt/apt.conf.d/01proxy is created with the following single line of code: acquire: A file bashrc in folder /home/user is created with the following single line of code: export USE_CACHE=1 DocID Rev 2 7/26 26
8 Test environment / ecosystem AN4503 From the Android Root Source, the following command is applied: [RAS]: /prebuilts/misc/linux-x86/ccache/ccache -M 50G To download and compile kernel sources, 'git' is configured as follows: $ git config --global user. " ing_address" $ git config --global user.name "user" To connect to the board with fastboot and adb commands, the following lines are added to the /etc/udev/rules.d/51-android.rules file. # adb protocol on panda (PandaBoard) SUBSYSTEM=="usb", ATTR{idVendor=="0451", ATTR{idProduct=="d101", MODE="0666", owner= username # fastboot protocol on panda (PandaBoard) SUBSYSTEM=="usb", ATTR{idVendor=="0451", ATTR{idProduct=="d022", MODE="0666", owner= username # usbboot protocol on panda (PandaBoard) SUBSYSTEM=="usb", ATTR{idVendor=="0451", ATTR{idProduct=="d010", MODE="0666", owner= username Permission for this file must also be changed: "chmod a+x /etc/udev/rules.d/51-android.rules. Then restart udev service with the "sudo service udev restart" command. 2.3 Building Android KitKat-4.4 The following steps are required to build the Environment: Download the packages Apply required patches Compile the sources Flash the image to the PandaBoard SD card These steps are detailed in the following sections. 8/26 DocID Rev 2
9 AN4503 Test environment / ecosystem Downloading the packages Table 2. Downloading the package (step by step) Step Description Create the workspace in home directory Download android 4.4 (this may take a few hours) Download the proper graphics binaries for PandaBoard, suitable to PVR driver in kernel Add support for PandaBoard in downloaded android 4.4 sources Download the tool-chain for compiling x-loader, u-boot and kernel Download the X-loader Download the U-boot Download the Kernel $ mkdir ~/panda_work $ export PANDA_WORK=~/panda_work $ mkdir ~/panda_work/android $ export ANDROID_ROOT=~/panda_work/android (1) $ cd $ANDROID_ROOT $ repo init -u -b android-4.4_r1.1 $ repo sync $ wget (2) $ tar zxvf imgtec-panda d1ac3.tgz $./extract-imgtec-panda.sh $ cd $ANDROID_ROOT $ git clone -b kitkat device/ti/panda (2) $ cd $PANDA_WORK $ git clone (2) $ export ARCH=arm $ export CROSS_COMPILE=$PWD/prebuilt/linux-x86/toolchain/arm- eabi-4.4.3/bin/arm-eabi- $ cd $PANDA_WORK $ git clone git://git.omapzoom.org/repo/x-loader.git (2) $ cd x-loader $ git checkout -b omap4_dev origin/omap4_dev $ cd $PANDA_WORK $ git clone git://git.omapzoom.org/repo/u-boot.git (2) $ cd u-boot $ git checkout -b omap4_dev origin/omap4_dev $ cd $PANDA_WORK $ git clone kernel (2) $ cd kernel $ git checkout -b android-omap-panda-3.0 origin/android-omap-panda This is considered RAS (root Android source) in the present document. 2. The above links are valid at the time of writing (April 2014). DocID Rev 2 9/26 26
10 Test environment / ecosystem AN Apply required patches Table 3. Apply required patches (step by step) Step Description $ cd u-boot Apply patch in U-boot $ wget (1) $ git apply 0001-change-bootarges.patch $cd $PANDA_WORK Apply Kernel patch $ cd kernel $ wget $ git apply 0001-panda-jb4.2_kernel.patch 1. The above links are valid at the time of writing (April 2014) Compile the sources Table 4. Compile the sources (step by step) Step Description $ cd x-loader $ git checkout -b omap4_dev origin/omap4_dev Compile X-loader Compile U-boot Compile Kernel Compile Android $ make omap4430panda_config $ make ift $ cp -a MLO $ANDROID_ROOT/device/ti/panda/xloader.bin $ cd u-boot $ make omap4430panda_config $ make $ cp -a u-boot.bin $ANDROID_ROOT/device/ti/panda/bootloader.bin $ cd $PANDA_WORK $ cd kernel $ make panda_defconfig $ make $ cp -a arch/arm/boot/zimage $ANDROID_ROOT/device/ti/panda/kernel $ cd $ANDROID_ROOT $ source build/envsetup.sh $ lunch aosp_panda-userdebug $ make j4 Note: The above links are valid at the time of writing (April 2014). 10/26 DocID Rev 2
11 AN4503 Test environment / ecosystem Flash the image to the PandaBoard SD card Refer to the README file in $ANDROID_ROOT/device/ti/panda/. DocID Rev 2 11/26 26
12 Linux kernel space AN Linux kernel space This layer contains the Linux device drivers: hts221.ko, lps25.ko and uv.ko. They use the input subsystem, which is a generic Linux framework that is common for other input devices including mouse and joystick. The data is exported to the user space through the Sysfs virtual file system (/sys/class/input/) and can be found in /dev/input/input<x>, where <x> is unique for every device. The driver sends/receives data to/from the sensor through the stable Linux subsystem I²C. Note: At the time of writing, the hts221 driver only functions in OneShot mode. 3.1 Overview of the environment To properly configure the PandaBoard, the adapters for humidity, pressure and ultraviolet are connected to the PandaBoard on the I²C bus (refer to Chapter 4.1) The file board-omap4panda.c in [KR]/arch/arm/mach-omap2/board-omap4panda.c is then patched as described below I²C bus initialization patch static int init omap4_panda_i2c_init(void) { omap4_pmic_init("twl6030", &omap4_panda_twldata); omap_register_i2c_bus(2, 400, NULL, 0); /* * Bus 3 is attached to the DVI port where devices like the pico DLP * projector don't work reliably with 400kHz */ omap_register_i2c_bus(3, 100, panda_i2c_eeprom, ARRAY_SIZE(panda_i2c_eeprom)); omap_register_i2c_bus(4, 200, panda_i2c_memsensors, ARRAY_SIZE(panda_i2c_memsensors)); return 0; Initialize bus 4 (which the devices are connected to) by adding the above line in bold. The structures below are also added. 12/26 DocID Rev 2
13 AN4503 Linux kernel space I²C_board_info structure patch static struct i2c_board_info inidata panda_i2c_memsensors[] = { { I2C_BOARD_INFO("lps25h", 0x5d),.platform_data = & lps25h_platform,, { I2C_BOARD_INFO("hts221", 0x5f),.platform_data = & hts221_platform,, { I2C_BOARD_INFO("uvis25", 0x47),.platform_data = & uvis25_platform, As an example of platform_data static struct hts221_platform_data hts221_platform = {.poll_interval = 1000,.min_interval = 100, A structure with the same name is also in the hts221.h file for compiling the module driver of the corresponding device, included in [KR]/include/linux/input After rebuilding the kernel Copy the new built zimage in the proper [RAS]/device/ti/panda/ folder as 'kernel' and then rebuild the boot.img. [KR]$ cp -a arch/arm/boot/zimage $ANDROID_ROOT/device/ti/panda/kernel [RAS]$ make bootimage 3.2 Driver description The device drivers are the first interface with the hardware; they communicate directly with the sensor via the i2c bus. There are two files for each driver: the.c and the.h files How to build and install the device drivers To build the proper device drivers, the.c files must be placed in the <KR>/drivers/misc folder, while the corresponding.h files must be put in <KR>/include/lilnux/input. If the drives are compiled as separate modules, the following example demonstrates the lines to be added to the Makefile under <KR>/drivers/misc: obj-m = hts221.o obj-m + = lps25.o obj-m + = uv.ko DocID Rev 2 13/26 26
14 Linux kernel space AN4503 Then run the command: "make modules" from <KR>. The built hts221.ko, lps25.ko and uv.ko modules, located under <KR>/drivers/misc are then placed in the Android filesystem with the usual procedure: [RAS]$ adb push [modulename].ko /system/lib/hw They can then be installed and rendered functional: [RAS]$ adb shell [Android shell]$ insmod /system/lib/hw/[modulename].ko Controlling the device drivers from Linux user space The device can be controlled from Linux user space by writing the desired settings (integer values) to the relevant control files from the shell using the proper 'echo' command, or inside the libs or applications. The above mentioned files are located under "/sys/class/input/input[x]/device/<busnum>/<i2c-address>/", where busnum is the bus number ('4' in this test case with the PandaBoard) and the i2c-address changes according to the device in use: hts221 : 004f lps25h : 005d uvis25 : 0047 The names of these control files can be found in the corresponding.c file of the driver, specifically in the struct attributes. The most important file is the 'enable_device'. In this example, the complete path for the lps25h in our Panda-board test environment is: "/sys/class/input/input[x]/device/4/<4-005d/enable_device" Configure this to '1' to set the device ON, and to '0' (zero) to set it OFF. To set the device ON or OFF from the 'Linux user space', use the following commands: [Android shell]$ echo 1 > /sys/class/input/input[x]/device/<busnum>/<i2caddress>/enable_device [Android shell]$ echo 0 > /sys/class/input/input[x]/device/<busnum>/<i2caddress>/enable_device Alternatively: [Android shell]$ echo 1 > /sys/bus/i2c/devices/<busnum>/<i2c-address>/enable_device [Android shell]$ echo 0 > /sys/bus/i2c/devices/<busnum>/<i2c-address>/enable_device The devices can be controlled through <sysfs_interface>: /sys/bus/i2c/devices/<busnum>/<i2c-address>/ and other features can be set as well as ON and OFF. For example, consider lps25h to change the FIFO setting. Recall that the FIFO modes are: 14/26 DocID Rev 2
15 AN4503 Linux kernel space Table 5. FIFO settings ID Meaning 1 FIFO 2 Stream 6 Mean 3 Stream2FIFO 4 Bypass2Stream 7 Bypass2FIFO In the struct attributes, there are "enable_fifo", "fifo_mode" and "num_samples_fifo". In the example below, we set fifo_mode to 6 and the number of samples to 8: [Android shell]$ echo 1 > /<sysfs_interface>/enable_fifo [Android shell]$ echo 6 > /<sysfs_interface>/fifo_mode [Android shell]$ echo 8 > /<sysfs_interface>num_samples_fifo As another example, if we consider now the hts221, we can select the heater or the odr in the following way: Enabling the heater: [Android shell]$ echo 1 > /<sysfs_interface>/heater Disabling the heater: [Android shell]$ echo 0 > /<sysfs_interface>/heater Setting ODR: [Android shell]$ echo 'n' > /<sysfs_interface>/poll_period_ms Where 'n' is: 1000: 1 hz, 143<'n'<999: 7 hz, 80<'n'<142: 12.5 hz. Setting OneShot mode: [Android shell]$ echo 1 > /<sysfs_interface>/oneshot DocID Rev 2 15/26 26
16 Linux kernel space AN Permission setting The permission of some files in the ramdisk.img should be specifically set by adding some lines to the relevant init.<board>.rc file (for the Panda-board, the file init.omap4pandabpard.rc located in <RAS>/device/ti/panda). In particular: chmod 0666 /sys/class/input/input<x>/device/device/enable_device chown system system /sys/class/input/input<x>/device/device/enable_device chmod 0666 /sys/class/input/input<x>/device/device/full_scale chown system system /sys/class/input/input<x>/device/device/full_scale chmod 0666 /sys/class/input/input<x>/device/device/poll_period_ms chown system system /sys/class/input/input<x>/device/device/poll_period_ms where <x> is the 'number' corresponding to the proper event. After modifying the above mentioned file, run "make bootimage" from <RAS> to build the new boot.img. This new image, which includes the kernel (zimage in <KR>/arch/arm/boot) and the ramdisk.img, can be found in <RAS>/device/ti/panda. 3.4 Output data from the driver Where to find the data The Linux infrastructure provides the raw data from the driver in the assigned /dev/input/event<x> devices (see the routine <device>_report_values, where <device> is the name of the device, hts221 or lps25h or uvis). This data can be accessed with the corresponding command from the Linux shell [Android shell]$ getevent /dev/input/event<x> The real values (read from the device or calculated) can also be read as real values via the Minicom for debugging purposes only. Do this by enabling #DEBUG in the corresponding driver and then read the data through pr_info in hts221_get_data() or lps25_prs_get_presstemp_data() Sample application for reading data The data exported in /dev/event/input<x> can also be read with a simple algorithm in the C language, in a dynamic library or directly from an application. Below is a simple skeleton, where argv[1] is the path: /dev/input/event #include <stdio.h> #include <time.h> #include <sys/times.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <stdint.h> #include <assert.h> 16/26 DocID Rev 2
17 AN4503 Linux kernel space struct input_event { struct timeval time; uint16_t type; uint16_t code; int32_t value; ; int main(int argc, char *argv[]) { int fd; struct input_event ev; assert(16 == sizeof(struct input_event)); if (argc!= 2) { fprintf(stderr, "missing /dev/input/xxx\n"); return 1; if ((fd = open(argv[1], O_RDONLY)) == -1) { perror("open"); return 1; while (1) { do { read(fd, &ev, sizeof(struct input_event)); if (ev.type == EV_ABS) printf("type:%u code:%u value:%d\n", ev.type, ev.code, ev.value); usleep(500000); /* 2 reads per sec */ while (ev.type!= EV_SYN); close(fd); return 0; Type, time, code and value correspond to the numbers that fill the shell when the getevent command is launched. In our example, it can be seen that the types for the pressure (abs_pr), temperature (chosen as abs_gas) and humidity (chosen as abs_misc) are respectively: 18, 09 and 28. DocID Rev 2 17/26 26
18 Android sensor HAL AN Android sensor HAL 4.1 Overview The Android sensor HAL is the library which provides the links from kernel-space drivers to the Android sensor service and Android SensorManager Sensor libraries These libraries are dynamic; they take data in /dev/input/event and make them available to the upper layer. This is done through the SensorManager class, sensor service class and the sensor HAL. The ServiceManager of the Android Framework checks the path /system/lib/hw to see if some of the following dynamic libs are present: sensors.default.so sensors.<target_board_platform>.so 4.2 Files The environmental sensors currently under consideration are: HTS221: relative humidity + temperature LPS25: pressure + temperature UVIS25: Ultraviolet At this stage, the path and names are hard-coded; specifically: lps25h, hts221 and uvis25, as provided by the underlying kernel drivers. The path is instead found by the libsensors. The library is written in the C++ language using the object-oriented approach. For each sensor, there is a custom class file: HumSensor.cpp, PressSensor.cpp and UVSensor.cpp, which extends the common base class (SensorBase.cpp). 4.3 How to build and install the Android sensor HAL To build the libsensors.so in the correct environment starting from the sources files, the package must be compiled and added to the actual sensor HAL library, by following the instructions below: Copy the sensor HAL zipped package into the relevant android sources path, usually located in: [Root Android Sources]/device/[vendor name]/[boardname]/ Untar it "tar -xzvf libsensors_env.tar.gz", or unzip in case it is provided in the.zip format Before building the library, initialize the Android environment: [RAS]$ source build/envsetup.sh [RAS]$ lunch [target board] Compile the library. 18/26 DocID Rev 2
19 AN4503 Android sensor HAL Note: In the HAL folder: [RAS]/device/[vendor name]/[boardname]/libsensors launch the mm command in the HAL folder to build a dynamic library named sensors.[board name].so. At the end of the process, it can be found in: [RAS]/out/target/product/[boardname]/system/lib/hw/ This library can then be added to the existing library, remounting the filesystem and using the "adb push" command. Follow these steps: [RAS]$ adb root [RAS]$ adb remount [RAS]$ adb push sensors.[boardname].so /system/lib/hw [RAS]$ adb shell] stop [RAS]$ adb shell] start In case of other similar libraries with the same name, use different useful names, like sensors.[processorname].so. For reference purposes with the Panda-board, use the example: sensors.omap4.so. The name of the lib that is built can be chosen and changed by writing the desired name in: LOCAL_MODULE := sensors.$(target_board_platform) in the relevant Android.mk file. DocID Rev 2 19/26 26
20 Building a simple apk for testing AN Building a simple apk for testing In order to build a rough test application quickly, start from a made-by-default apk from the usual building tools (ADT/Eclipse, ), and modify the following: STEP 1: /res/layout/activity_main.xml Android sample apk: activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:id="@+id/textview01" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="humidity Info"> </TextView> </LinearLayout> STEP 2: /src/com.example.com.mainactivity.java package com.example.<projectname> import android.os.bundle; import android.app.activity; import android.view.menu; import android.view.viewgroup.layoutparams; import java.io.ioexception; import java.io.inputstream; import android.annotation.suppresslint; import android.hardware.sensor; import android.hardware.sensorevent; import android.hardware.sensoreventlistener; import android.hardware.sensormanager; import android.util.log; import android.view.view; import android.widget.button; import 20/26 DocID Rev 2
21 AN4503 Building a simple apk for testing public class MainActivity extends Activity implements SensorEventListener{ private SensorManager msensormanager; private Sensor mhumidity; TextView xviewp = protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); xviewp = (TextView)findViewById(R.id.TextView01); xviewp.settext(" Humidity: "); //sensor msensormanager = (SensorManager)getSystemService(SENSOR_SERVICE); mhumidity = protected void onresume() { if(msensormanager!= null) msensormanager.registerlistener(this, mhumidity, SensorManager.SENSOR_DELAY_NORMAL); protected void onpause() { super.onpause(); msensormanager.unregisterlistener(this); public void onsensorchanged(sensorevent event) { if (event.sensor.gettype() == Sensor.TYPE_RELATIVE_HUMIDITY) { xviewp.settext("humidity: " + event.values[0] + "- Temperature: " + event.value[1] public boolean oncreateoptionsmenu(menu menu) { // Inflate the menu; this adds items to the action bar if it is present. DocID Rev 2 21/26 26
22 Building a simple apk for testing AN4503 getmenuinflater().inflate(r.menu.main, menu); return true; This above is just a quick example for testing the environment; other features should be considered to build a proper apk. Pls. note that the Sensor Type to be set in the tested environmental sensors are: LPS25H : Pressure HTS221: Relative_Humidity UVIS25: Light In actual Android release, the Ultraviolet type sensor is not foreseen; so the "Light" option seemed to be the correct choice. 22/26 DocID Rev 2
23 AN4503 Troubleshooting 6 Troubleshooting Note: Below is a list of potential problems and corresponding solutions: HW setup of the environment: While loading the module with the shell command "insmod /system/lib/hw/<devicename>.ko, the "minicom" shell of the Host PC should show the message that the device is correctly probed. All the files under the path /sys/class/input/input[x]/device/<busnum>/<i2c-address> should then be available (in particular, enable_device). Data can be seen through the minicom, but it is not exported to /dev/input/event<x> There could be problems in the input_allocate_device; check the complete environment. Also verify the correct permissions of the files. In particular, the files enable_device and pollrate_ms should be 664 at least. Data are exported in /dev/input/event<x>, but not seen through the apk. Check for problems in the Linux user space or Android Environment. The sample application in Section can be used to verify if the data arrives in the Linux user space. If it does, the problem is in the Android specific environment; try the following commands from RAS on the HOST PC: [RAS]$ adb logcat or [RAS]$ adb logcat grep sensor to select the relevant messages on that subject. A better alternative might be to add some specific logs in order to address the location of the problem. This can be done by adding "ALOGI("Type of Message")" to the original code. Java Compilation problem of the Root Android Source. In case the compilation fails after few minutes, ensure that the Java PATH and choice are correctly set: Assuming jdk is in /usr/java, then: $ PATH=/usr/java/jdk1.6.0_45:$PATH In some cases, writing "/" at the end of the PATH (i.e. /usr/java/jdk1.6.0_45/) can create compile problems. $ sudo update-alternatives --install "/usr/bin/java" "java" "/usr/java/jdk1.6.0_45/bin/java" 1 $ sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/javac/jdk1.6.0_45/bin/javac" 1 $ sudo update-alternatives --install "/usr/bin/javaws" "javac" "/usr/javaws/jdk1.6.0_45/bin/javaws" 1 In the /etc/environment, add: export JAVA_HOME='usr/java/jdk1.6.0_45/bin Linux is working but Android fails and cannot be seen on the screen. Check for error messages relating to framebuffer failure. If there are, verify that the downloaded Imgtec graphics library perfectly matches the PVR driver in the kernel (in gpu/pvr/), as per Section DocID Rev 2 23/26 26
24 Keywords AN Keywords 7.1 Glossary and acronyms The terms, abbreviations and acronyms used in this document are listed and described here in alphabetical order. ACK - Acknowledge APK - Android Application Package FIFO - First In / First Out HAL - Hardware Abstraction Layer HW - Hardware JNI - Java Native Interface KR - Kernel Root PCB - Printed Circuit Board RAS - Root Android Source: ~/panda_work/android SoC - System on Chip SW - Software TS - Time Stamp UML - Unified Modeling Language 24/26 DocID Rev 2
25 AN4503 Revision history 8 Revision history Table 6. Document revision history Date Revision Changes 23-Jun Initial release 29-Jul Updated title in cover page DocID Rev 2 25/26 26
26 AN4503 IMPORTANT NOTICE PLEASE READ CAREFULLY STMicroelectronics NV and its subsidiaries ( ST ) reserve the right to make changes, corrections, enhancements, modifications, and improvements to ST products and/or to this document at any time without notice. Purchasers should obtain the latest relevant information on ST products before placing orders. ST products are sold pursuant to ST s terms and conditions of sale in place at the time of order acknowledgement. Purchasers are solely responsible for the choice, selection, and use of ST products and ST assumes no liability for application assistance or the design of Purchasers products. No license, express or implied, to any intellectual property right is granted by ST herein. Resale of ST products with provisions different from the information set forth herein shall void any warranty granted by ST for such product. ST and the ST logo are trademarks of ST. All other product or service names are the property of their respective owners. Information in this document supersedes and replaces information previously supplied in any prior versions of this document STMicroelectronics All rights reserved 26/26 DocID Rev 2
AN4156 Application note
Application note Hardware abstraction layer for Android Introduction This application note provides guidelines for successfully integrating STMicroelectronics sensors (accelerometer, magnetometer, gyroscope
Newton2 Developers Guide
Newton2 Developers Guide Date: Jan. 2015 Newton2 Developers Guide Release history Date Revision Revision History Jan. 12, 2015 1.0 - First released Disclaimer This documentation is provided for use with
Arduino & Android. A How to on interfacing these two devices. Bryant Tram
Arduino & Android A How to on interfacing these two devices Bryant Tram Contents 1 Overview... 2 2 Other Readings... 2 1. Android Debug Bridge -... 2 2. MicroBridge... 2 3. YouTube tutorial video series
Qualcomm IR-I 2 C Bridge Demo
User s Guide June 2012 UG63_01.0 Qualcomm IR-I2C Bridge Demo Demo Setup The Qualcomm IR-I2C Bridge Demo setup consists of the ice-dragon Board which includes an IR-Receiver interfaced with an ice40 mobilefpga.
Getting started with Android on the i.mx based COM boards
Getting started with Android Getting started with Android on the i.mx based COM boards Getting started with Android Page 2 Embedded Artists AB Davidshallsgatan 16 SE-211 45 Malmö Sweden http://www.embeddedartists.com.
DragonBoard 410c based on Qualcomm Snapdragon 410 processor
Qualcomm Technologies, Inc. DragonBoard 410c based on Qualcomm Snapdragon 410 processor Software Build and Installation Guide, Linux Android LM80-P0436-2 Rev F February 2016 2015-2016 Qualcomm Technologies,
AN4571 Application note
Application note STM32 BLE toolbox for Android Introduction The application note describes the STM32 Bluetooth low energy (BLE) toolbox Android application (STSW-STM32153) to be used with an Android 4.3
Five standard procedures for building the android system. Figure1. Procedures for building android embedded systems
Standard Operating Procedures for Android Embedded Systems Anupama M. Kulkarni, Shang-Yang Chang, Ying-Dar Lin National Chiao Tung University, Hsinchu, Taiwan November 2012 Android is considered to be
ELET4133: Embedded Systems. Topic 15 Sensors
ELET4133: Embedded Systems Topic 15 Sensors Agenda What is a sensor? Different types of sensors Detecting sensors Example application of the accelerometer 2 What is a sensor? Piece of hardware that collects
Sensors & Motion Sensors in Android platform. Minh H Dang CS286 Spring 2013
Sensors & Motion Sensors in Android platform Minh H Dang CS286 Spring 2013 Sensors The Android platform supports three categories of sensors: Motion sensors: measure acceleration forces and rotational
Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系
Android Development http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android 3D 1. Design 2. Develop Training API Guides Reference 3. Distribute 2 Development Training Get Started Building
STSW-IDW002. Hands-On Training for SPWF01SC and SPWF01SA Wi-Fi modules. Features. Description
Hands-On Training for SPWF01SC and SPWF01SA Wi-Fi modules Data brief Features Hands-On Training to evaluate and learn the SPWF01Sx series of Wi-Fi modules on reference designs such as the X-NUCLEO- IDW01M1
Android Framework. How to use and extend it
Android Framework How to use and extend it Lectures 9/10 Android Security Security threats Security gates Android Security model Bound Services Complex interactions with Services Alberto Panizzo 2 Lecture
Introduction to NaviGenie SDK Client API for Android
Introduction to NaviGenie SDK Client API for Android Overview 3 Data access solutions. 3 Use your own data in a highly optimized form 3 Hardware acceleration support.. 3 Package contents.. 4 Libraries.
DEVELOPMENT GUIDE ALTA DS 2. Android BSP 3.0 1.08-10222015-113600
DEVELOPMENT GUIDE ALTA DS 2 Android BSP 3.0 1.08-10222015-113600 Copyright Copyright 2015 VIA Technologies Incorporated. All rights reserved. No part of this document may be reproduced, transmitted, transcribed,
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) Who am I? Lo Chi Wing, Peter Lecture 1: Introduction to Android Development Email: [email protected] Facebook: http://www.facebook.com/peterlo111
In-System Programmer USER MANUAL RN-ISP-UM RN-WIFLYCR-UM-.01. www.rovingnetworks.com 1
RN-WIFLYCR-UM-.01 RN-ISP-UM In-System Programmer 2012 Roving Networks. All rights reserved. Version 1.1 1/19/2012 USER MANUAL www.rovingnetworks.com 1 OVERVIEW You use Roving Networks In-System-Programmer
UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction
User manual Getting started with STM32 Nucleo board software development tools Introduction The STM32 Nucleo board is a low-cost and easy-to-use development platform used to quickly evaluate and start
Android Hands-On Labs
Android Hands-On Labs Introduction This document walks you through the 5 Android hands-on labs with i.mx53 Quick Start Board for today s session. The first part regards host preparation, which is not needed
Board also Supports MicroBridge
This product is ATmega2560 based Freeduino-Mega with USB Host Interface to Communicate with Android Powered Devices* like Android Phone or Tab using Android Open Accessory API and Development Kit (ADK)
Android Basics. Xin Yang 2016-05-06
Android Basics Xin Yang 2016-05-06 1 Outline of Lectures Lecture 1 (45mins) Android Basics Programming environment Components of an Android app Activity, lifecycle, intent Android anatomy Lecture 2 (45mins)
Getting Started: Creating a Simple App
Getting Started: Creating a Simple App What You will Learn: Setting up your development environment Creating a simple app Personalizing your app Running your app on an emulator The goal of this hour is
AN3998 Application note
Application note PDM audio software decoding on STM32 microcontrollers 1 Introduction This application note presents the algorithms and architecture of an optimized software implementation for PDM signal
ST19NP18-TPM-I2C. Trusted Platform Module (TPM) with I²C Interface. Features
Trusted Platform Module (TPM) with I²C Interface Data brief Features Single-chip Trusted Platform Module (TPM) Embedded TPM 1.2 firmware I²C communication interface (Slave mode) Architecture based on ST19N
UM1676 User manual. Getting started with.net Micro Framework on the STM32F429 Discovery kit. Introduction
User manual Getting started with.net Micro Framework on the STM32F429 Discovery kit Introduction This document describes how to get started using the.net Micro Framework (alias NETMF) on the STM32F429
Using Extensions or Cordova Plugins in your RhoMobile Application Darryn Campbell @darryncampbell
Using Extensions or Cordova Plugins in your RhoMobile Application Darryn Campbell @darryncampbell Application Architect Agenda Creating a Rho Native Extension on Android Converting a Cordova Plugin to
UM1969 User manual. Getting started with STM32F746G discovery software development tools. Introduction
UM1969 User manual Getting started with STM32F746G discovery software development tools Introduction This document describes the software environment recommendations, required to build an application using
06 Team Project: Android Development Crash Course; Project Introduction
M. Kranz, P. Lindemann, A. Riener 340.301 UE Principles of Interaction, 2014S 06 Team Project: Android Development Crash Course; Project Introduction April 11, 2014 Priv.-Doz. Dipl.-Ing. Dr. Andreas Riener
AllJoyn Android Environment Setup Guide
80-BA001-2 Rev. A June 21, 2011 Submit technical questions at: http:///forums The information contained in this document is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License;
AN4108 Application note
Application note How to set up a HTTPS server for In-Home display with HTTPS Introduction This application note describes how to configure a simple SSL web server using the EasyPHP free application to
UM1680 User manual. Getting started with STM32F429 Discovery software development tools. Introduction
User manual Getting started with STM32F429 Discovery software development tools Introduction This document describes the software environment and development recommendations required to build an application
Technical Note TN_146. Creating Android Images for Application Development
TN_146 Creating Android Images for Application Development Issue Date: 2013-01-28 This document shows how to build and install the Android Operating System on the BeagleBoard xm Use of FTDI devices in
M24LRxx/CR95HF application software installation guide
User manual M24LRxx/CR95HF application software installation guide Introduction This user manual describes the procedures to install the different software drivers required to use the DEVKIT-M24LR-A development
How to build your first Android Application in Windows
APPLICATION NOTE How to build your first Android Application in Windows 3/30/2012 Created by: Micah Zastrow Abstract This application note is designed to teach the reader how to setup the Android Development
AN3354 Application note
Application note STM32F105/107 in-application programming using a USB host 1 Introduction An important requirement for most Flash-memory-based systems is the ability to update firmware installed in the
Embedded Linux development with Buildroot training 3-day session
Embedded Linux development with training 3-day session Title Overview Duration Trainer Language Audience Embedded Linux development with training Introduction to Managing and building the configuration
32F072BDISCOVERY. Discovery kit for STM32F072xx microcontrollers. Features. Description
Discovery kit for STM32F072xx microcontrollers Data brief Features STM32F072RBT6 microcontroller featuring 128 KB of Flash memory, 16 KB of SRAM in an LQFP64 package On-board ST-LINK/V2 with switch to
UM0834 User manual. Developing and debugging your STM8S-DISCOVERY application code. Introduction. Reference documents
User manual Developing and debugging your STM8S-DISCOVERY application code Introduction This document complements the information in the STM8S datasheets by describing the software environment and development
AN4646 Application note
Application note Peripheral interconnections on STM32F401 and STM32F411 lines Introduction On top of the highest performance and the lowest power consumption of the STM32F4 family, STM32F401/411 peripherals
White Paper. Implementing CyaSSL as an SSL Provider on the Android Platform A Step-by-Step Guide. yassl http://www.yassl.com
White Paper Implementing CyaSSL as an SSL Provider on the Android Platform A Step-by-Step Guide yassl http://www.yassl.com ANDROID SSL PROVIDER 2 TABLE OF CONTENTS INTRODUCTION... 3 WHAT ARE TLS AND SSL?...
Objective. Android Sensors. Sensor Manager Sensor Types Examples. Page 2
Android Sensors Objective Android Sensors Sensor Manager Sensor Types Examples Page 2 Android.hardware Support for Hardware classes with some interfaces Camera: used to set image capture settings, start/stop
Table of Contents. Overview... 1. Features... 1. Applications... 1. Hardware requirement... 1. Card dimensions... 1. Software Installation...
Table of Contents Overview... 1 Features... 1 Applications... 1 Hardware requirement... 1 Card dimensions... 1 Software Installation... 1 Software Configuration... 4 E1/T1/MFCR2 mode settings... 4 E1 Mode...
Getting Started with Kinetis SDK (KSDK)
Freescale Semiconductor, Inc. Document Number: KSDKGSUG User s Guide Rev. 0, 12/2014 Getting Started with Kinetis SDK (KSDK) 1 Overview Kinetis SDK (KSDK) is a Software Development Kit that provides comprehensive
Building graphic-rich and better performing native applications. Pro. Android C++ with the NDK. Onur Cinar
Building graphic-rich and better performing native applications Pro Android C++ with the NDK Onur Cinar For your convenience Apress has placed some of the front matter material after the index. Please
Android Environment SDK
Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android
UM1790 User manual. Getting started with STM32L053 discovery kit software development tools. Introduction
User manual Getting started with STM32L053 discovery kit software development tools Introduction This document describes the software environment recommendations required to build an application using
AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts
AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,
UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction
User manual Getting started with STM32 Nucleo board software development tools Introduction The STM32 Nucleo board (NUCLEO-F030R8, NUCLEO-F072RB, NUCLEO-F103RB, NUCLEO-F302R8, NUCLEO-F401RE, NUCLEO-L152RE)
Android Sensors. XI Jornadas SLCENT de Actualización Informática y Electrónica
Android Sensors XI Jornadas SLCENT de Actualización Informática y Electrónica About me José Juan Sánchez Hernández Android Developer (In my spare time :) Member and collaborator of: - Android Almería Developer
SheevaPlug Development Kit README Rev. 1.2
SheevaPlug Development Kit README Rev. 1.2 Introduction... 3 Flow to use the Software Development Kit packages... 3 Appendix A... 5 GCC cross-compiler... 5 Appendix B... 6 Mini-USB debug driver installation
Embedded Linux development training 4 days session
Embedded Linux development training 4 days session Title Overview Duration Trainer Language Audience Prerequisites Embedded Linux development training Understanding the Linux kernel Building the Linux
Single LNB supply and control IC DiSEqC 1.X compliant with EXTM based on the LNBH29 in a QFN16 (4x4) Description
Single LNB supply and control IC DiSEqC 1.X compliant with EXTM based on the LNBH29 in a QFN16 (4x4) Data brief Low-drop post regulator and high-efficiency step-up PWM with integrated power N-MOS allowing
Accessing I2C devices with Digi Embedded Linux 5.2 example on Digi Connect ME 9210
Accessing I2C devices with Digi Embedded Linux 5.2 example on Digi Connect ME 9210 Document History Date Version Change Description 17/09/2010 Initial entry/outline 24/02/2011 V1.1 Retested with latest
AN4128 Application note
Application note Demonstration board for Bluetooth module class 1 SBT2632C1A.AT2 Introduction This document describes the STEVAL-SPBT4ATV3 demonstration board (dongle) for the Bluetooth class 1 SPBT2632C1A.AT2
GSM Click - Cross-Platform Development Quick Start Guide
GSM Click - Cross-Platform Development Quick Start Guide Overview This document explains how to use the MikroElektronika GSM Click board as an accessory to the following host development platforms (microcontrollers):
Android: How To. Thanks. Aman Nijhawan
Android: How To. This is just a collection of useful information and tricks that I used during the time I was developing on the android ADP1. In some cases the information might be a little old and new
AN2680 Application note
Application note Fan speed controller based on STDS75 or STLM75 digital temperature sensor and ST72651AR6 MCU Introduction This application note describes the method of defining the system for regulating
Software Prerequisites Linux Ubuntu 12.04 LTS. Estimated completion time: 15min. The goal of this hands-on is to:
TRAINING MANUAL Using SAM-BA for Linux on SAMA5D3 Xplained AN-8995 Prerequisites Hardware Prerequisites Atmel SAMA5D3 Xplained USB serial TTL adapter (optional) FTDI TTL-232R-3V3 USB to TTL serial cable
Android Sensor Programming. Weihong Yu
Android Sensor Programming Weihong Yu Sensors Overview The Android platform is ideal for creating innovative applications through the use of sensors. These built-in sensors measure motion, orientation,
32F769IDISCOVERY. Discovery kit with STM32F769NI MCU. Features
Discovery kit with STM32F769NI MCU Data brief Features STM32F769NIH6 microcontroller featuring 2 Mbytes of Flash memory and 512+16+4 Kbytes of RAM, in BGA216 package On-board ST-LINK/V2-1 supporting USB
PetaLinux SDK User Guide. Application Development Guide
PetaLinux SDK User Guide Application Development Guide Notice of Disclaimer The information disclosed to you hereunder (the "Materials") is provided solely for the selection and use of Xilinx products.
Procedure to Create and Duplicate Master LiveUSB Stick
Procedure to Create and Duplicate Master LiveUSB Stick A. Creating a Master LiveUSB stick using 64 GB USB Flash Drive 1. Formatting USB stick having Linux partition (skip this step if you are using a new
Spectrum Spatial Analyst Version 4.0. Installation Guide for Linux. Contents:
Spectrum Spatial Analyst Version 4.0 Installation Guide for Linux This guide explains how to install the Spectrum Spatial Analyst on a Unix server (Ubuntu). The topics covered in this guide are: Contents:
Obsoleted chapter from The Busy Coder's Guide to Advanced Android Development
CHAPTER 13 "" is Android's overall term for ways that Android can detect elements of the physical world around it, from magnetic flux to the movement of the device. Not all devices will have all possible
Embedded Linux Platform Developer
Embedded Linux Platform Developer Course description Advanced training program on Embedded Linux platform development with comprehensive coverage on target board bring up, Embedded Linux porting, Linux
Partek Flow Installation Guide
Partek Flow Installation Guide Partek Flow is a web based application for genomic data analysis and visualization, which can be installed on a desktop computer, compute cluster or cloud. Users can access
UM0985 User manual. Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software. Introduction
User manual Developing your STM32VLDISCOVERY application using the IAR Embedded Workbench software Introduction This document provides an introduction on how to use IAR Embedded Workbench for ARM software
0011-01-16-03-001 USB Stick Driver Installation Instructions
Application Note 0011-01-16-03-001 USB Stick Driver Installation Instructions Document No: 0011-01-16-03-001 (Issue A) INTRODUCTION This document outlines how to install the virtual COM port drivers for
Setting up IO Python Library on BeagleBone Black
Setting up IO Python Library on BeagleBone Black Created by Justin Cooper Last updated on 2015-01-16 11:15:19 AM EST Guide Contents Guide Contents Overview Installation on Angstrom Commands to setup and
ic-mq EVAL MQ1D EVALUATION BOARD DESCRIPTION
Rev A3, Page 1/7 ORDERING INFORMATION Type Order Designation Description and Options Evaluation Board ic-mq EVAL MQ1D ic-mq Evaluation Board ready to operate, accessible through GUI via PC adapter Software
Andreas Burghart 6 October 2014 v1.0
Yocto Qt Application Development Andreas Burghart 6 October 2014 Contents 1.0 Introduction... 3 1.1 Qt for Embedded Linux... 3 1.2 Outline... 4 1.3 Assumptions... 5 1.4 Corrections... 5 1.5 Version...
Android Sensors. CPRE 388 Fall 2015 Iowa State University
Android Sensors CPRE 388 Fall 2015 Iowa State University What are sensors? Sense and measure physical and ambient conditions of the device and/or environment Measure motion, touch pressure, orientation,
STM32F4DISCOVERY. Discovery kit with STM32F407VG MCU. Features. Description
Discovery kit with STM32F407VG MCU Data brief Features STM32F407VGT6 microcontroller featuring 32-bit ARM Cortex -M4 with FPU core, 1-Mbyte Flash memory, 192-Kbyte RAM in an LQFP100 package On-board ST-LINK/V2
HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active
HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services
Software for Android Platform VCNL4020 and VCNL3020
VISHAY SEMICONDUCTORS www.vishay.com Optical Sensors This document is supplied with Vishay s Android software solution for the. This complete software package comes with all the necessary parts to simplify
OpenCV on Android Platforms
OpenCV on Android Platforms Marco Moltisanti Image Processing Lab http://iplab.dmi.unict.it [email protected] http://www.dmi.unict.it/~moltisanti Outline Intro System setup Write and build an Android
Buildroot Workshop. Libre Software Meeting 2012. Thomas Petazzoni Free Electrons [email protected]
Libre Software Meeting 2012 Buildroot Workshop Thomas Petazzoni Free Electrons [email protected] Free Electrons. Kernel, drivers and embedded Linux development, consulting, training and
Presenting Android Development in the CS Curriculum
Presenting Android Development in the CS Curriculum Mao Zheng Hao Fan Department of Computer Science International School of Software University of Wisconsin-La Crosse Wuhan University La Crosse WI, 54601
STLQ015. 150 ma, ultra low quiescent current linear voltage regulator. Description. Features. Application
150 ma, ultra low quiescent current linear voltage regulator Description Datasheet - production data Features SOT23-5L Input voltage from 1.5 to 5.5 V Very low quiescent current: 1.0 µa (typ.) at no load
How to Install Applications (APK Files) on Your Android Phone
How to Install Applications (APK Files) on Your Android Phone Overview An Android application is stored in an APK file (i.e., a file named by {Application Name}.apk). You must install the APK on your Android
Massey University Follow Me Printer Setup for Linux systems
Massey University Follow Me Printer Setup for Linux systems RedHat and Debian based systems Requirements You must have an active Massey network account, i.e. you should already be able to log onto the
NVIDIA Tegra Android Platform Support Pack Getting Started Guide
NVIDIA Tegra Android Platform Support Pack Getting Started Guide Version 5421622-1 - Contents INTRODUCTION 3 SYSTEM REQUIREMENTS 3 ENVIRONMENT VARIABLES (OPTIONAL) 5 INSTALLING THE SUPPORT PACK 6 INSTALLING
How to Run the MQX RTOS on Various RAM Memories for i.mx 6SoloX
Freescale Semiconductor, Inc. Document Number: AN5127 Application Note Rev. 1, 05/2015 How to Run the MQX RTOS on Various RAM Memories for i.mx 6SoloX 1 Introduction This document describes how to customize
USB Driver. Installation Guide for LTE Devices
USB Driver Installation Guide for LTE Devices USB DRIVER INSTALLATION GUIDE USB Driver Installation Guide For the following devices: MTSMC-LEU1-U, MTSMC-LAT1-U, MTSMC-LVW2-U S000616, Version 1.0.3 Copyright
Intel Integrated Native Developer Experience (INDE): IDE Integration for Android*
Intel Integrated Native Developer Experience (INDE): IDE Integration for Android* 1.5.8 Overview IDE Integration for Android provides productivity-oriented design, coding, and debugging tools for applications
Thermostat Application Module Kit
Thermostat Application Module Kit PUG0040-00 Product User Guide Kit Contents Overview Thermostat Application Module CD-ROM: Software Examples and Documentation The Thermostat Application Module provides
IOIO for Android Beginners Guide Introduction
IOIO for Android Beginners Guide Introduction This is the beginners guide for the IOIO for Android board and is intended for users that have never written an Android app. The goal of this tutorial is to
Creating a DUO MFA Service in AWS
Amazon AWS is a cloud based development environment with a goal to provide many options to companies wishing to leverage the power and convenience of cloud computing within their organisation. In 2013
Workshop Intel Galileo Board
Workshop Intel Galileo Board Introduction and Basics of Intel Galileo Board Walter Netto November 03th, 2014 Agenda Intel Galileo Board Overview Physical Characteristics Communication Processor Features
Using the FX3 SDK on Linux Platforms
Cypress EZ-USB FX3 SDK Using the FX3 SDK on Linux Platforms Version 1.3.3 Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intl): 408.943.2600 http://www.cypress.com
Università Degli Studi di Parma. Distributed Systems Group. Android Development. Lecture 1 Android SDK & Development Environment. Marco Picone - 2012
Android Development Lecture 1 Android SDK & Development Environment Università Degli Studi di Parma Lecture Summary - 2 The Android Platform Android Environment Setup SDK Eclipse & ADT SDK Manager Android
User Manual - Help Utility Download MMPCT. (Mission Mode Project Commercial Taxes) User Manual Help-Utility
Excise and Taxation, Haryana Plot I-3, Sector 5, Panchkula, Haryana MMPCT (Mission Mode Project Commercial Taxes) User Manual Help-Utility Wipro Limited HETD For any queries call at the helpdesk numbers:
University of Amsterdam VPN Linux User Guide (Version 1.2)
Informatiseringscentrum ICTS University of Amsterdam VPN Linux User Guide (Version 1.2) Date 8 December 2014 Contents Introduction... 3 Installation steps... 3 Page 2 University of Amsterdam TS Datel VPN
AN3265 Application note
Application note Handling hardware and software failures with the STM8S-DISCOVERY Application overview This application is based on the STM8S-DISCOVERY. It demonstrates how to use the STM8S window watchdog
ARMSDK-VM Virtual Appliance A preconfigured Linux system
ARMSDK-VM Virtual Appliance A preconfigured Linux system Ka-Ro electronics GmbH - Pascalstr. 22, D-52076 Aachen, Germany - Tel.: +49 2408 1402-0 (FAX -10) www.karo-electronics.de Disclaimer The information
python-escpos Documentation
python-escpos Documentation Release 1.0.8 Manuel F Martinez and others March 14, 2016 Contents 1 User Documentation: 3 2 API: 13 3 Indices and tables 17 Python Module Index 19 i ii Python ESC/POS is a
Development_Setting. Step I: Create an Android Project
A step-by-step guide to setup developing and debugging environment in Eclipse for a Native Android Application. By Yu Lu (Referenced from two guides by MartinH) Jan, 2012 Development_Setting Step I: Create
AN3332 Application note
Application note Generating PWM signals using STM8S-DISCOVERY Application overview This application user manual provides a short description of how to use the Timer 2 peripheral (TIM2) to generate three
