Jump to content
AVIC411.com

Possibilities of the F-series after this update


Recommended Posts

I'm still waiting for my unit to arrive , but have done a lot of reading, have already downloaded the update and a few posts by member "unrequited" got me thinking.

 

First off i am not a programmer. Not even close. i just have applied patches created by people over at gpspassion who have worked extremely hard on helping users "unlocking" certain devices

 

now "unrequited" mentioned about a data.zip file that contained bmp of junk in the trunk..

 

so for those who dont know

the data.zip is like a "skin/theme if you will" it makes the pioneer navigation GUI look the way it looks. So people who see those blue bars still hanging around - the problem may lie in this file. (data.zip).

I have loaded numerous data.zip on my GPS mio 220 and it changes the whole look and feel of the device to your liking. For example having the Street name at the top of the screen over a Green board (mimic signs you see on the road). its all eye candy to say the least but believe me with this new update and what it may have exposed could lead to further improvement and not just by pioneer, if you know what i mean.

But again theres the question of how to write this information as was mentioned in another thread.

 

Just for your info, I turned my bare bone mio 220 that just ran a gps over windows CE 5 into a mp3 player/ video player / nes/genesis emulator, note pad / and a desktop that looks like vista! complete with taskbar and icons etc. I also could install different navigation programs if i wanted to. (this involves a lot more work than just data.zip)

 

One last thing i want to add that is relevant to the F series since we do have sd slot and bluetooth is you can get wifi sd network cards! so yep its possible to get internet on these units. Also its possible to use your bluetooth phone as a modem to connect on the internet. Again, i'm not a programmer, I dont take credit for any of their work other than to say that i applied it and it works and the potential of these unit.

Link to post
Share on other sites

I am totally with you.. I am still waiting on my F90BT. Once it is here, I am going to take a look at using the SD card I am using for my Mio 320. May be the TomTom on the Sd card may run on Pioneer too.

 

Once we are able to bypass the pioneer UI, which is loaded rightafter the win CE is loaded, we could run any program which is compatible with Win CE(or for that matter Windows Mobile w/required libraries.) This opens up lot of poossibilities of converting the unit onto an expensive Car PC.

The advantage of doing this is we do not need to wait for pioneer to release for firmware updates. There are lot of programmers out there who does this type of "testing" for fun.

 

Let's help Pioneer to make this a better product!

Link to post
Share on other sites
I'm still waiting for my unit to arrive , but have done a lot of reading, have already downloaded the update and a few posts by member "unrequited" got me thinking.

 

First off i am not a programmer. Not even close. i just have applied patches created by people over at gpspassion who have worked extremely hard on helping users "unlocking" certain devices

 

now "unrequited" mentioned about a data.zip file that contained bmp of junk in the trunk..

 

so for those who dont know

the data.zip is like a "skin/theme if you will" it makes the pioneer navigation GUI look the way it looks. So people who see those blue bars still hanging around - the problem may lie in this file. (data.zip).

I have loaded numerous data.zip on my GPS mio 220 and it changes the whole look and feel of the device to your liking. For example having the Street name at the top of the screen over a Green board (mimic signs you see on the road). its all eye candy to say the least but believe me with this new update and what it may have exposed could lead to further improvement and not just by pioneer, if you know what i mean.

But again theres the question of how to write this information as was mentioned in another thread.

 

Just for your info, I turned my bare bone mio 220 that just ran a gps over windows CE 5 into a mp3 player/ video player / nes/genesis emulator, note pad / and a desktop that looks like vista! complete with taskbar and icons etc. I also could install different navigation programs if i wanted to. (this involves a lot more work than just data.zip)

 

One last thing i want to add that is relevant to the F series since we do have sd slot and bluetooth is you can get wifi sd network cards! so yep its possible to get internet on these units. Also its possible to use your bluetooth phone as a modem to connect on the internet. Again, i'm not a programmer, I dont take credit for any of their work other than to say that i applied it and it works and the potential of these unit.

 

OK, so I am not a GPS hacker, but I am a Software Engineer with over 6 years professional experience and a Bachelors and Masters in Software Engineering. So here is my .02

 

