OESF Portables Forum

Model Specific Forums => Sharp Zaurus => Zaurus - pdaXrom => Topic started by: tesla_cubed on March 05, 2007, 04:07:09 pm

Title: Xroadmap Kismet Plugin
Post by: tesla_cubed on March 05, 2007, 04:07:09 pm
I tryed out the kismet plugin with xroadmap and it worked except for geting the location of the detected APs very wrong. About 1/2 mile on a grid there was a AP. Well rdmkismet was converting it to ddmm.ddmmmm not ddmm mmmmm due to typo in the to nema converter to fix it yourself and rebuild change
Code: [Select]
*nmea_mmmm = (int) (kismet * 10000.0);
*nmea_ddmm = (nmea_dd * 100) + nmea_mm;
to
Code: [Select]
*nmea_mmmm = (int) (converting * 10000.0);
*nmea_ddmm = (nmea_dd * 100) + nmea_mm;
in roadmap_kismet.c

or just replace your rdkismet with this one
 [ You are not allowed to view attachments ]

Thanks meine for a easy to setup build system on pdaxii

Happy wardriving  

Tesla^3
Title: Xroadmap Kismet Plugin
Post by: Antikx on March 05, 2007, 05:33:26 pm
Thanks for the info.
I should try it!