I got the emulator for the NEO 1973 up and running, it took a simple code tweak for it to build with gcc 4.1.1.  Now I am looking for more info about getting the SDK installed so I can play around with it a bit.  Can anyone point me to some more info about it?
<br><br>CaseyB<br><br>P.S.<br>Here&#39;s the diff of the change I made.<br><br>Index: hw/neo1973.c<br>===================================================================<br>--- hw/neo1973.c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (revision 1942)<br>+++ hw/neo1973.c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (working copy)
<br>@@ -121,13 +121,11 @@<br><br>&nbsp;static void neo_gps_switch(int line, int level, void *opaque)<br>&nbsp;{<br>-&nbsp;&nbsp;&nbsp; neo_printf(&quot;GPS %sV supply is now %s.\n&quot;,<br>-#ifdef GTA01Bv3<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; line == GTA01_GPIO_GPS_EN_3V3 ? &quot;
3.3&quot; : &quot;3.0&quot;,<br>+#if defined(GTA00Bv3)<br>+&nbsp;&nbsp;&nbsp; neo_printf(&quot;GPS %sV supply is now %s.\n&quot;,line == GTA01_GPIO_GPS_EN_3V3 ? &quot;3.3&quot; : &quot;3.0&quot;,level ? &quot;on&quot; : &quot;off&quot;);
<br>&nbsp;#else<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; line == GTA01_GPIO_GPS_EN_2V8 ? &quot;2.8&quot; : &quot;3.0&quot;,<br>+&nbsp;&nbsp;&nbsp; neo_printf(&quot;GPS %sV supply is now %s.\n&quot;,line == GTA01_GPIO_GPS_EN_2V8 ? &quot;2.8&quot; : &quot;3.0&quot;,level ? &quot;on&quot; : &quot;off&quot;);
<br>&nbsp;#endif<br>-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; level ? &quot;on&quot; : &quot;off&quot;);<br>&nbsp;}<br><br>&nbsp;static void neo_gps_rst_switch(int line, int level, void *opaque)<br><br>