資料載入處理中...
跳到主要內容
臺灣博碩士論文加值系統
:::
網站導覽
|
首頁
|
關於本站
|
聯絡我們
|
國圖首頁
|
常見問題
|
操作說明
English
|
FB 專頁
|
Mobile
免費會員
登入
|
註冊
切換版面粉紅色
切換版面綠色
切換版面橘色
切換版面淡藍色
切換版面黃色
切換版面藍色
功能切換導覽列
(216.73.216.223) 您好!臺灣時間:2025/10/08 03:15
字體大小:
字級大小SCRIPT,如您的瀏覽器不支援,IE6請利用鍵盤按住ALT鍵 + V → X → (G)最大(L)較大(M)中(S)較小(A)小,來選擇適合您的文字大小,如為IE7或Firefoxy瀏覽器則可利用鍵盤 Ctrl + (+)放大 (-)縮小來改變字型大小。
字體大小變更功能,需開啟瀏覽器的JAVASCRIPT功能
:::
詳目顯示
recordfocus
第 1 筆 / 共 1 筆
/1
頁
論文基本資料
摘要
外文摘要
目次
參考文獻
電子全文
紙本論文
QR Code
本論文永久網址
:
複製永久網址
Twitter
研究生:
紀宏源
研究生(外文):
Hung Yuan Chi
論文名稱:
在32BitARM架構上整合LwIP到MicroC/OSII
論文名稱(外文):
Integrating LwIP with MicroC / OS II on 32-Bit ARM Architectures
指導教授:
張軒彬
指導教授(外文):
Hsung-Pin Chang
學位類別:
碩士
校院名稱:
國立中興大學
系所名稱:
資訊科學系
學門:
工程學門
學類:
電資工程學類
論文種類:
學術論文
論文出版年:
2006
畢業學年度:
94
語文別:
中文
論文頁數:
50
中文關鍵詞:
網路平台
、
嵌入式系統
外文關鍵詞:
ARM
、
uC/OSII
相關次數:
被引用:
2
點閱:940
評分:
下載:115
書目收藏:0
網路己成為現代資訊流通的重要媒介,在網路上隨時都有新的資訊出現,上網的人口也隨著電腦、教育、網路的遍及而顯著的增加。也因此現代化資訊產品的開發,如:嵌入式系統等,都朝著和網路銜接為發展方向,而TCP/IP通訊協定是目前網際網路的主要技術與標準。所以在嵌入式系統上架構TCP/IP通訊協定,變成了現今最熱門的課題。
目前得到廣泛應用的嵌入式作業系統uClinux,因為繼承了Linux網路作業系統的優勢:內嵌TCP/IP協定,可是由於對於記憶體的需求較多,導致成本太高,不符合嵌入式系統精簡的要求。
MicroC/OS-II 是一個簡單、高效率Embedded Real-Time Operating System,被應用於各種嵌入式系統中,並支援 x86、ARM、PowerPC、MIPS 等許多的架構中,而經過數百個商業應用實例,其穩定性和實用性是經驗証過。
但因uC/OSII不支援網路功能,所以在本論文中我們在32-Bit ARM的架構上整合TCP/IP Stack LwIP到µC/OS II上,來架構一套實用且具有網路平台的嵌入式系統。
The Internet has become a very important medium for communication nowadays. There are always the newest information popping up on the Internet, and the number of people surfing online has increased dramatically .This is because the popularization of computers, the readily availability of computer education, and the increasingly frequent use of the Internet. Therefore, the development of modernized information communication products, such as Embedded System, has been directed toward including the capability to connect the Internet. TCP/IP Protocol Suite is presently the major technique and standard of the Internet.Therefore, build up the TCP/IP Protocol on the Embedded Operating System has become the hottest topic nowadays.
For the time being, the most widely-used Embedded Operating System is μClinux. That is because it inherits the vantage from Linux network operating system, which is to contain TCP/IP Protocol stack. However, it poses greater demand on RAM and result in too high a prime cost.As a result,uClinux could not satisfy the simplifying requirement of Embedded System.
MicroC/OS-II is an easy, highly efficient Embedded Real-Time Operating System. It has been applied to all types of Embedded System, and can support many architectures, such as x86, ARM, PowerPC, MIPS, etc. After hundreds of actual examples of being applied to various commercial products, its stability and practicality is amply tested.
However, μC/OSII does not support the network function. Therefore, in this thesis, on the architecture of 32-Bit ARM, we integrate TCP/IP StackLwIP with μC/OSII, to build up a of practical and network-containing Embedded System.
第一章 緒論 1
1.1 簡介 1
1.2 論文架構 3
第二章 背景知識及相關研究 4
2.1 The LwIP TCP/IP Stack 4
2.1.1 LwIP的運作模式 4
2.1.2 LwIP封包儲存 5
2.1.3 LwIP網路介面 7
2.1.4 LwIP API 8
2.1.5 各執行緒(Thread)間的訊息傳遞 9
2.2 uC/OSII的概述 11
2.3 S3C4510B乙太網路控制電路介紹 14
2.3.1 控制電路的架構 14
2.3.2 控制電路的的訊框緩衝區 15
2.4 相關研究 17
第三章 實作 19
3.1 系統的運作流程 19
3.2 作業系統模擬層(The operating system emulation layer)的實作 20
3.2.1 Include文件的定義 22
3.2.2 外部函式 23
3.2.3 作業系統相關部份 23
3.3 Ethernet network interface drivers for LwIP 30
3.3.1 網路介面的初始化 31
3.3.2 網路介面封包接收實作 32
3.3.3 網路介面封包傳送實作 35
第四章 實驗與結果分析 40
4.1 實驗環境 40
4.2 實驗方法 41
4.3 實驗結果分析 42
第五章 結論與未來發展 49
5.1 結論 49
5.2 未來發展 49
Reference 50
[1]R. Braden,Requirements for internet hosts – communication layers, RFC 1122, Internet Engineering Task Force, October 1989.
[2]Milekic,Network Buffer Allocation in the FreeBSD Operation System,Bosko May 2004
[3]Micrium Empowering Embedded Systems,Web page.
URL:http://www.uCOS-II.com
[4]JEAN J. LABROSSE,MicroC/OS-II:The Real-Time Kernel Second Edition. CMPBooks, 2002
[5]uClinux Embedded Linux/Microcontroller Project,Web page.
URL:http://www.uclinux.org/
[6]Adam Dunkels, LWIP-a lightweight TCP/IP Stack,Web page.
URL:http://www.sics.se/~adam/lwip
[7]Adam Dunkels,Design and Implementation of the LWIP TCP/IP Stack,Swedish Institute of computer Science,Feb 20,2001.
[8]Adam Dunkels,The uIP TCP/IP stack Reference Manual, Swedish Institute of computer Science,Oct 7,2003.
[9]Adam Dunkels,Full TCP/IP for 8-Bit Architectures,Swedish Institute of computer Science.
[10]ARM內核嵌入式SOC原理,新華電腦股份有限公司編著,全華科技圖書股份有限公司印行,2004年6月。
[11]ARM原理與實作,探矽工作室編著,宏友出版,2003年6月。
電子全文
國圖紙本論文
推文
當script無法執行時可按︰
推文
網路書籤
當script無法執行時可按︰
網路書籤
推薦
當script無法執行時可按︰
推薦
評分
當script無法執行時可按︰
評分
引用網址
當script無法執行時可按︰
引用網址
轉寄
當script無法執行時可按︰
轉寄
top
相關論文
相關期刊
熱門點閱論文
1.
無線感測網路校園節能監控
無相關期刊
1.
設計與實作一個新的 SSD 快取架構
2.
香菇柄幾丁質與幾丁聚醣之理化性質與生理活性及其應用
3.
金屬卟啉氧化所產生之結構變形
4.
豬萎縮性鼻炎重組次單位巴氏德桿菌毒素疫苗之研發與免疫效力評估
5.
含電路的整合型濕度微感測器之製作
6.
利用銅電極對硫醚化合物及苯甲基醇進行氧化反應之研究
7.
PNIPAAm接枝型高分子自組裝之應答型高分子粒子:微胞與交聯奈米膠粒之研究
8.
超臨界流體萃取巴西蜂膠中的3,5-雙異戊烯基-4-羥基肉桂酸與其純化製程
9.
台灣地區工廠類建築物防火安全評估法之研究
10.
基於預取與暫存技術上的硬碟工作排程省電方法
11.
基於ARM平台上之嵌入式即時作業系統實作
12.
減振搪刀桿之可行性研究
13.
嵌入式遠端影音監控系統
14.
唐菖蒲花藥培養再生之研究
15.
花豆水耕栽培技術之改良對二點葉蟎(Tetranychus urticae Koch)產量及二點葉蟎危害對花豆多酚氧化酵素活性之影響
簡易查詢
|
進階查詢
|
熱門排行
|
我的研究室