Hello,
Hardware: TI's AM3517 evaluation kit.
OS Release: Android Froyo
The socketCAN (berlios) interface is included in the Android Linux
kernel (Froyo release).
But when browsing the kernel header files for the NDK platforms it is
missing and following includes in my native code creates errors:
#include <linux/can.h>
#include <linux/can/raw.h>
The error is simply, file not found.
I need to be able to access the canbus interface on my platform.
It would be nice to be able to use some of the can-utils within the
socketcan project.
Therefore I would like to test it, by compiling the utilities with
NDK.
Is it possible to add the socketCAN interface to a custom NDK
platform?
Regards
Palsson
--
You received this message because you are subscribed to the Google Groups "android-ndk" group.
To post to this group, send email to andro...@googlegroups.com.
To unsubscribe from this group, send email to android-ndk...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-ndk?hl=en.
Hello again,
Well not working.
If I copy my missing header files to what I think is the proper
location.. $NDK/platforms/android-8/arch-arm/usr/include/linux
the build system is still not finding them.
I might be missing something, but do I have to make some sort of ndk-
build clean, for the build-system to search "again" for header files
from that location?
Sorry if I'm lacking some basics here.