All that you propose is possible given the time. Most likely the screen that we see is a program that is written by Pioneer to provide a User Interface for multiple hardware drivers and 3rd party libraries. The drivers run the specific hardware in the unit (USB controller, SD Card controller, radio controller, audio output, bluetooth, etc etc). 3rd party libraries and applications would be the GPS, MSN direct, etc.

 

The problem is that the code has to be reverse engineered, since Pioneer has not released the code in a Software Dev Kit, someone who has more time to blow than me would have to decompile the program to produce code. Often, this won't look as good as if we were given an SDK either, since decopmilers can't include comments, and class/variable names, etc etc.

 

If we were given code I would be more than happy to look into fixing things, but I am not a hacker nor do I have the time to reverse engineer.

 

And frankly, I am not really interested in getting on WiFi and adding all those other goodies. That would be nice and all, but I just want the thing to work as it should!

 

Unfortunately I see a real problem with the priority settings within the software. A brief reading of WinCE (and I am no CE expert) indicates its a realtime OS with 256 CPU priority levels. It should not be too difficult for a good team with some experience and time to produce robust software using this type of platform. But the problems I have seen indicate an *architecture* problem, not just a few bugs. The "comma" problem, and the green squares on NAV - well those are minor bugs. The UI slowness, the SD skipping the ends of songs, the slow bootup, the bluetooth issues... those all indicate a more significant issue.

 

IMO, the UI should be running at a very high priority within its own thread, and it should not be sharing data with other processes directly, but should use an async messaging implementation. This would keep it running quickly and responding ASAP always, button presses would work correctly. Then you do have other issues such as how to reflect the data settings correctly, etc. But there are ways to handle that (see Model View Controller).

 

These sort of problems imply a tech refresh is necessary. Thats not great news for us.

 

Of course, I could be wrong, and these could be minor bugs that just *look* like a design and architecture problem.

 

I do wish we could get an SDK.

Link to post
Share on other sites

Based on the lack of polish Pioneer has shown (in the original firmware release, the update process itself, and the updated firmware), I highly doubt they could even find the resources to put together a productive SDK. Never mind that I'm sure they would never release it to the public.

Link to post
Share on other sites

SDK is out of the question; for several reasons

 

1) They'd have to release one for each hardware revision of each AVIC device (Z1, Z2, D3, F Series, etc)

 

2) SDKs are typically only available from companies that want third parties developing hardware and software; this isn't in Pioneer's best interest, because they would be loosing money in the long run.

 

3) An SDK isn't going to do any good for fixing the issues with the unit (as some people think an SDK would do). SDKs are simply software libraries that allow third party software/hardware how to interact with the core system. SDKs don't allow you to change the core system; that isn't their purpose or intent by definition.

 

Aside from the above, the hardware probably couldn't handle much more overhead from things like WiFi connectivity; etc. We can dream though.

Link to post
Share on other sites
SDK is out of the question; for several reasons

 

1) They'd have to release one for each hardware revision of each AVIC device (Z1, Z2, D3, F Series, etc)

 

2) SDKs are typically only available from companies that want third parties developing hardware and software; this isn't in Pioneer's best interest, because they would be loosing money in the long run.

 

3) An SDK isn't going to do any good for fixing the issues with the unit (as some people think an SDK would do). SDKs are simply software libraries that allow third party software/hardware how to interact with the core system. SDKs don't allow you to change the core system; that isn't their purpose or intent by definition.

 

Aside from the above, the hardware probably couldn't handle much more overhead from things like WiFi connectivity; etc. We can dream though.

 

You actually make a good point. An SDK is a library to program for specific hardware, not a library which contains the open source code.

 

I guess what I meant was more along the lines of making the source open - which is still not likely to happen because of point number 2.

Link to post
Share on other sites

We don't need the SDK from Pioneer. In fact the Windows CE SDK is already available from microsoft. And the drivers for all the hardware is already built-into the existing firmware. What we need to do is to extract the drivers from the firmware and makeup a win ce build. Or we can add the complete Win CE suite and run other applications like PIE, Outlook Mobile etc.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...