There might be better ways, but to start with you can refer our sample debug code, where we dump video frame data to files in filesystem. http://git.omapzoom.org/?p=platform/hardware/ti/omap3.git;a=blob;f=liboverlay/v4l2_utils.c;h=cdedf1bb9af61eb0b2aa831840fd611993603e7f;hb=refs/heads/eclair#l719
from native libraries, you can do file operations with below calls.. fopen(filepath) fwrite() fclose() Also, you might want to make sure the filepath have write access for the process (a simple `chmod 777 <filepath>` will suffice) -Deva On Tue, Jun 15, 2010 at 8:59 AM, namaRyo <[email protected]> wrote: > Hi, this is nama. > > I made "sensors.default.so" for arm9 dev.board - Armadillo440 (http:// > www.atmark-techno.com/products/armadillo/a440) > use I2C accelerometer and magnetic filed sensors. and calculate to > orientation. > > I want to save sensor calibration data to internal file at > "sensors.c". and try, but, permission error occurred. > > How can I write to internal file system from "sensors.default.so" ? > > thanks, > > -- > unsubscribe: > [email protected]<android-porting%[email protected]> > website: http://groups.google.com/group/android-porting > -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
