Reputation: 310
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
Reputation: 793
Use ioctl or open fd on the device created by kernel module.
Upvotes: 1