Home · All Namespaces · All Classes · Grouped Classes · Modules · Functions |
For a device to keep correct time with Qt Extended requires the following:
Note: These processes should be tested on the device prior to Qt Extended controlling them.
Devices may that have readily available external time sources, such as:
Such devices should report such updates by sending a storeExternalSource(QString,uint,int,int) message to the TimeUpdate service.
Currently, only one external source is supported.
If no external source is available, the user will need to set the time shortly after start-up, and the RTC will need to be sufficiently reliable.
Qt Extended requires Time Conversion data such as in <qt-extended-root-dir>/etc/zoneinfo to be on the device. To install the Time Conversion data files either:
if [ ! -d /usr/share/zoneinfo ]; then ln -s /opt/Qtopia/etc/zoneinfo /usr/share/zoneinfo; fi
if [ -d /usr/share/zoneinfo ]; then rm -rf /opt/Qtopia/etc/zoneinfo; ln -s /usr/share/zoneinfo /opt/Qtopia/etc/zoneinfo ; fi
Copyright © 2009 Trolltech | Trademarks | Qt Extended 4.4.3 |