lug
07

Qt 4.6.3 Bug

 

BugMartedì, 6 giugno 2010, arriva dai Qt Labs la notizia di un baco nella versione 4.6.3 di Qt, il modulo coinvolto è QtOpenGL e si presenta sotto sistema operativo Windows.
Questo bug causa un device context leak e dopo 9999 operazioni di repaint i widgets non vengono più ridisegnati.

La soluizione al problema è disponibile nel repository e sarà risolta con la prossima release; nel frattempo, per chi compila Qt dai sorgenti, la patch è disponibile qui.

Share/Bookmark

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

giu
11

Photo Frame Mini 2440 source code

 

Hi,

the source code is available here:

http://sourceforge.net/projects/qt4lab/files/

Bye

paolo

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

giu
10

Photo Frame software for Mini 2440 (open source)

 

Hi,

I’m going to publish the source files of the Photo Frame software for Mini 2440 Board. This software is written in C++, using Qt 4.6.2 and available for GNU/Linux. Here you can see a little example of the software running on my Mimi 2440.
The source code will be available soon on my sourceforge account.

www.youtube.com/watch?v=MA1bkipXxkI

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

giu
08

Rilasciato Qt 4.6.3

 

Qt LogoNokia ha rilasciato oggi la versione Qt 4.6.3.
Questo rilascio contiene bugfix ed ottimizzazioni basate sul feedback fornito dagli utenti di Qt 4.6.2; il rilascio è inoltre accompagnato da un aggiornamento del Qt Visual Studio Add-in ed un nuovo build del Qt SDK.
Qt 4.6.3 può essere scaricato, come sempre, da http://qt.nokia.com/downloads
Le informazioni dettagliate sugli aggiornamenti in trodotti in Qt 4.6.3 sono consultabili a questo indirizzo:
http://qt.nokia.com/developer/changes/changes-4.6.3

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

giu
04

Qt 4.6.2 DLL for Mini 2440 on sourceforge

 
Hi all,
I put Qt 4.6.2 DLL on http://sourceforge.net/projects/qt4lab/
Together with the DLLs I uploaded a simple test example.
If you want to try Qt 4.6.2 on your Mini2440 WinCE 5.0 download the zipped
library and the exe files, unzip the libraries on a SD or USB card together
with the executable and run it.
Soon I will upload some other utility programs for Mini 2440 and I need
feedback from Mini 2440 Windows CE users to understand if the libraries and
the executable are running without problems.

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
26

Diventa un Qt Certified Developer e vinci un Nokia N97 MINI

 

PrintTutti coloro che sono interessati a sostenere l’esame di Qt Certified Developer possono vincere un Nokia N97 Mini se prenotano l’esame entro il 30 giugno 2010.
Nokia Certified Qt Developer è l’accreditamento ufficiale per gli sviluppatori software. Essere un Qt Certified Developer consente di aumentare la propria credibilità all’interno dell’ambiente di lavoro o presso i propri clienti ed aiuta nell’avanzamento di carriera.
L’esame può essere prenotato online ed effettuato presso uno qualsiasi tra le migliaia di centri autorizzati presenti nelle principali città di tutto il mondo.
Usa entro il 30 giugno il codice qtcert02 quando prenoti l’esame per partecipare al concorso “Diventa un Qt Certified Developer e vinci un Nokia N97 MINI”.
Per partecipare al concorso, visita il Nokia Certified Qt Developer program al seguente indirizzo:
http://qt.nokia.com/developer/learning/certification

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
21

Qt 4.7.0 beta – Qt Quick (QML) FriendlyARM Mini 2440

 

Ciao a tutti,

sono riuscito a compilare Qt 4.7.0 beta sulla Mini 2440. Questo è il primo esempio di QML (Qt Quick)

Hi all,

after (Qt 4.7.0 beta) successful compilation on Friendly ARM Mini 2440 I run this example: very CUTE!


www.youtube.com/watch?v=HO3n2qn8cZI

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
18

Qt Custom Widgets example: FriendlyARM Mini 2440

 


www.youtube.com/watch?v=vqLraG_RKiY

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
17

