Click “Read the original text” to access more VxWorks resources
This is a free PDF version of the VxWorks development guide, or VxWorks development tutorial, with a total of 168 pages. If you are looking for a comprehensive VxWorks 5.5 development tutorial or guide, this is suitable for you. The tutorial uses the ARM 9 S3C2410 development board, which may be obsolete on the market, but second-hand boards should still be available and helpful for beginners.
Click “Read the original text” to download the complete tutorial!
Content Excerpt
Chapter One Wind River………………………………………………….. 4
1.1 Introduction to Wind River Systems …………………………………………….. 4
1.2 Introduction to Real-Time Operating System VxWorks……………………………………… 4
Chapter Two Tornado…………………………………………………….. 6
2.1 Installing the Development Environment ………………………………………………… 6
2.2 Overview of the Tornado Integrated Development Environment ……………………………………… 6
2.2.1 Tornado Editor ………………………………………….. 6
2.2.2 Project Management ………………………………………………. 7
2.2.3 Compilation ………………………………………………….. 7
2.2.4 Target System Browsing Browser……………………………… 8
2.2.5 Crosswind Debugger …………………………………. 8
2.2.6 C Language Command Shell Tool WindSh………………………………. 9
2.2.7 VxWorks Emulator——VxSim …………………………………. 9
2.2.8 Target Software Logic Analysis——WindView …………………………… 9
2.2.9 User Customization Features ………………………………………….. 10
2.3 A Simple Project Based on VxSim …………………………………….. 10
2.3.1 Starting Tornado…………………………………………… 10
2.3.2 Creating a Project ……………………………………………… 11
2.3.3 Adding Example Source Code to the Project …………………………………….. 13
2.3.4 Compiling the Project ……………………………………………… 15
2.3.5 Downloading the Project to the VxWorks Target Emulator ……………………………. 17
2.3.6 Running Applications from the Tornado Shell ……………………………. 20
2.3.7 Checking Target Memory Usage …………………………………… 21
2.3.8 Viewing Tasks……………………………………………… 22
2.3.9 Modifying Task Priority and Troubleshooting ……………………………… 24
Chapter Three Basic Project Practice ……………………………………………….. 26
3.1 Bootable Project Practice …………………………………………… 26
3.2 Downloadable Project Practice ……………………………………….. 30
Chapter Four Driver Experiments…………………………………………………… 35
WindML 3.0.3 Development………………………………………………. 35
4.1 Introduction to WindML ……………………………………………….. 35
4.2 Installation and Configuration………………………………………………… 39
4.3 WindML Architecture ……………………………………………….. 39
4.4 Overview of WindML Development Process ………………………………………… 40
4.5 Detailed Development Process of UPTECH2410 LCD ……………………………….. 41
4.5.1 Modifying WindML’s BSP ……………………………………… 41
4.5.2 Creating LCD Configuration Files …………………………………….. 44
4.5.3 Developing LCD Driver Programs ………………………………………. 51
4.6 WindML Example Analysis ……………………………………………. 57
4.6.1 wexbasic Example Analysis ……………………………………… 57
4.6.2 ugldemo Example Analysis ………………………………………. 67
4.7 2410 LCD WindML Software Usage Methods ………………………………… 70
Chapter Five Application Experiments…………………………………………………… 71
5.1 Serial Port ………………………………………………………. 71
5.1.1 Overview of Serial Port……………………………………………… 71
5.1.2 Serial Port Operations……………………………………………… 71
5.1.2.1 open……………………………………………. 72
5.1.2.2 close…………………………………………… 72
5.1.2.3 read……………………………………………. 73
5.1.2.4 write…………………………………………… 73
5.1.2.5 ioctl…………………………………………… 73
5.1.3 Experiments…………………………………………………. 74
5.1.3.1 Using the write Function for Serial Port Write Operations…………………….. 74
5.1.3.2 Using the read Function for Serial Port Read Operations……………………… 77
5.1.3.3 Using the ioctl Function for Serial Port Control………………………. 78
5.2 Block Device-Based File System………………………………………… 80
5.2.1 File Systems Supported by VxWorks …………………………………. 80
5.2.2 Configuration of File Systems………………………………………… 81
5.2.3 ramDrv……………………………………………….. 82
5.3 Network Communication…………………………………………………… 87
5.3.1 Overview…………………………………………………. 87
5.3.2 VxWorks Sockets ………………………………………… 88
5.3.3 Socket Functions …………………………………………… 88
5.3.3.1 socket………………………………………….. 88
5.3.3.2 bind……………………………………………. 89
5.3.3.3 listen………………………………………….. 91
5.3.3.4 accept………………………………………….. 91
5.3.3.5 connect…………………………………………. 92
5.3.3.6 send and recv……………………………………… 92
5.3.3.7 sendto and recvfrom………………………………… 94
5.3.4 Experiments…………………………………………………. 95
5.3.4.1 Ping……………………………………………. 95
5.3.4.2 Stream Socket (TCP-based) ……………………………… 99
5.3.4.3 Datagram Socket (UDP-based) …………………………. 102
5.3.4.4 FTP……………………………………………. 104
5.3.4.5 Capturing and Analyzing Ethernet Packets…………………………….. 111
5.4 Multi-tasking Environment………………………………………………… 115
5.4.1 Tasks………………………………………………… 115
5.4.1.1 Overview…………………………………………… 115
5.4.1.2 Task Function Library……………………………………… 116
5.4.2 Communication Mechanisms Between Tasks……………………………………… 116
5.4.2.1 Semaphores…………………………………………. 116
5.4.2.2 Message Queues……………………………………….. 120
5.4.2.3 Pipes…………………………………………… 122
5.4.2.4 Signals…………………………………………… 122
5.4.4 Experiments………………………………………………… 124
5.4.4.1 Creating Tasks and Observing Task Scheduling Using WindView……………….. 124
5.4.4.2 Synchronizing Tasks Using Binary Semaphores…………………………. 126