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

DEVICE

  • 基于STM32单片机设计的非接触式电流检测控制系统

    本系统基于STM32单片机设计的非接触式电流检测控制系统,通过OPA548片将所给任意信号放大,由100Ω电阻和INA128芯片进行电流电压转换放大后,利用STM32单片机对获取的电压信号以0.488μs频率采样,利用STM32单片机的FFT库,获得信号的谐波信息。测量电流信号精准,该设计可广泛应用在以STM32单片机为核心控制器件的新型仪表中,性能精准且抗干扰能力强。This system is a non-contact current detection and control system based on STM32 single chip microcomputer. It amplifiesany signal through OPA548 chip, converts and amplifies the current and voltage by 100 Ω resistance and INA128 chip. The obtainedvoltage signal is sampled at the frequency of 0.488 μs by STM 32 single chip microcomputer, and the harmonic information of the signalis obtained by the FFT library of STM 32 single chip microcomputer. The measurement of current signal is accurate. This design can bewidely used in a new instrument with STM 32 single chip microcomputer as its core control DEVICE, with accurate performance and stronganti-interference capability.

    标签: stm32 单片机

    上传时间: 2022-03-27

    上传用户:

  • 基于单片机和人体红外线传感器自动关门锁门的装置

    入室抢劫事件屡见不鲜,针对此现象进行分析不难发现,造成失窃事件的极大原因是人们慵懒和意识差等不良性格造成习惯性不锁门.本文以STC89C52单片机为基础,设计了一种基于人体红外传感器的自动关门锁门装置,来解决此类问题.The incidents of burglary are so common. It is not difficult to find that the main reason for the burglary is the habit of unlocking of doors caused by people's laziness and poor consciousness. Based on the single chip microcomputer of STC89C52, a DEVICE used with infrared sensor of human body is introduced in this paper, which can achieve the effect of automatic closing and locking doors.

    标签: 单片机 人体红外线传感器

    上传时间: 2022-03-27

    上传用户:canderile

  • 基于MSP430单片机及FPGA的简易数字示波器

    数字示波器功能强大,使用方便,但是价格相对昂贵。本文以Ti的MSP430F5529为主控器,以Altera公司的EP2C5T144C8 FPGA器件为逻辑控制部件设计数字示波器。模拟信号经程控放大、整形电路后形成方波信号送至FPGA测频,根据频率值选择采用片上及片外高速AD分段采样。FPGA控制片外AD采样并将数据输入到FIFO模块中缓存,由单片机进行频谱分析。测试表明:简易示波器可以实现自动选档、多采样率采样、高精度测频及频谱分析等功能。Digital oscilloscope is powerful and easy to use, but also expensive. The research group designed a low-cost digital oscilloscope, the chip of MSP430F5529 of TI is chosen as the main controller and the DEVICE of EP2C5T144C8 of Altera company is used as the logic control unit. Analog signal enter the programmable amplifier circuit, shaping circuit and other pre-processing circuit. The shaped rectangular wave signal is sent to FPGA for measure the frequency. According to the frequency value to select AD on-chip or off-chip high-speed AD for sampling. FPGA controls the off-chip AD sampling and buffers AD data by FIFO module. The single chip microcomputer receives the data, and do FFT for spectrum analysis. The test shows that the simple oscilloscope can realize automatic gain selection, sampling at different sampling rates, high precision frequency measurement and spectrum analysis.

    标签: msp430 单片机 fpga 数字示波器

    上传时间: 2022-03-27

    上传用户:

  • 基于STC12C5A60S2单片机的LED线阵显示装置

    LED 线阵显示装置, 分为 LED 线性旋转显示主机和图文录入器两部分。主机用直流电机带动由红绿 LED 组成的线阵旋转, 同时线阵按照时序依次切换显示状态, 在固定区域利用视觉暂留效果形成 16×16 点阵, 用以显示图文;图文录入器用 HMI 触控屏作为人机交互界面, 实现图文录入和回放功能。主机与图文录入器通过无线通信方式进行信息交互,可由图文录入器控制主机切换不同工作任务, 以及改变线阵显示内容。The LED linear array display DEVICE is divided into two parts:the one is the main unit used to display content,and the other one is used to input the contents.The main unit is driven by a DC motor to rotate the linear array composed by red and green light emitting diodes.At the same time,the 16×16 dot matrix that switching the display state according to the time sequence on the main unit displays pictures and texts in the fixed area,by using the visual temporary effect.The HMI touch screen is used as human machine interface to realize the function that input and playback pictures and texts.The two parts of the DEVICE communicate with each other through wireless communication.The image and text input controller can control the main unit to switch different tasks and change the content of linear array displayed.

    标签: stc12c5a60s2 单片机 led

    上传时间: 2022-03-28

    上传用户:jiabin

  • linux内核编程指南

    因此,您想编写一个内核模块。您知道C,您已经编写了一些可以作为进程运行的常规程序,现在您想知道真正的动作在哪里,一个通配指针可以擦掉文件系统,核心转储意味着重新启动。内核模块到底是什么?模块是可以根据需要加载和卸载的代码段。它们扩展了内核的功能,而无需重新引导系统。例如。模块驱动程序的一种类型是设备驱动程序,它允许内核访问没有模块的系统硬件,我们将不得不构建单片内核并将新功能直接添加到内核映像中,除了具有更大的内核之外,这还具有缺点每次我们想要新功能时都要求我们重建并重新启动内核的过程So, you want to write a kernel module. You know C, you, ve written a few normal programs to run as processes, and now you want to get to where the real action is, to where a single wild pointer can wipe out your file system and a core dump means a reboot.What exactly is a kernel module? Modules are pieces of code that can be loaded and unloaded into th upon demand. They extend the functionality of the kernel without the need to reboot the system. For example.one type of module is the DEVICE driver, which allows the kernel to access hardware connected to the syste without modules, we would have to build monolithic kernels and add new functionality directly into the em ernel image, Besides having larger kernels

    标签: linux

    上传时间: 2022-03-30

    上传用户:

  • MOSFET开关过程的研究及米勒平台振荡的抑制

    设计功率MOSFET驱动电路时需重点考虑寄生参数对电路的影响。米勒电容作为MOSFET器件的一项重要参数,在驱动电路的设计时需要重点关注。重点观察了MOSFET的开通和关断过程中栅极电压、漏源极电压和漏源极电流的变化过程,并分析了米勒电容、寄生电感等寄生参数对漏源极电压和漏源极电流的影响。分析了栅极电压在米勒平台附近产生振荡的原因,并提出了抑制措施,对功率MOSFET的驱动设计具有一定的指导意义。When designing the drive circuit of power MOSFET,the influence of parasitic parameters on the circuit should be concerned.As an important parameter of MOSFET DEVICE,Miller capacitance should be considered in the design of drive circuit.The variation of gate voltage,drain source voltage and drain source current during the turn-on and turn-off of MOSFET were observed.The influences of parasitic parameters such as Miller capacitance and parasitic inductance on drain source voltage and drain source current were analyzed.The reasons of gate voltage oscillation nearby Miller plateau were analyzed,and the restraining measures were put forward.This research was instructive for the drive design of power MOSFET.

    标签: mosfet

    上传时间: 2022-04-02

    上传用户:默默

  • 基于数字电路的八路抢答器的设计与实现

    抢答器是一种智力竞赛常用的器件,抢答器的设计方法千差万别,文章利用常用的数字电子器件,设计了八路抢答器电路的设计、仿真及实现的全过程,提出两种可行的设计方案:方案1采用74ls373实现电路锁存,74ls148实现电路编码,74ls74及数码管实现电路显示;方案二采用CD4511BCN和LMC555CM集成电路及数码管实现抢答器的控制和显示。本文设计用的器件简单,容易理解,适用于初学电子技术的人员。Answer scrambler is a common DEVICE in intelligence competition, and its design methods vary greatly. This paper designs the whole process of design, simulation and Realization of the circuit of eight-way answer scrambler by using common digital electronic DEVICEs, and puts forward two feasible design schemes: scheme 1 uses 74 ls373 to realize circuit latching, 74 ls148 to realize circuit coding,74 ls74 and digital tube to realize circuit. The second scheme uses CD4511 BCN, LMC555 CM integrated circuit and digital tube to control and display the answerer. The DEVICE designed in this paper is simple and easy to understand, and it is suitable for the beginners of electronic technology.

    标签: 抢答器

    上传时间: 2022-04-05

    上传用户:

  • 高通蓝牙芯片QCC5144_硬件设计指导书

    高通(Qualcomm)蓝牙芯片QCC5144_硬件设计详细指导书(官方内部培训手册)其内容是针对硬件设计、部分重要元器件选择(ESD,Filter)及走线注意事项的详细说明。2 Power management 2.1 SMPS 2.1.1 Components specification 2.1.2 Input power supply selection 92.1.3 Minimize SMPS EMI emissions 2.1.4 Internal LDOs and digital core decoupling 2.1.5 Powering external components 2.2 Charger 2.2.1 Charger connections.2.2.2 General charger operation2.2.3 Temperature measurement during charging 2.3 SYS_CTRL 3 Bluetooth radio3.1 RF PSU component choice 3.2 RF band-pass filter3.3 Layout (天线 走线的注意事项)4 Audio4.1 Audio bypass capacitors 4.2 Earphone speaker output4.3 Line/Mic input 4.4 Headphone output optimizition5 LED pads 5.1 LED driver 5.2 Digital/Button input 5.3 Analog input5.4 Disabled 6 Reset pin (Reset#)7 USB interfaces7.1 USB DEVICE port7.1.1 USB DEVICE port7.1.2 Layout notes 7.1.3 USB charger detectionA QCC5144 VFBGA example schematic and BOM B Recommended SMPS components specificationB.1 Inductor specifition B.2 Recommended inductors B.3 SMPS capacitor specifition

    标签: 蓝牙芯片 qcc5144

    上传时间: 2022-04-07

    上传用户:默默

  • USB接口HID驱动程序设计

    【摘要】:随着USB接口在计算机业界应用越来越广泛,基于USB的接口开发显得越来越具有现实意义。随着客户对系统数据采集速度要求的不断提高,USB以其使用方便、易于扩展、速度快等优点而越来越多的被应用于各种人机接口设备中。本设计提出了一种USB接口的HID数据通讯接口设计方案,USB接口芯片采用的是PHILIP的PDIUSBD12,微控器是宏晶科技的STC89C52RC。该方案具有器件通用、成本低、方便焊接调试等特点。由于本设计采用了PDIUSBD12接口芯片,通过改变微控器的代码可以制作成各种标准的USB设备。本设计完成了一种典型的HID设备驱动程序的开发,PC机无需额外加装驱动便可实现和USB设备之间的通讯。而且经过典型HID设备的枚举过程,还可用于对USB协议的熟悉和学习。上位机软件部分,采用了VisualC++6.0编写HID设备的控制程序,此控制程序和HID下位机设备构成了完整的USB控制系统。在此基础上,本设计还增加了简单的音乐播放功能,可以打开并播放格式为mp3和wma的音频文件,还可以暂停、停止、选择播放曲目、调节音量等;在音频播放时HID设备彩灯可以实时显示音频的频谱。这在验证USB系统的同时,大大增加了控制的趣味性。验证结果表明按照该方案设计的数据通讯接口和HID设计运行稳定可靠。USB是一种计算机和外部设备进行通讯连接的接口.USB的出现的目的是取代现在计算机接口,简化计算机与外部设备的连接过程,使计算机的扩展更加方便。它使得计算机和外部设备的连接十分方便。目前,各种计算机外部设备都在逐渐改为USB接口,USB技术的出现是计算机接口技术的一大飞跃。越来越多的测控系统、信号处理系统和智能仪器选用USB接口与PC机进行高速、海量的数据通讯。但是,相对UART(通用异步串口)、LPT(打印机并行端口),USB的开发难度要大的多。采用HID(Human Interface DEVICE,人机接口设备)的设计方案则可以很好的解决这一矛盾。

    标签: usb 接口 hid

    上传时间: 2022-05-02

    上传用户:shjgzh

  • ZLG-imx6ul核心板开发板底板Altium Designer AD设计硬件原理图文件

    ZLG-imx6ul核心板开发板底板Altium Designer AD设计硬件原理图文件,IoTIoT -6G 2C 6G2C -L采用 无线 核心板 核心板 和底板 组合的方式,核心和底板 组合的方式,核心和底板 组合的方式,核心和底板 组合的方式,核心和底板 组合的方式,核心和底板 组合的方式,核心采用 NXPNXPNXP基于 ARM CortexARM CortexARM Cortex ARM CortexARM Cortex ARM CortexARM Cortex -A7内核的 内核的 i.MXi.MX i.MX6UL6UL6UL应用处理器, 应用处理器, 应用处理器, 主频最高达 主频最高达 主频最高达 528 MH z,核心板 核心板 配备 256256 MB MB MB DDR 3和 256 MB NAND FlashNAND FlashNAND FlashNAND FlashNAND FlashNAND FlashNAND FlashNAND Flash NAND Flash;此外核心板 此外核心板 还支 持支持 802.11b/g/n802.11b/g/n 802.11b/g/n 802.11b/g/n 802.11b/g/n协议 WIFIWIFIWIFIWIFI、蓝牙 4.0 通信功能 。主板 提供 8路 UARTUARTUARTUART、1路模拟 I2C、1路 12bit ADC 12bit ADC12bit ADC12bit ADC12bit ADC12bit ADC,支持两通道采样 ,支持两通道采样 ,支持两通道采样 ,支持两通道采样 ,支持两通道采样 、2路 10/100M 10/100M 10/100M以太网接口、 以太网接口、 以太网接口、 以太网接口、 1路 SD 卡电路 卡电路 、1路左右声道 左右声道 左右声道 模拟音频 模拟音频 接口、 接口、 2路 USB HostUSB HostUSB HostUSB HostUSB HostUSB Host 接口 (1路与 USB DEVICEUSB DEVICE USB DEVICEUSB DEVICEUSB DEVICEUSB DEVICEUSB DEVICEUSB DEVICE 共用同一路 共用同一路 USB OTGUSB OTGUSB OTGUSB OTGUSB OTGUSB OTGUSB OTG)、 1路 USB USB USB USB DEVICEDEVICE DEVICEDEVICE 接口, 接口, 可满足数据采集等多种 满足数据采集等多种 满足数据采集等多种 满足数据采集等多种 消费电子和工业控制应用 消费电子和工业控制应用 消费电子和工业控制应用 消费电子和工业控制应用 消费电子和工业控制应用 场合 。

    标签: zlg 文件 核心 开发板 底板 altium designer ad 设计 硬件 原理图 imx6ul

    上传时间: 2022-05-11

    上传用户:fliang