AFC (or AFT) is the abbreviation of "automatic frequency control" (or "automatic frequency adjustment"). AFC circuits are widely used in electronic equipment as important frequency stabilization or ph...
[color=black]Keywords: [b] Infrared waterproof camera [/b] Ordinary infrared waterproof cameras now generally use photosensitive elements to detect the lighting intensity of the environment. According...
process(clk_a,clk_b) begin if (clk_a'event and clk_a='1') then if clk_b='1' then k<='1'; else k<='0'; end if; end if; end process; clk_a,clk_b are two square wave pulse signals with a difference of 90...
[i=s] This post was last edited by Jacktang on 2019-2-15 20:24 [/i] [backcolor=white][color=#000000]MSP430 MCU KEY function [/color][/backcolor] [backcolor=white][color=#000000] [/color][/backcolor] [...
Hello everyone, I am working on a project about PWM input capture recently. The microcontroller used is STM8S105. I am using the input capture function of STM8 to use the library function TIME1 CH1 to...
1. Principle 1. Infrared emission protocol The infrared transmission protocol has been written in the previous article , so I will not repeat it here. 2. Timer counting and input capture A timer...[Details]
1. Purpose Since the number of times the STM32 FLASH can be erased and written is limited, in order to protect our FLASH and extend the use time of the MCU, we can debug on the SRAM. SRAM is a ...[Details]
In the previous article, I wrote a simple GPIO running light test, which looked a bit monotonous. I was used to serial port debugging. If there was no serial port on the board, I had to find another ...[Details]
In 1952, Bell Labs built a 6-foot-tall automatic number recognition machine called "Audrey", which could recognize the pronunciation of the numbers 0 to 9 with an accuracy of more than 90%. And its...[Details]
Recently, the "Smart Photovoltaic Industry Development Action Plan (2018-2020)" jointly issued by six departments has put this concept on the forefront. Photovoltaic smart solutions will become the ne...[Details]
The photovoltaic inverter is the core equipment of the photovoltaic system. Its main function is to convert the direct current generated by the photovoltaic modules into alternating current that meets...[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]
China Energy Storage Network News:
"As the world's first third-generation blockchain, Anda Chain, which has China's independent intellectual property rights, will be launched globally in the ...[Details]
The analog watchdog of the ADC is used to check if the voltage is out of bounds. It has two upper and lower bounds, which can be set in the registers ADC_HTR and ADC_LTR respectively. The library fun...[Details]
Independent watchdog (IWDG) and low power mode are often used in STM32 development. The watchdog is to detect and solve faults caused by software errors, and the low power mode is to enter sleep mode...[Details]
STM32 has two watchdogs: independent watchdog and window watchdog. This article mainly introduces the use of independent watchdog. Independent watchdog (IDWG): driven by an independent 40KHZ low-sp...[Details]
Google may have foreseen the spread of artificial intelligence (
AI
) technology across apps, devices, and services, such as recognizing friends' faces in photos and giving smart speakers h...[Details]
A crystal oscillator can be electrically equivalent to a two-terminal network consisting of a capacitor and a resistor in parallel and a capacitor in series. In electrical engineering, this network h...[Details]
Example analysis: (using DMA mode) mian function: extern __IO u16 ADC_ConvertedValue; //The voltage value converted by ADC is defined in the context of ADC1_Init() float ADC_ConvertedValueLocal; ...[Details]
The frequency calculation formula of the PWM wave generated by the output comparison mode of the timer is: 72M/((2*(arr+1))*(psc+1) ) For example, if you set: PWM_Init(1000-1,72-1); (PWM_Init(arr,psc...[Details]