[align=left][font=宋体][size=11.0pt]The animated short film will introduce the working principle of the successive approximation register (SAR) [/size][/font][size=11.0pt] ADC [/size][font=宋体][size=11.0...
[i=s] This post was last edited by qinqincaoyuan on 2016-4-15 20:28 [/i] I was too greedy at the time. I had just learned 51 single-chip microcomputers for a few days, but I wanted to learn stm32 and ...
How to use ProtelDXP to design the PCB board into a large semicircle (i.e. a small part of the circle is cut off), which is the appearance of the board. I know that it is possible to place a circular ...
Bank6 and bank7 are each connected with 64M (a total of 4 pieces of 32M). I want to use it this way recently. Anyone who has used it can share some experience....
There is a problem with the comparator of MSP430G2453 in the application: when the P1.0 port is used as the positive input port of the analog comparator, the external input signal on this IO port disa...
Recently, the results of the 2018 German Red Dot Design Award were announced. GoodWe, a company located in Suzhou High-tech Zone, stood out among thousands of outstanding design products from 5...[Details]
For STM32, there are two ways to reset the software: 1) Use the official software library The system reset function is directly provided in the stm32f10x_nvic.c file of the official software li...[Details]
Recently, the " ZTE
incident"
caused by the Sino-US trade war
has caused heated discussions in the electronics industry. It not only reflects that Chinese companies are lagging behind in the...[Details]
In Windows environment, the source code is encoded in UTF-8. If the source file created by STM32CubeMX contains Chinese comments, then using STM32CubeMX to regenerate the source code will cause the C...[Details]
In the Huaxing Optoelectronics LCD panel
factory
located in Guangming New District, Shenzhen
, apart from a few people repairing machines, it is often difficult to see other people. Here, ev...[Details]
This program is used in the development board to generate sounds of different frequencies. The overall program is relatively simple, mainly using two timers. The code and my comments are as follows. ...[Details]
1 Introduction Due to the special working environment of coal mine production, the production process is more dangerous and unsafe than the general industry. With the continuous increase in c...[Details]
On the eve of 5G
commercialization,
ZTE
has established and adhered to
the
5G
pioneer strategy, focusing on
5G
end-to-end solutions, and investing in standard setting, ...[Details]
Every era has anxiety that has nowhere to go. Let's follow the embedded editor to learn about the relevant content.
The anxiety of the post-Internet era is that if you don’t revolutionize ...[Details]
WPG Holdings announced that its subsidiary Youshang has launched a wireless smoke alarm solution based on STM and Semtech . With the development of the national economy and the enhancement of...[Details]
The STM32 watchdog has two WWDG and IWDG. The biggest difference between the two is that IWDG has only one lower limit for feeding, while WWDG, as the name implies, must be fed within a range to ensu...[Details]
environment: Host: XP Development environment: MDK4.23 MCU:STM32F103CBT6 illustrate: Collect AD through pins PA1 and PA2. Collect AD 10 times for each channel. #include "ad_driver.h" //Global ...[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]
#include reg52.h //Include the header file. Generally, no modification is required. The header file contains the definition of special function registers. /*-------------...[Details]
//Environment: winavr+avr studio char temp=0; ISR(TIMER1_COMPA_vect )//interrupt function { // user code here temp++; if (temp==10) temp=0; PORTA=temp; DDRA=0xff; } void ...[Details]