frommessage
thatmonkey
629 days ago
Just some minor changes to make this work in Linux. Speaks for the portability of Python.

Here is the diff.

< #! /usr/bin/env python

> #!/usr/bin/python

< self.gpsport = "COM1"

> self.gpsport = "/dev/ttyS0"

< for(var i = 0; i < 9; i++) {

< var iport = "COM"+i;

< if(i == 0) iport = "DEMOMODE";

> for(var i = -1; i < 4; i++) {
> var iport = "/dev/ttyS"+i;
> if(i == -1) iport = "DEMOMODE";
massradius
518 days ago
Hey ThatMonkey. How hard would it be to port this to symbian? I'd give you $100 (via paypal) if you could do it

 

You must be logged in to post. You may create an account by typing your desired username and password into the login area to the left.