虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

red

  • This is a simulator written in Tcl to simulate a network node carrying GSM and GPRS traffics with Qo

    This is a simulator written in Tcl to simulate a network node carrying GSM and GPRS traffics with QoS mechanisms. The payload type including circuit-switched voice, VoIP and web traffic, and the performance including packet drop, delay can be analyzed. The implemented QoS mechanism is DiffServ, with 4 red queues for different services with different priorities.

    标签: simulator carrying simulate traffics

    上传时间: 2014-01-01

    上传用户:1583060504

  • 本书是Linux初学者入门优秀教程

    本书是Linux初学者入门优秀教程,介绍了red Hat Linux 7.1从安装到使用的详细过程。

    标签: Linux 初学者 教程

    上传时间: 2017-08-15

    上传用户:ghostparker

  • Datastructure: Linked Lists Stack and Queue Multi-lists Linked Structures Trees Binary Tree S

    Datastructure: Linked Lists Stack and Queue Multi-lists Linked Structures Trees Binary Tree Searching and Sorting AVL Tree red-Black Tree

    标签: Linked Datastructure Multi-lists Structures

    上传时间: 2014-05-31

    上传用户:xmsmh

  • The many variants of the Unix operating system require use of a mode of thought that s significantly

    The many variants of the Unix operating system require use of a mode of thought that s significantly different from the one that s required by simpler operating systems. Think Unix introduces readers to important fundamental and intermediate Unix commands and, in the process, inculcates them in the Unix way of thinking. It s a worthy goal in a world with more Linux users than ever, and author Jon Lasser accomplishes it. He s both a capable writer and a knowledgeable user of Unix shell commands. Lasser uses bash under red Hat Linux in most examples--which usually apply equally well to other Unix variants--and makes asides about other shells and environments, as needed.

    标签: significantly operating variants of

    上传时间: 2017-09-04

    上传用户:qq521

  • 俄罗斯方块代码

    RGB,三原色光模式(英语:RGB color model),又称RGB颜色模型或红绿蓝颜色模型,是一种加色模型,将红(red)、绿(Green)、蓝(Blue)三原色的色光以不同的比例相加,以产生多种多样的色光。RGB颜色模型的主要目的是在电子系统中检测。

    标签:

    上传时间: 2015-06-14

    上传用户:lxy123

  • 俄罗斯方块

    RGB,三原色光模式(英语:RGB color model),又称RGB颜色模型或红绿蓝颜色模型,是一种加色模型,将红(red)、绿(Green)、蓝(Blue)三原色的色光以不同的比例相加,以产生多种多样的色光。RGB颜色模型的主要目的是在电子系统中检测

    标签:

    上传时间: 2015-06-14

    上传用户:lxy123

  • FPGA采样AD9238数据并通过VGA波形显示例程 Verilog逻辑源码Quartus工程文件+

    FPGA采样AD9238数据并通过VGA波形显示例程 Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。ADC 模块型号为 AN9238,最大采样率 65Mhz,精度为12 位。实验中把 AN9238 的 2 路输入以波形方式在 HDMI 上显示出来,我们可以用更加直观的方式观察波形,是一个数字示波器雏形。module top( input                       clk, input                       rst_n, output                      ad9238_clk_ch0, output                      ad9238_clk_ch1, input[11:0]                 ad9238_data_ch0, input[11:0]                 ad9238_data_ch1, //vga output output                      vga_out_hs, //vga horizontal synchronization output                      vga_out_vs, //vga vertical synchronization output[4:0]                 vga_out_r,  //vga red output[5:0]                 vga_out_g,  //vga green output[4:0]                 vga_out_b   //vga blue);wire                            video_clk;wire                            video_hs;wire                            video_vs;wire                            video_de;wire[7:0]                       video_r;wire[7:0]                       video_g;wire[7:0]                       video_b;wire                            grid_hs;wire                            grid_vs;wire                            grid_de;wire[7:0]                       grid_r;wire[7:0]                       grid_g;wire[7:0]                       grid_b;wire                            wave0_hs;wire                            wave0_vs;wire                            wave0_de;wire[7:0]                       wave0_r;wire[7:0]                       wave0_g;wire[7:0]                       wave0_b;wire                            wave1_hs;wire                            wave1_vs;wire                            wave1_de;wire[7:0]                       wave1_r;wire[7:0]                       wave1_g;wire[7:0]                       wave1_b;wire                            adc_clk;wire                            adc0_buf_wr;wire[10:0]                      adc0_buf_addr;wire[7:0]                       adc0_bu

    标签: fpga ad9238

    上传时间: 2021-10-27

    上传用户:qingfengchizhu

  • FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件

    FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。1 实验简介在前面的实验中我们练习了 SD 卡读写,VGA 视频显示等例程,本实验将 SD 卡里的 BMP 图片读出,写入到外部存储器,再通过 VGA、LCD 等显示。本实验如果通过液晶屏显示,需要有液晶屏模块。2 实验原理在前面的实验中我们在 VGA、LCD 上显示的是彩条,是 FPGA 内部产生的数据,本实验将彩条替换为 SD 内的 BMP 图片数据,但是 SD 卡读取速度远远不能满足显示速度的要求,只能先写入外部高速 RAM,再读出后给视频时序模块显示module top( input                       clk, input                       rst_n, input                       key1, output [5:0]                seg_sel, output [7:0]                seg_data, output                      vga_out_hs,        //vga horizontal synchronization output                      vga_out_vs,        //vga vertical synchronization output[4:0]                 vga_out_r,         //vga red output[5:0]                 vga_out_g,         //vga green output[4:0]                 vga_out_b,         //vga blue output                      sd_ncs,            //SD card chip select (SPI mode) output                      sd_dclk,           //SD card clock output                      sd_mosi,           //SD card controller data output input                       sd_miso,           //SD card controller data input output                      sdram_clk,         //sdram clock output                      sdram_cke,         //sdram clock enable output                      sdram_cs_n,        //sdram chip select output                      sdram_we_n,        //sdram write enable output                      sdram_cas_n,       //sdram column address strobe output                      sdram_ras_n,       //sdram row address strobe output[1:0]                 sdram_dqm,         //sdram data enable output[1:0]                 sdram_ba,          //sdram bank address output[12:0]                sdram_addr,        //sdram address inout[15:0]                 sdram_dq           //sdram data);parameter MEM_DATA_BITS         = 16  ;            //external memory user interface data widthparameter ADDR_BITS             = 24  

    标签: fpga

    上传时间: 2021-10-27

    上传用户:

  • STM32H750VBT6核心板 ALTIUM设计硬件原理图+PCB文件 包括完整的原理图和PCB文

    STM32H750VBT6核心板 ALTIUM设计硬件原理图+PCB文件,包括完整的原理图和PCB文件,可以做为你的设计参考,PCB 2层板设计,大小85MM*56MM, 带SD,DCMI,QSPI,外扩flash,以太网,RS485,CAN总线, 主要器件信号列表如下:Library Component Count : 29Name                Description----------------------------------------------------------------------------------------------------AMS1117             三端稳压芯片BAT54C              表贴肖特基二极管C                   无极性贴片电容CRYSTAL_32K         CrystalCap                 CapacitorFPC0.5-24P          贴片FU                  贴片保险丝HR911105Header 2            Header, 2-PinLLAN8720             ETH PHYLED                 Typical red, GREEN, YELLOW, AMBER GaAs LEDMAX3485PNP                 PNP三极管Pin HDR2X20         R                   贴片电阻Res                 ResisterSN65HVD230D         STM32H750VBT6       Socket              SocketTCAP                钽电容TEST-POINT          测试点TSW                 轻触开关USB type C          W25Qxx              外置FlashXC6206-3.3          SOT-23,XC6206P332MR,MAX8V,100mAXTAL-4P             4脚无源晶振XTAL_3225           Crystal OscillatormicroSD

    标签: stm32 pcb

    上传时间: 2021-11-24

    上传用户:aben

  • STM32L475开发板PDF原理图+AD集成3D封装库+主要器件技术手册

    STM32L475开发板PDF原理图+AD集成3D封装库+主要器件技术手册,集成封装库型号列表如下:Library Component Count : 44Name                Description----------------------------------------------------------------------------------------------------ANT-2.4G            ANT,2.4G,PCB天线ATK-TEST-1*4-2.54mm 测试点ATK_MODULE          单排母,1*6,2.54mmBEEP                3.3V有源蜂鸣器BUTTON_DIP3         拨动开关SS-12F44C-0402-SMD          C-0603-SMD          C-CAP-SMD-220uF/10V C-CEP-220uF/16V     D-1N4148            Header-1*3-2.54mm   单排针-2.54mmHeader-2*10-2.54mm  双排针-2.54mmHeader-2*2-2.54mm   双排针-2.54mmHeader-2*3-2.54mm   双排针-2.54mmHeader-2*4-2.54mm   双排座-2.54mmIR-LED              1206红外发射管(侧)IR-LF0038GKLL-1     红外接收管SMDJ-MICRO-USB-5S      Micro USB 5.9有柱脚长1.25加长针L-0420-4.7uH        电感,4.7uH,3ALCD-TFT-H13TS38A    LCD,TFT,1.3'240*240,禹龙LED-0603-red        发光二极管-红色LED-RGB-1615-0603   RGB,共阳,1615,0603MIC-6022            MICMotor-SMD           电机,SMDPhone-3-M           耳机座,三节R-0402-SMD          贴片电阻R-0805-SMD          贴片电阻RT9193-3.3S-KEY-SMD-324225    KEY,SMD,324225S8050-SMD           SD-MICRO-TF         SD,MICRO,TFU-AHT10             Sensor,温湿度传感器U-AP3216C           Sensor.光照/距离U-AP6181            WIFI Module,SDIOU-ES8388            AUDIO,2-ch DAC,2-ch ADCU-ICM-20608         三轴陀螺仪/三轴加速度计,U-L9110S            电机驱动,800mAU-RT9013-3.3        LDO,500mAU-STM32F103C8T6     U-STM32L475VET6     MCU,LQFP100,512K FLASH,128K RAMU-W25Q128           SPI FLASH,16MY-12M-SMD           晶振 - 12M贴片Y-3215-32.768K      XTAL,3215,32.768KY-3215-8M           XTAL,3215,8MHz

    标签: stm32l475 开发板

    上传时间: 2021-12-15

    上传用户: