It could be whatever. Including improper code generation by MADDE, which has happened before.
It could be whatever. Including improper code generation by MADDE, which has happened before.
I don't want to say this time the problem is MADDE. I simply cannot know what is particular problem. In such circumstances it's normally good idea to try in native Linux environment or WMware to check, if you have the same result or different. It could be device SW problem as well. Are you using the latest software on the phone?
[QUOTE=divanov;707023It could be device SW problem as well. Are you using the latest software on the phone?[/QUOTE]
Yes, I think so. the basic information:
I am now trying to build the project in Ubuntu with Maemo5 SDK. I could run the camera.c on emulator. Now I want to ask how to build it on device? Could you please offer me the related links about it? It would be bettter if I could on-device debug immediately with scrachbox.Code:Nokia N900 Maemo 5 Version:2.2009.51-1.205.1
The latest build is 02-8 as far you can see from here:
http://tablets-dev.nokia.com/nokia_N900.php
Just activate ARMEL target and compile application there then copy binary to a device
http://maemo.org/development/trainin...00000000000000
Naturally you can use gdbserver on the device and some IDE on host system. There is a thread how you can do that using ESbox and N900 device.
http://discussion.forum.nokia.com/fo...727#post707727
However, I would suggest you to use printf-debugging, which is very simple and requires no setup.
http://en.wikipedia.org/wiki/Debuggi...ging_techiques.
Why do you need to set CPU transparency on N900?
It works properly as it's supposed to, without any pipeline problem (so far as I know). Still wonder what the problem might be with MADDE+Qt on windows. Do you think it could be the problem using Qt and Gtk+ at the same time caused the failure in executing?
Just wonder how did you build the project, with gcc or qmake/make?
Last edited by pta0007; 2010-02-25 at 08:38.
example_camera.c doesn't have any code related to Qt.
There is no way to avoid gcc usage. There are two alternative toolchains:
qmake (creates Makefile) -> make (uses gcc)
autotools (creates Makefile) -> make (uses gcc)
There is no significant difference between toolchains, if you use them properly.
maemo-examples has Makefile so it's enough to call "make" to build all examples.