Compaq iPAQ h3760 Datenblatt

Stöbern Sie online oder laden Sie Datenblatt nach Nein Compaq iPAQ h3760 herunter. Compaq iPAQ h3760 Datasheet Benutzerhandbuch

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 75
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 0
ENEE408G Multimedia Signal Processing
Mobile Computin
g
and Pocket PC
Programming Manual
Guan-Ming Su
Min Wu
K. J. Ray Liu
Department of Electrical and Computer Engineering
University of Maryland at College park
Last Updated: September 23, 2003
Seitenansicht 0
1 2 3 4 5 6 ... 74 75

Inhaltsverzeichnis

Seite 1 - K. J. Ray Liu

ENEE408G Multimedia Signal ProcessingMobile Computing and Pocket PC Programming Manual Guan-Ming Su Min Wu K. J. Ray Liu Dep

Seite 2

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 9Private Sub bnG_Click() ImageCtl1.Picture = "flower_g

Seite 3

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 103. Distribute eMbedded Visual Basic Application Step 1. Make

Seite 4

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 115. Add More Components to A Project In this section, we cont

Seite 5 -

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 12 mnuDropMenu.Items.Add , "mnuOpen", "Open&q

Seite 6

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 13 Text1.Visible = txt1B bnSave.Visible = True

Seite 7

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 14 The left figure below shows the result after selectin

Seite 8

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 15 Component Name Caption/Text Scrollbars Winsock Winsock1

Seite 9

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 16 If Err.Number <> 0 Then Ms

Seite 10

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 17Microsoft Win32 API. Those API’s are a collection of dynamic

Seite 11

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 18(2) From File Æ Open on the API Viewer menu bar, select wince

Seite 12

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 1 Contents Part I. A Brief Introduction to Pocket PC 2

Seite 13

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 19 Part IV. Microsoft eMbedded Visual C++ 3.0 (eVC) 11 1. In

Seite 14

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 202. eVC Demo Project-1: Digital Image Processing – Handheld Im

Seite 15

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 21(2) Set title as “ImageProcPPC” and disable other check items

Seite 16

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 22(5) AppWizard will summarize the features and files of new pr

Seite 17

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 23(2) Edit the Dialog Box. Click the “TODO: Place dialog contro

Seite 18

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 24 (5) Add Member Map and Function using ClassWizard We n

Seite 19

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 25establish. Repeat the same procedures described above. The O

Seite 20

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 26 (2) Add existing files to this project. The fundamental im

Seite 21

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 27(e)Edit ImageProcPPCDlg.h16 // ImageProcPPCDlg.h : header fi

Seite 22

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 28 //{{AFX_INSERT_LOCATION}} // Microsoft eMbedded Visual C++ w

Seite 23

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 2 Part I. A Brief Introduction to Pocket PC 1. Compaq iPAQ P

Seite 24

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 29 // TODO: Add extra initialization here // Add you own in

Seite 25

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 30 dibit = (BYTE*)m_pDib.GetDIBits(); // set pointer to acces

Seite 26

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 31the Platform as Pocket PC 2002, Win32 [WCE x86] Debug, and Po

Seite 27

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 323. eVC Demo Project-2:Digital Video Processing – Video Player

Seite 28

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 33(2) Check “Basic MenuBar” on Control bar type and disable all

Seite 29 - (f)Edit ImageProcPPCDlg.cpp

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 34 (5) AppWizard will summarize the features and files of the n

Seite 30

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 35(d) Edit Dialog Box (1) In this section, we will design a di

Seite 31

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 36 (3) Initialize the Slider, Edit Box, and List Box: Right c

Seite 32

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 37 We can add more required messages and member functions usi

Seite 33

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 38 (2) Click on VideoProcPPCDoc.h20 // VideoProcPPCDoc.h : in

Seite 34

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 32. Operating Pocket PC A useful document explaining how to op

Seite 35

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 39 virtual void Serialize(CArchive& ar); //}}AFX_VIRTUAL

Seite 36

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 40// Operations public: // Overrides // ClassWizard generate

Seite 37

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 41 //{{AFX_INSERT_LOCATION}} // Microsoft eMbedded Visual C++ w

Seite 38

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 42 DDX_Control(pDX, IDC_LIST_RATE, m_List_Rate); DDX_Control(p

Seite 39

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 43 ASSERT_VALID(pDoc); CClientDC aDC(&

Seite 40

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 44 pDoc->m_DIBSection.SetBitmap(&

Seite 41

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 45 // TODO: Add your control notification handler code here

Seite 42

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 46 bmiHeader.biBitCount =24;

Seite 43

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 47 (j) Run your program on the Pocket PC21 Y

Seite 44

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 484. eVC Demo Project-3:Digital Speech Processing – Spectrum A

Seite 45

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 4 Part II. Microsoft Windows® Platform SDK for Pocket PC2 1

Seite 46

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 49(2) Disable all features and choose “Basic MenuBar” on Contro

Seite 47

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 50(g) AppWizard will summarize the features and files of new pr

Seite 48

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 51 So far, we have already created the File main menu item. W

Seite 49

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 52 (3) Set Message After setting up the menu bar, we need to

Seite 50

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 53 (2) We add some variables used in this project in the heade

Seite 51

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 54 // Put your own protected data here Æ int show_spectrum

Seite 52

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 55#include <mmreg.h> #include "PlotXY.h" #inclu

Seite 53

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 56// CSpeechProcPPCView drawing void CSpeechProcPPCView::OnDra

Seite 54

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 57 BYTE* InDataBuf; // buffer for read in data

Seite 55

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 58} // ####### Start to record ########## // function was pr

Seite 56

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 5 Part III. Microsoft embedded Visual Basic 3.0 1.Design En

Seite 57

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 59{ // TODO: Add your command handler code here

Seite 58

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 60 You will see the GUI on the emulator. You

Seite 59

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 615. eVC Demo Project-4: Digital Audio Processing – Digital Pia

Seite 60

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 62(2) Disable all features and set title as “AudioProcPPC”. Cli

Seite 61

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 63 (5) AppWizard will summarize the features and files of new p

Seite 62

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 64 Thus, we create a WAVE resource. (3) Import .wav file: Pu

Seite 63

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 65Change the text in the ID list box into the text in the File

Seite 64

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 66 (3) Messages and Member Functions: We can set up Messages a

Seite 65

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 67 (e) Edit AudioProcPPCDlg.cpp26 // AudioProcPPCDlg.cpp : imp

Seite 66

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 68 return TRUE; // return TRUE unless you set the focus to

Seite 67

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 6Choose Pocket PC (Default Device) or Pocket PC 2002 (Default

Seite 68 - (e) Edit AudioProcPPCDlg.cpp

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 69Click the compile icon to compile your program and then cli

Seite 69

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 706. Troubleshooting (a) Q: How to solve the problem while eVC

Seite 70

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 71Step-2: Choose Memory on the System tap of the Settings Windo

Seite 71

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 72(1) WinCE uses Unicode by which each character is represented

Seite 72

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 73(1) Use the MessageBox function. E.g. MessageBox(_T(“Cannot

Seite 73

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 74 Part V. Further Reference 1.eMbedded Visual Tools’ built-

Seite 74

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 7Pocket PC or Pocket PC emulator. To import/export files, you c

Seite 75 - Part V. Further Reference

ENEE408G Fall 2003 (Update 09/23/2003) Mobile Computing and Pocket PC Programming 8 2. Build A Simple Program In this sub-section, we implement

Kommentare zu diesen Handbüchern

Keine Kommentare