Embedded systems


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Embedded systems
# 1  
Old 10-07-2010
Embedded systems

Hi,
I dont know whether it is the right space to put it... but didnt found related Embedded.

I want to start learning Embedded systems in Unix, It would be greatly appreciable if someone could help me to start off ....

Thanks

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with removing embedded linefeeds

Greetings all, i have csv file with pipe separated columns SSN|NAME|ADDRESS|FILLER 123|abc|myaddress|xxx 234|BBB|my add ress broken up|yyy In the example above, the second record is broken into multiple lines. I need to keep going until I find a "|" since this issue is with the... (14 Replies)
Discussion started by: stayalive
14 Replies

2. What is on Your Mind?

From Systems Admin to Systems Eng.

I have been wondering how do Systems Administrators do the jump into Systems Engineering? Is it only a matter of time and experience or could I actually help myself get there? Opinions? Books I could read? Thanks a lot for your help! (0 Replies)
Discussion started by: svalenciatech
0 Replies

3. Programming

Static in Qt c++ Embedded Python

i have a problem in Use static variables in Qt C++ under CentOS 5.5 i need to pass a variable from GUI to class all function are static. it always give me that error error: undefined reference to strChar class QPython : public QObject { private: public: QString strChar; static PuObject*... (1 Reply)
Discussion started by: HanyM.Magdy
1 Replies

4. Linux

UNIX scripts on embedded uC

hi all, i am new to this..i have some bash scripts that i would like to run on a microcontroller.. do i have to load a Linux/UNIX OS first? how do I do this? are there any good links to read about this? any help appreciated.. (1 Reply)
Discussion started by: npatwardhan
1 Replies

5. Shell Programming and Scripting

Escaping embedded variables

I'm running into a problem with a differential backup script written in GNU Bash 3.0 - the following stripped down code demonstrates the problem quite nicely. $ DATE="last tuesday" $ date --date="$DATE" Tue Jan 6 00:00:00 PST 2009 So far so good. $ CMD="date --date=\"$DATE\"" $... (6 Replies)
Discussion started by: vertigo23
6 Replies

6. Shell Programming and Scripting

Problems with Embedded IF-else

Hi, I am putting the finishing touches on a shell script. I have the following which works FINE: if ] && ] then /bin/mail -s "Illegal Loggon Attempts on MAIL" sysadmin@ghf.com < final_email.tmp fi However, I need to make several else clauses and the interpreter complains... (1 Reply)
Discussion started by: mojoman
1 Replies

7. UNIX for Advanced & Expert Users

How to add user on Embedded System

The directions below were provided by someone on the unslung mailing list. unslung is a linux OS for LinkSys's $100 NSLU2 NAS controller. I'm posting the query here because (1) I think it is really a generic linux/unix questions (2) I did not get a response in the unslung mailing list. I... (1 Reply)
Discussion started by: siegfried
1 Replies

8. Shell Programming and Scripting

grep embedded in a variable

Hi , well at the beginning i simply type : cat file.1|grep 'update process' but for looping and table needs , i wanted to do the following : var1="grep 'update process'" cat file1|"var1" and i got error : grep: can't open update grep: can't open process when it works if i... (6 Replies)
Discussion started by: Nicol
6 Replies

9. Shell Programming and Scripting

Embedded list? Is this possible

I need to write a script that maintains many directories. I was wondering is there is a way to create a list of the directories inside a script so that you can then use “while read line” to perform different commands for each directory. Something like this #!/bin/sh MYLIST: /dir1 /dir2... (1 Reply)
Discussion started by: zasxes
1 Replies

10. Programming

Embedded programming

Anyone know any good sources (books, urls, etc) for learning embedded programming, for example with Tornado from Wind River? (3 Replies)
Discussion started by: TioTony
3 Replies
Login or Register to Ask a Question
QFontManager(3qt)														 QFontManager(3qt)

NAME
QFontManager - Implements font management in Qt/Embedded SYNOPSIS
#include <qfontmanager_qws.h> Public Members QFontManager () ~QFontManager () QDiskFont * get ( const QFontDef & f ) Static Public Members void initialize () void cleanup () DESCRIPTION
The QFontManager class implements font management in Qt/Embedded. There is one and only one QFontManager per Qt/Embedded application (qt_fontmanager is a global variable that points to it). It keeps a list of font factories, a cache of rendered fonts and a list of fonts available on disk. QFontManager is called when a new font needs to be rendered from a Freetype-compatible or BDF font on disk; this only happens if there isn't an appropriate QPF font already available. See also Qt/Embedded. MEMBER FUNCTION DOCUMENTATION
QFontManager::QFontManager () Creates a font manager. This method reads in the font definition file from INSTALL/lib/fonts/fontdir, where INSTALL is the directory where Qt/Embedded was installed, and creates a list of QDiskFonts to hold the information in the file. It also constructs any defined font factories. QFontManager::~QFontManager () Destroys the QFontManager and sets qt_fontmanager to 0. void QFontManager::cleanup () [static] Destroys the font manager QDiskFont * QFontManager::get ( const QFontDef & f ) Returns the QDiskFont that best matches f, based on family, weight, italicity and font size. void QFontManager::initialize () [static] Creates a new QFontManager and points qt_fontmanager to it SEE ALSO
http://doc.trolltech.com/qfontmanager.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qfontmanager.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QFontManager(3qt)