Deepak
Deepak

Reputation: 310

Communication between android application with Kernel

I need to communication between an Android application and a separate kernel module present on the device.

I got some methods like Shared memory but wanted to know if there are any other methods. The data to be exchanged is only text and frequent.

Upvotes: 0

Views: 374

Answers (1)

Anup Warnulkar
Anup Warnulkar

Reputation: 793

Use ioctl or open fd on the device created by kernel module.

Upvotes: 1

Related Questions