Android Application Accessing Hardware Resources

From Variscite Wiki
Revision as of 19:32, 12 September 2023 by Harshesh (talk | contribs) (→‎CAN)
Warning: This page is designed to be used with a 'release' URL parameter.

This page is using the default release RELEASE_O8.1.0_1.3.0_8M_DART-MX8M.
To view this page for a specific Variscite SoM and software release, please follow these steps:

  1. Visit variwiki.com
  2. Select your SoM
  3. Select the software release
DART-MX8M Android Oreo Accessing Hardware via Android Application

Android Application Access

By default Android Application can't access the hardware directly as per design. All the hardware access either have to be via Android services or via the HAL layers.

However there are ways to access the hardware like GPIOs / UART/ SPI / I2C/CAN However if customer still want to access you can do so by making Selinux in permissive mode or modify the selinux policies a) and make your application system app. https://devarea.com/aosp-creating-a-systemapplication/#.XxaL2ShKiUk


UART

Project you can take as reference: https://github.com/chzhong/serial-android

SPI

Project you can take as reference: https://github.com/rrandyzh/android-jni-spi

GPIO

Project you can take as reference: https://github.com/synportack24/GPIO

I2C

https://github.com/synportack24/GPIO/blob/master/app/src/main/jni/i2c_fragment.c

CAN

https://github.com/entropia/libsocket-can-java
Please refer to README.md for making an application.
You can either use the setenforce 0 or have your own sepolicies written, for that refer to SeLinux