Recent content by mary rose

  1. M

    how to change GPS characters into numbers

    thanks everyone, success! Exactly what I wanted symbol hours = b6 symbol mins = b7 symbol secs = b8 serout c.1,n2400,(254,1) main: setfreq m16 serin c.4,T9600_16,("GGA"),b27,b0,b1,b2,b3,b4,b5 hours = b0 - "0" * 10 + b1 - "0" mins = b2 - "0" * 10 + b3 - "0" secs = b4 - "0"...
  2. M

    how to change GPS characters into numbers

    Thanks Alan. You've put me on the right track. Cheers Bob, ZL4CE
  3. M

    how to change GPS characters into numbers

    I want to change the hour time from a GPS module which is in separate characters into a number. For example 12 o'clock is an ascii character for '1' followed by an ascii character for '2'. I want to change the 2 characters and merge into 1 variable number '12' so I can simply then add or...
  4. M

    converting refined axe114 to 28X2

    I've reverse engineered the axe114 to understand the circuit, and have now modified it to show only hours & minutes on a new pcb, and it works perfectly with the original 28X1, but has problems trying to convert to 28X2. I think it's in the differences in how the 2 chips handle their ports but...
Top