Qt Embedded Widgets on Mini 2440 ARM Board video

 


www.youtube.com/watch?v=RXPe9pzhUlE

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
14

How to write Applications in C++ for Friendly ARM mini 2440 using Qt 4.6.2 library: part 1

 

Hi,

this is a first tutorial on “How to write Applications in C++ for Friendly ARM mini 2440 using Qt 4.6.2 library“. I decided to write this simple tutorial because I saw on many different forums (concerning embedded platform) a lot of questions concerning Qt library. In my opinion PC software developers know very well Qt, but there is a lack of knowledge of this application framework  in the embedded world. I write this very little and simple tutorial just to introduce the subject. If it is useful to someone, I’ll write more detailed examples.

===

First of all you have to compile and install Qt on your host computer.

See this tutorial for GNU/Linux target or this tutorial for Windows CE 5.0 target operating system on Mini 2440 board.

Then you can start (on your host computer) a tool like Qt Creator. If you are using Windows you can download Qt Creator here, if you are using GNU/Linux  you can download it here.

Let’s start…

Run Qt Creator and from the File Menu choose New File or Project. You will see a dialog window. Start a new Qt GUI Application on Qt Creator as in following picture:

Clipboard01

Choose a name for your project (example HelloWorld)

Clipboard02

Click Next and leave in the following dialog menu all the default options:

Clipboard03

Choose a name (example MainWindow) for your base class (which in this example is QMainWindow)

Clipboard04

and Finish

Clipboard05

Your Qt Creator IDE will look like this:

Clipboard06

At this point, if you are using MS Visual Studio 2008 to compile code for Windows CE 5.0, from a command prompt run the command:

setcepaths wince50standard-armv4i-msvc2008

If you are using Ms Visual Studio 2005 run the command

setcepaths wince50standard-armv4i-msvc2005

and then type

qmake <the name of file.pro>

and type

nmake

At the end you will have your binary image. Remember to copy all the Qt DLL and the MS visual C run time DLL on your target.

If you are using a GNU/Linux distribution on your target you have to type at the shell prompt:

qmake <the name of file.pro>

and type

nmake

At the end you will have your binary image. Remember to copy all the Qt shared library on the target.

If you think this little tutorial has been useful to you please let me know, so I can decide to write new “how to”  to cover Qt/C++ programming.

Have Fun!

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
13

Rilasciato dataLogger Mini 2440 V 0.1 (”Buggy”)

 

Ciao a tutti,

DSCF5158

Italian version

Stanotte ho finito la prima versione (release  0.1 nome in codice “buggy”) dell’oscilloscopio basato su Qt e qwt per la scheda ARM Mini 2440.

Il codice sorgente è rilasciato sotto GPL ed è disponibile a questo indirizzo:

http://www.sereno-online.com/uploads/dataLogger.zip

come ho scritto sopra è la prima versione che rilascio, al momento è disponibile solo per Windows CE 5.0 ma in futuro la porterò su GNU/Linux. Il codice che rilascio è incompleto, mal scritto ma almeno funziona! Permette di acquisire (per ora con frequenza massima sino a 1Khz) i 4 convertitori A/D a bordo della Mini 2440. Prevedo diversi rilasci per questo strumentino che può essere utile ad hobbisti ed apassionati. Chiunque abbia commenti, critiche, richieste di funzonalità si faccia avanti. La schedina ha parecchie potenzialità e sono sicuro che si potrà fare qualcosa di utile.

English version:

Hi, tonight I finished the first release of my dataLogger for Mini 2440 ARM board. The name for this version is “buggy” and you can understand why ;-)

The code is delivered under GPL license.

