Can anyone give me a routine program for using USART1 as asynchronous communication UART? I have been debugging for a long time, but there is still an error.My program is: Can anyone help me find wher...
First of all, I would like to thank my friends at EEWORLD and the training engineers at TI. I feel that I have gained a lot from listening to this video ! However, I have the following feelings during...
I'm currently studying the course Computer Structure and Organization, and I feel it's very difficult. There are many things I don't understand, such as zero extension, sign extension, mapping from vi...
Reprinted from: [url=http://blog.sina.com.cn/s/blog_864a89400102vvit.html]http://blog.sina.com.cn/s/blog_864a89400102vvit.html[/url] [color=#464646]Hackaday has announced the list of 100 semi-finalist...
In recent years, as energy consumption and environmental protection issues have attracted people's attention, my country's solar photovoltaic power generation industry has shown a rapid development...[Details]
0. Preparation First use st-link to connect the stm32 core board and PC for burning St-link Stm32 3.3V 3.3V GND GND SWDIO PART SWCLK DCLK Then connect with USB serial port board to v...[Details]
introduction STM32 has many registers, which are difficult to remember, so the official packaged two sets of library functions. One is the standard library, but the official has not updated it on F7,...[Details]
When designing a product, if the application environment's requirements for power isolation are not considered, the product will be unstable due to improper design, and even high voltage may damage t...[Details]
As photovoltaic power stations come into people's view, people are paying more and more attention to them. Recently, some netizens asked me how to match the inverter and components of photovoltaic ...[Details]
At the beginning, I used the stdlib library. Recently, I found that the cube library is more and more widely used, so I started to use the cube library to complete the ADC multi-channel acquisition e...[Details]
STM32 ADC multi-channel conversion Description: Use ADC to continuously collect 11 analog signals and transfer them to memory through DMA. ADC is configured to scan and continuously convert mode,...[Details]
12864 LCD parallel port driver is more commonly used, but considering that sometimes the IO port of the microcontroller or MCU is limited, the serial driver method can be used. The following is ...[Details]
Note: This STM32 microcontroller is the STM32F103 series. The ADC of Stm32 has DMA function. This is beyond doubt and is what we use most! However, if we want to sample a signal (such as a pulse sign...[Details]
The key is the configuration of registers. The T1 timer (16 bits) of CC2530 needs to configure three registers: T1CTL, T1STAT, IRCON Here is just a brief introduction. For more details, please refer ...[Details]
Getting to the bottom of blockchain
Since last year, blockchain has become the hottest word in both the financial and non-financial circles. Some people use it as a gimmick to engage in va...[Details]
MCS-51 single-chip microcomputer timer/counter experiment programming program Programming requirements: 1. Connect a light-emitting diode LED to the P1.0 pin, light up for two seconds, turn off for o...[Details]
Circuit: Using AT89S52 single chip microcomputer. P3.0 to P3.3 are connected to four external buttons. P3.4 to P3.7 are the bit selection ports for controlling the four digital tubes, and P1 is the s...[Details]
A group of young people who looked like they were in their twenties or thirties were squatting on the edge of the factory flower bed. Some were looking at their phones helplessly, while others were...[Details]
#include avr/io.h void Delay(unsigned int T) { unsigned int i,j; for (i=0;i T;i++) for (j=0;j 100;j++) asmvolatile ("nop"); //Assembly instruction, let the microcontroller run empty instruction...[Details]