I just bought a sim300 module yesterday. I can send Chinese and English text messages, but I can't make calls. When I use my mobile phone to dial the number on the sim300, it prompts that it cannot be...
Many netizens who are new to 51 MCUs have this question: What is AT89S51? Books and online tutorials all mention 8051, 89C51, etc.! Have you ever heard of 89S51? ! Here, beginners need to clarify a ...
The actual measurement function of the sampleis used to detect the resistance of Rx (the resistance will change with temperature).The output voltage will change with the resistance of Rx.This circuit ...
[i=s]This post was last edited by dcexpert on 2016-6-14 22:07[/i] There are 3 empty PCBs and 3 boards without MCU and crystal left in the last MicroPython event, a total of 6 boards, which can be prov...
I installed quartus11.1, and my system is XP, but there is no nios hardware option, so I can't do online hardware simulation. The Internet says to run in compatibility mode, but I already have XP syst...
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]
CMSIS Driver has similar API functions and similar calling methods. It is a further encapsulation based on the ST HAL library. It is much more convenient and simpler to use and configure than the ST ...[Details]
Regarding the PHY construction of LWIP, the PHY chip used is LAN8720A, RMII mode. Regarding the hardware connection part, the Atomic board F407 is used, and the hardware connection is as follows: ...[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]
Notes on inverter installation and maintenance:
1. Before installation, you should first check whether the inverter is damaged during transportation.
2. When selecting an installa...[Details]
The pins of stm32 have two uses: GPIO (general purpose io) and AFIO (alternate function io) For some pins (depending on the chip), neither of these two uses exists. For example, in 64-pin products, O...[Details]
OSC_IN and OSC_OUT are external crystal pins by default. If you do not use an external crystal oscillator on the STM32, how to connect OSC_IN and OSC_OUT If you use the internal RC oscillator instead...[Details]
I have encountered many problems when tinkering with LD driver recently. I will record them one by one below. Otherwise, who will remember who in five hundred years? 1. Configuration issues of multi-...[Details]
Summary of STM32 peripheral DMA usage: 1. Select DAM mode according to your needs: (1) Circular mode—DMA_Mode = DMA_Mode_Circular (2) Normal mode—DMA_Mode = DMA_Mode_Normal 2. For Chanel3 of DMA1, t...[Details]
1) ADC multi-channel acquisition: (Multi-channel acquisition must use scanning mode. In scanning mode, the channels of the rule group share a register, so DMA transmission must be used; to prevent da...[Details]
1. What is PWM What is PWM? Professionally speaking, it is pulse width modulation. In layman's terms, it is the continuous output of high and low levels. For example, the microcontroller outputs...[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]