At the moment the source code is not completed, is badly written :-( but it allows to acquire the four 10 bits A/D channels of the board at a sampling rate (for now) of 1Khz.

You can download the code from this address

http://www.sereno-online.com/uploads/dataLogger.zip

Any comment, idea, suggestion or feedback is welcome. I think it will become an useful instrument for home laboratory and for experiment.

Have Fun!

Paolo

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
12

Mini 2440 Oscilloscope

 

Oggi sono riuscito a far funzionare la mia Friendly ARM mini 2440 come oscilloscopio.

Usando Windows CE 5.0, librerie qwt (data plotter) e i convertitori A/D il risultato è questo:

Immagine_dataLogger

Di lavoro me ne rimane ancora molto da fare, ma appena finito metto il codice sorgente sotto GPL.

Chi è interessato mi faccia sapere…

ciao

paolo

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
11

Qt 4.6.2 installation procedure (FriendlyARM mini 2440 Windows CE 5.0)

 

This tutorial provides a simple list of steps necessary to compile and install Qt 4.6.2 on Mini 2440 friendly ARM board equipped with Windows CE 5.0.

What you need:

  1. MS Visual studio 2005 or 2008 Professional Edition (NO express edition)
  2. Mini 2440 BSP
  3. Microsoft Win CE 5.0 SDK
  4. Qt 4.6.2

First of all you have to download the Win CE 5.0 BSP package from Friendly ARM web site:

http://www.friendlyarm.net/dl.php?file=wince5-bsp_20100202.zip

Then you have to download the Microsoft standard SDK ( ARM) from Friendly ARM web site:

http://www.friendlyarm.net/dl.php?file=wince5-sdk_20100202.zip

And Qt from Nokia web site:

http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.zip

Finally unzip the files on your hard disk in a directory like C:Qt4.6.2.

A this point from the Visual Studio command prompt you have to configure Qt. Move to Qt root directory and type from the prompt (if you are using Visual studio 2008)

C:Qt4.6.2>  configure –platform win32-msvc2008 –xplatform wince50standard-armv4i-msvc2008

Or, if you are using Visual studio 2005, type from the prompt

C:Qt4.6.2>  configure –platform win32-msvc2005 –xplatform wince50standard-armv4i-msvc2005

After run the command configure, you have to run setcepaths (and you have to do the same before compiling every project)

Type from the command prompt

C:Qt4.6.2> c:Qt4.6.2insetcepaths wince50standard-armv4i-msvc2008

Or

C:Qt4.6.2> c:Qt4.6.2insetcepaths wince50standard-armv4i-msvc2005

Depending if you are using Visual Studio 2008 or 2005.

When setcepaths has completed you can type from the command promt

nmake

and after some time you have you DLL compiled in c:Qt4.6.2lib directory

If you found some mistake in this little tutorial please let me know, so I can fix the problem. Thanks

That’s all!

Paolo

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
11

Qt al LinuxTag 2010

 

Dal 9 al 12 giugno 2010 si terrà alla fiera di Berlino la più vasta fiera dell’open source: Linux Tag.

L’evento, giunto al sedicesimo anno consecutivo, presenta le ultime novità del mondo Linux e del software open source.
Potete visitare Qt Development Frameworks allo stand numero 208, Padiglione 7.2A

Per maggiori informazioni

http://qt.nokia.com/about/events/linuxtag-2010

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

mag
11

Qt Developer Days 2010: aperta la pre-registrazione

 

La pre-registrazione del Qt Developer Day 2010 è aperta!
L’indirizzo a cui effettuare la pre-registrazione è il seguente: http://bit.ly/qtdd10
Eh si, anche quest’anno si terrà l’evento più importante dell’anno per chi segue da vicino lo sviluppo del Qt Application Framework.
Per chi vive nel vecchio continente (e in particolare in Italia), l’appuntamento monacense è particolarmente comodo e unisce la possibilità di aggiornarsi sull’evoluzione del Qt toolkit con una gita in una delle più belle città della Germania.
Come già avvenuto per gli anni scorsi, le date saranno due:

  • Monaco di Baviera 11-13 ottobre
  • San Francisco 1-3 novembre

Come già sperimentato negli anni scorsi, anche la sessione del 2010 permetterà di seguire presentazioni, mini corsi, esposizione di alcuni partner commerciali di Nokia. Questa sarà inoltre l’occasione per sapere quali saranno le evoluzioni future e conoscere altre persone che come noi condividono l’interesse per la piattaforma di sviluppo di Nokia.

Popularity: 1% [?]



Puoi visualizzare il post originale qui.

top