本書面向由傳統(tǒng)51單片機(jī)轉(zhuǎn)向ARM嵌入式開發(fā)的硬件工程師、由硬件轉(zhuǎn)嵌入式軟件開發(fā)的工程師、沒有嵌入式開發(fā)經(jīng)驗(yàn)的軟件工程師。分9個部分:1、開發(fā)環(huán)境建立2、S3C2410功能部件介紹與實(shí)驗(yàn)(含實(shí)驗(yàn)代碼)3、bootloader vivi詳細(xì)注釋4、linux移植5、linux驅(qū)動6、yaffs文件系統(tǒng)詳解7、調(diào)試工具8、GUI開發(fā)簡介9、UC/OS移植通過學(xué)習(xí)第二部分,即可了解基于ARM CPU的嵌入式開發(fā)所需要的外圍器件及其接口。對應(yīng)的實(shí)驗(yàn)代碼實(shí)現(xiàn)了對這些接口的操作,這可以讓硬件工程師形成一個嵌入式硬件開發(fā)的概念。這部分也可以當(dāng)作S3C2410的數(shù)據(jù)手冊來使用。一個完整的嵌入式linux系統(tǒng)包含4部分內(nèi)容:bootloader、parameters、kernel、root file system。3、4、5、6部分詳細(xì)介紹了這4部分的內(nèi)容,這是linux底層軟件開發(fā)人員應(yīng)該掌握的。通過學(xué)習(xí)這些章節(jié),您可以詳細(xì)了解到如何在一個裸板上裁減、移植linux,如何構(gòu)造自己的根文件系統(tǒng),如何編寫適合客戶需求的驅(qū)動程序——驅(qū)動程序這章將結(jié)合幾個經(jīng)典的驅(qū)動程序進(jìn)行講解。您還可以了解到在用在nand flash上的非常流行的yaffs文件系統(tǒng)是如何工作的,本書將結(jié)合yaffs代碼詳細(xì)介紹yaffs文件系統(tǒng)。第7部分介紹了嵌入式linux開發(fā)中使用gdb進(jìn)行調(diào)試的詳細(xì)過程。
上傳時間: 2013-10-31
上傳用戶:yunfan1978
第一章 序論……………………………………………………………6 1- 1 研究動機(jī)…………………………………………………………..7 1- 2 專題目標(biāo)…………………………………………………………..8 1- 3 工作流程…………………………………………………………..9 1- 4 開發(fā)環(huán)境與設(shè)備…………………………………………………10 第二章 德州儀器OMAP 開發(fā)套件…………………………………10 2- 1 OMAP介紹………………………………………………………10 2-1.1 OMAP是什麼?…….………………………………….…10 2-1.2 DSP的優(yōu)點(diǎn)……………………………………………....11 2- 2 OMAP Architecture介紹………………………………………...12 2-2-1 OMAP1510 硬體架構(gòu)………………………………….…12 2-2.2 OMAP1510軟體架構(gòu)……………………………………...12 2-2.3 DSP / BIOS Bridge簡述…………………………………...13 2- 3 TI Innovator套件 -- OMAP1510 ……………………………..14 2-2.1 General Purpose processor -- ARM925T………………...14 2-2.2 DSP processor -- TMS320C55x …………………………15 2-2.3 IDE Tool – CCS …………………………………………15 2-2.4 Peripheral ………………………………………………..16 第三章 在OMAP1510上建構(gòu)Embedded Linux System…………….17 3- 1 嵌入式工具………………………………………………………17 3-1.1 嵌入式程式開發(fā)與一般程式開發(fā)之不同………….….17 3-1.2 Cross Compiling的GNU工具程式……………………18 3-1.3 建立ARM-Linux Cross-Compiling 工具程式………...19 3-1.4 Serial Communication Program………………………...20 3- 2 Porting kernel………………………………………………….…21 3-2.1 Setup CCS ………………………………………….…..21 3-2.2 編譯及上傳Loader…………………………………..…23 3-2.3 編譯及上傳kernel…………………………………..…24 3- 3 建構(gòu)Root File System………………………………………..…..26 3-3.1 Flash ROM……………………………………………...26 3-3.2 NFS mounting…………………………………………..27 3-3.3 支援NFS Mounting 的kernel…………………………..27 3-3.4 提供NFS Mounting Service……………………………29 3-3.5 DHCP Server……………………………………………31 3-3.6 Linux root 檔案系統(tǒng)……………………………….…..32 3- 4 啟動及測試Innovator音效裝置…………………………..…….33 3- 5 建構(gòu)支援DSP processor的環(huán)境…………………………...……34 3-5.1 Solution -- DSP Gateway簡介……………………..…34 3-5.2 DSP Gateway運(yùn)作架構(gòu)…………………………..…..35 3- 6 架設(shè)DSP Gateway………………………………………….…36 3-6.1 重編kernel……………………………………………...36 3-6.2 DEVFS driver…………………………………….……..36 3-6.3 編譯DSP tool和API……………………………..…….37 3-6.4 測試……………………………………………….…….37 第四章 MP3 Player……………………………………………….…..38 4- 1 MP3 介紹………………………………………………….…….38 4- 2 MP3 壓縮原理……………………………………………….….39 4- 3 Linux MP3 player – splay………………………………….…….41 4.3-1 splay介紹…………………………………………….…..41 4.3-2 splay 編譯………………………………………….…….41 4.3-3 splay 的使用說明………………………………….……41 第五章 程式改寫………………………………………………...…...42 5-1 程式評估與改寫………………………………………………...…42 5-1.1 Inter-Processor Communication Scheme…………….....42 5-1.2 ARM part programming……………………………..…42 5-1.3 DSP part programming………………………………....42 5-2 程式碼………………………………………………………..……43 5-3 雙處理器程式開發(fā)注意事項(xiàng)…………………………………...…47 第六章 效能評估與討論……………………………………………48 6-1 速度……………………………………………………………...48 6-2 CPU負(fù)載………………………………………………………..49 6-3 討論……………………………………………………………...49 6-3.1分工處理的經(jīng)濟(jì)效益………………………………...49 6-3.2音質(zhì)v.s 浮點(diǎn)與定點(diǎn)運(yùn)算………………………..…..49 6-3.3 DSP Gateway架構(gòu)的限制………………………….…50 6-3.4減少IO溝通……………….………………………….50 6-3.5網(wǎng)路掛載File System的Delay…………………..……51 第七章 結(jié)論心得…
上傳時間: 2013-10-14
上傳用戶:a471778
實(shí)時操作系統(tǒng),kernel部分完成于2006年上半年,其IPC部分甚至是年中時才具備相 應(yīng)的雛形。最開始時是因?yàn)橐獮榕笥炎鲆粋€小型的手持設(shè)備,而本人起初又是另一國內(nèi)老牌 實(shí)時操作系統(tǒng):DOOLOO RTOS開發(fā)人員,但這個團(tuán)隊(duì)在2005年底已經(jīng)解散。但朋友的系統(tǒng)要 上,用其他小型系統(tǒng)嗎,一不熟悉,二看不上。答應(yīng)朋友的事,總得有解決方法吧,即使是原來 的DOOLOO RTOS,因?yàn)槠浞耉xWorks結(jié)構(gòu),導(dǎo)致它的核心太大,包括太多不必要的東西(一套 完整的libc庫),這些方案都否決了。怎么辦?當(dāng)時朋友那邊也不算太急,先自己寫一套內(nèi)核吧。 這個就是源頭!(后來雖然朋友的項(xiàng)目夭折了,但這套OS則保留下來了,并開源了,萬幸) 1 序 3 1.1 RT-Thread誕生 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 艱難的發(fā)展期 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.3 一年增加0.0.1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.4 Cortex-M3的變革 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.5 面向?qū)ο笤O(shè)計方法 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.6 文檔結(jié)構(gòu) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 實(shí)時系統(tǒng) 7 2.1 嵌入式系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.2 實(shí)時系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.3 軟實(shí)時與硬實(shí)時 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 3 快速入門 11 3.1 準(zhǔn)備環(huán)境 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 3.2 初識RT-Thread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 3.3 系統(tǒng)啟動代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3.4 用戶入口代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.5 跑馬燈的例子 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 3.6 生產(chǎn)者消費(fèi)者問題 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4 RT-Thread簡介 25 4.1 實(shí)時內(nèi)核 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 4.2 虛擬文件系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.3 輕型IP協(xié)議棧 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.4 shell系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.5 圖形用戶界面 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.6 支持的平臺 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 5 內(nèi)核對象模型 29 5.1 C語言的對象化模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 5.2 內(nèi)核對象模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 6 線程調(diào)度與管理 39 6.1 實(shí)時系統(tǒng)的需求 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
標(biāo)簽: RT-Thread 實(shí)時操作系統(tǒng) 編程指南 版本
上傳時間: 2013-10-14
上傳用戶:1234321@q
本次會議,我們將討論加入下一代多核軟件開發(fā)包(SDK)的多個創(chuàng)新技術(shù),包括簡潔、高可用API集的新基礎(chǔ)庫(FLIB);重構(gòu)的Netcomm軟件庫;支持SEC IP模塊以實(shí)現(xiàn)安全功能的新使能工具;具有參考應(yīng)用的用戶空間DPAA (USDPAA);新型虛擬化技術(shù),包括現(xiàn)有Topaz+基于kernel的虛擬機(jī)(KVM) ,用以優(yōu)化用戶空間的嵌入式容器支持;及非對稱多處理框架等。 本會是Multicore Expert系列的一部分,機(jī)會不容錯過。
標(biāo)簽: Multicore Expert 2.0 飛思卡爾
上傳時間: 2013-11-02
上傳用戶:wojiaohs
基于ARM9平臺的linux操作系統(tǒng)移植,步驟詳細(xì),經(jīng)驗(yàn)證能得出理想的結(jié)果。
標(biāo)簽: Linux-kernel 移植 記錄
上傳時間: 2013-11-18
上傳用戶:yulg
This application note provides step-by-step instructions on how to recreate a Tri-Mode Ethernet(TEMAC) performance testing system using the ML405 board and MontaVista Linux 4.0. Thisapplication note shows how to set up a simple EDK Base System Builder system on the ML405Evaluation Platform and run performance tests. The network architecture for the test isdescribed. A system is built and downloaded into the FPGA. A MontaVista Linux kernel isconfigured, built, and downloaded into the ML405 Evaluation Platform. The instructions forobtaining and setting up the software used to perform the measurements, netperf, are given.
標(biāo)簽: Virtex TEMAC XAPP 1023
上傳時間: 2013-11-11
上傳用戶:saharawalker
The use of the Wind River VxWorks Real-Time Operating System (RTOS) on Virtex™-4embedded PowerPC™ processors continues to be a popular choice for high performanceFPGA designs. The introduction of the Wind River Workbench design environment has enableda new and easier way for designers to control the configuration of the VxWorks kernel. Thisguide shows the steps required to build and configure a ML403 Embedded DevelopmentPlatform to boot and run the VxWorks RTOS. A VxWorks bootloader is created, programmedinto Flash, and used to boot the design. The concepts presented here can be scaled to anyPowerPC enabled development platform.
上傳時間: 2013-10-26
上傳用戶:agent
This application note describes the implementation of a two-dimensional Rank Order filter. Thereference design includes the RTL VHDL implementation of an efficient sorting algorithm. Thedesign is parameterizable for input/output precision, color standards, filter kernel size,maximum horizontal resolution, and implementation options. The rank to be selected can bemodified dynamically, and the actual horizontal resolution is picked up automatically from theinput synchronization signals. The design has a fully synchronous interface through the ce, clk,and rst ports.
上傳時間: 2013-12-14
上傳用戶:逗逗666
最新的支持向量機(jī)工具箱,有了它會很方便 1. Find time to write a proper list of things to do! 2. Documentation. 3. Support Vector Regression. 4. Automated model selection. REFERENCES ========== [1] V.N. Vapnik, "The Nature of Statistical Learning Theory", Springer-Verlag, New York, ISBN 0-387-94559-8, 1995. [2] J. C. Platt, "Fast training of support vector machines using sequential minimal optimization", in Advances in kernel Methods - Support Vector Learning, (Eds) B. Scholkopf, C. Burges, and A. J. Smola, MIT Press, Cambridge, Massachusetts, chapter 12, pp 185-208, 1999. [3] T. Joachims, "Estimating the Generalization Performance of a SVM Efficiently", LS-8 Report 25, Universitat Dortmund, Fachbereich Informatik, 1999.
上傳時間: 2013-12-16
上傳用戶:亞亞娟娟123
微型操作系統(tǒng),想知道操作系統(tǒng)秘密的初學(xué)者可以在這起步。 文件列表: 1 micro-os.img 已編好的軟盤映象。 2 micro-os_kernel.bin 命令核心二進(jìn)制代碼 3 micro-os_loader.boot 啟動二進(jìn)制代碼 4 micro-os_loader.asm micro-os_kernel.asm 源文件 用法:1 編譯源文件 2 將loader.boot 用工具寫入軟盤0道0頭1扇區(qū) kernel.bin寫入0.0.2-0.0.n (n<10) 在 0.0.1的最后兩個字節(jié)寫入55h ,aah 3 啟動 有幾個可用命令 help cls quit exit reboot
標(biāo)簽: 操作系統(tǒng)
上傳時間: 2013-12-11
上傳用戶:zwei41
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1