亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

FREE-RTOS

  • USB接口控制器參考設計,xilinx提供VHDL代碼 us

    USB接口控制器參考設計,xilinx提供VHDL代碼 usb xilinx vhdl ;  This program is free software; you can redistribute it and/or modify ;  it under the terms of the GNU General Public License as published by ;  the Free Software Foundation; either version 2 of the License, or ;  (at your option) any later version. ;      ;  This program is distributed in the hope that it will be useful, ;  but WITHOUT ANY WARRANTY; without even the implied warranty of ;  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the ;  GNU General Public License for more details. ;      ;  You should have received a copy of the GNU General Public License ;  along with this program; if not, write to the Free Software ;  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

    標簽: xilinx VHDL USB us

    上傳時間: 2013-10-12

    上傳用戶:windgate

  • 嵌入式系統第七講:VxWorks實時操作系統RTOS

    嵌入式系統講座

    標簽: VxWorks RTOS 嵌入式系統 實時操作系統

    上傳時間: 2013-10-11

    上傳用戶:l254587896

  • RL-RTX_ARM_RTX操作系統

    RTX中文版,相對其他RTOS上手比較快一些,推薦初學者或者有需要的。

    標簽: RL-RTX_ARM_RTX 操作系統

    上傳時間: 2013-12-19

    上傳用戶:旭521

  • RT-Thread實時操作系統編程指南(版本 0.3.0)

    實時操作系統,Kernel部分完成于2006年上半年,其IPC部分甚至是年中時才具備相 應的雛形。最開始時是因為要為朋友做一個小型的手持設備,而本人起初又是另一國內老牌 實時操作系統:DOOLOO RTOS開發人員,但這個團隊在2005年底已經解散。但朋友的系統要 上,用其他小型系統嗎,一不熟悉,二看不上。答應朋友的事,總得有解決方法吧,即使是原來 的DOOLOO RTOS,因為其仿VxWorks結構,導致它的核心太大,包括太多不必要的東西(一套 完整的libc庫),這些方案都否決了。怎么辦?當時朋友那邊也不算太急,先自己寫一套內核吧。 這個就是源頭!(后來雖然朋友的項目夭折了,但這套OS則保留下來了,并開源了,萬幸) 1 序 3 1.1 RT-Thread誕生 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 艱難的發展期 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.3 一年增加0.0.1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.4 Cortex-M3的變革 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.5 面向對象設計方法 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.6 文檔結構 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 實時系統 7 2.1 嵌入式系統 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.2 實時系統 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.3 軟實時與硬實時 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 3 快速入門 11 3.1 準備環境 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 3.2 初識RT-Thread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 3.3 系統啟動代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3.4 用戶入口代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.5 跑馬燈的例子 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 3.6 生產者消費者問題 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4 RT-Thread簡介 25 4.1 實時內核 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 4.2 虛擬文件系統 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.3 輕型IP協議棧 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.4 shell系統 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.5 圖形用戶界面 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.6 支持的平臺 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 5 內核對象模型 29 5.1 C語言的對象化模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 5.2 內核對象模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 6 線程調度與管理 39 6.1 實時系統的需求 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39

    標簽: RT-Thread 實時操作系統 編程指南 版本

    上傳時間: 2013-10-14

    上傳用戶:1234321@q

  • 基于VxWorks的PCI總線多功能數據采集卡驅動開發

    VxWorks是WindRiver(風河)公司開發的嵌入式實時操作系統(RTOS),由于它的高實時性,所以廣泛地應用于軍事、工業控制、通信等領域;分析了VxWorks下PCI總線多功能數據采集卡的實現方法;以ADLINK的PCI7396數據采集卡為例,介紹PCI總線設備的配置空間,包括它的結構及訪問方法,重點介紹PCI總線設備在VxWorks下驅動程序的開發步驟及編程要點,并對開發過程中的關鍵部分給予代碼說明;在某綜合控制系統中,開發的驅動程序運行穩定、可靠。

    標簽: VxWorks PCI 總線 多功能

    上傳時間: 2013-11-02

    上傳用戶:masochism

  • VxWorks6.x中的ML403嵌入式開發平臺

    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.

    標簽: VxWorks 403 ML 嵌入式

    上傳時間: 2013-10-26

    上傳用戶:agent

  • 基于STM32的RTOS例程

    1.改移植和模板工程不包括操作系統核ucosⅡ的源代碼,如需使用請向操作系統的供應商聯系或者網上下載免費的源代碼。 2.本移植使用的是 ucosⅡ 2.83版本,需要在OS文件夾下添加的操作系統源代碼包括如下文件:   os_flag.c   os_mbox.c   os_mem.c   os_mutex.c   os_q.c   os_sem.c   os_task.c   os_time.c   os_tmr.c   os_core.c

    標簽: RTOS STM 32

    上傳時間: 2013-10-27

    上傳用戶:gps6888

  • Heart-RateFitness Monitors Go Wireless

    Abstract: This article explains the recent trend in heart-rate and fitness monitors to go wireless toeliminate cables to allow free movement, and allow convenient data collection without the need to plug intheir devices. It details a typical wireless system, using the MAX1472 crystal-referenced phase-lockedloop (PLL) VHF/UHF transmitter.

    標簽: Heart-RateFitness Monitors Wireless Go

    上傳時間: 2013-11-11

    上傳用戶:xiaowei314

  • PCB設計軟件ExpressPCB 下載

    ExpressPCB 是一款免費的PCB設計軟件,簡單實使。可以畫雙層板。 Our Free PCB software is a snap to learn and use. For the first time, designing circuit boards is simple for the beginner and efficient for the professional.   Our board manufacturing service makes top quality two and four layer PCBs. Use our MiniBoard service and pay only $51 for three boards (plus $8 shipping).

    標簽: ExpressPCB PCB 設計軟件

    上傳時間: 2013-11-15

    上傳用戶:lchjng

  • CAD圖紙查看工具免安裝版下載

    資料解釋說明: CAD圖紙看工具免安裝版,Free DWG Viewer VO.1版本,是免安裝版本,下載后直接使用。迷你.高性能,完美中文字體顯示,方便快捷是這款DWG/DXF查看軟件的特色,完全滿足您工作中看圖的需要,而且是免費的,支持圖層操作,動態實體信息提示,快速的圖形顯示,支持實體移動,縮放,操作方式和命令完全相同AutoCAD。但你不在需要去安裝龐大的AutoCAD來看圖紙了。目前版本支持DWG,DXF格式(v2.5-2006),后續版本將陸續加入編輯功能和支持AutoCAD2007版的DWG和DXF格式。

    標簽: CAD 圖紙

    上傳時間: 2014-11-22

    上傳用戶:921005047

主站蜘蛛池模板: 晋城| 含山县| 昭苏县| 千阳县| 徐州市| 西青区| 舟山市| 格尔木市| 剑阁县| 壶关县| 彭山县| 库尔勒市| 奎屯市| 清原| 西乌珠穆沁旗| 广东省| 隆安县| 贡嘎县| 大邑县| 科尔| 江北区| 玉树县| 丰城市| 昌都县| 徐汇区| 太湖县| 宝清县| 偏关县| 射阳县| 专栏| 岑溪市| 同德县| 宜兰县| 当阳市| 东台市| 南阳市| 额济纳旗| 筠连县| 昌江| 唐海县| 桐城市|