Please tell me why the voltage drops of these two MOS tubes are different. Thank you. [[i] This post was last edited by kumuhuakai on 2011-7-22 17:43 [/i]]...
[align=center][b][font=宋体][size=16pt]Design of smart home remote control slave system based on[/size][/font][/b][b][size=16pt]PSoC4[/size][/b][b][font=宋体][size=16pt][/size][/font][/b][/align][b]1. Int...
Example of the first simulation debugging ST, GPIO EXAMPLE: it is normal after several times, int main(void) { #ifdef DEBUG debug(); #endif /* Configure the system clocks */ RCC_Configuration(); /* NV...
Modbus is a serial communication protocol that was published by Modicon in 1979 for use with programmable logic controllers (PLCs). MODBUS is the industry standard for communication protocols in the i...
When using TL084 to make a multi-stage amplifier circuit, the bandwidth requirement is 100Hz to 40KHz when the voltage gain is 60dB. This is the basic requirement. However, I see that the gain-bandwid...
In the past few days, the news that ZTE was "banned" by the US Department of Commerce has triggered widespread reflection and concern in various domestic industries about the lack of independent co...[Details]
For 80,000
ZTE
(000063.SZ) employees and more Chinese ICT (information and communication technology) industry practitioners, the news from across the ocean on the evening of April 16 kept t...[Details]
In the actual project development process, we often need to get the running time of a section of code. The usual method is to use an oscilloscope to measure it. This blog post will use SysTick to acc...[Details]
Chip: STM32F107VCT6 Application Pin: THOUSANDS, RMII STM32CubeMX is very convenient to use ETH. The software comes with LWIP and configuration. This time, STM32F107VCT6+DP83848CVV is used. The MII a...[Details]
Timing and protocol are two key points in digital system debugging, and they are also where logic analyzers can play their most valuable role. How can we use a logic analyzer to quickly complete wiri...[Details]
In the project, CPLD is needed to complete part of the algorithm design. The parameters are given by AVR, so the communication between AVR and CPLD needs to be completed. Therefore, a test program is...[Details]
With the development of information technology, intelligence, informatization and networking have become the development trend of modern industrial control. Since the 1980s, the rapid development...[Details]
1. Heart rate measurement principle 1. What is a heart rate module? The heart rate module is professionally used to monitor the heart rate of the wrist, fingers, forehead, earlobe, chest and other ...[Details]
sprintf is a function in the C language library that converts data types. There is a situation where In 51 MCU, define unsigned char temp; Then I want to use the serial port to print out temp in deci...[Details]
/* Unfortunately, it cannot generate a standard 38kHz frequency square wave, there is a little error*/ #include reg51.h #define uchar unsigned char #define uint unsigned int sbit Waveout=P1^0; //P...[Details]
6MHz crystal oscillator, using timer counter 1, using interrupt mode, through P1.0 to make a light emitting diode turn on for 100ms, turn off for 300ms, and repeat. Assembly programming is used to ac...[Details]
As shown in the figure, the circuit is required to count and display the number of times the button is pressed. When the button is pressed once, the count value increases by 1 (it is required to accu...[Details]
#include avr/io.h #include avr/interrupt.h int main() { DDRB|=0X20;//Set PWM waveform output, connected to port PB5, see the comment of OCR1A=15625 for details DDRE=0X04; PORTE=0X04; DDRA=0XFF; P...[Details]