[i=s]This post was last edited by zhaojun_xf on 2015-2-2 13:48[/i] I have known about ZigBee before, but because TI's ZigBee (CC2530, etc.) uses the 8051+wireless chip model, I have never been very in...
The for loop is my favorite loop structure. I thought I knew it well, but I encountered problems recently. So I conducted a more in-depth "research" on the for loop. The results surprised me. I have t...
[i=s]This post was last edited by strong161 on 2016-6-26 19:15[/i] DIY is about being reasonable, as long as you have fun, the key is to have fun. I made two small things, my skills are limited, both ...
When GSM is transmitting, the WLAN subsystem can''t receive WLAN packets (Fig. 1). Likewise, when GSM is in receive or monitor mode, the WLAN can'' transmit, as it will desensitize the GSM receiver. I...
In 2022, TI, as always, brought many exciting technical live broadcasts to engineers, from signal chains, analog products to MCU products, from industrial and automotive applications to artificial int...
Interrupt return address and 3-stage pipeline in ARM7: (1) ARM pipeline From the ARM7-TDMI-S Technical Reference Manual P2, we know that the pipeline structure of ARM is: Fetch---------------->Decode-...
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]
1. About FPU transplantation As long as the chip has FPU function, the use of FPU is generally enabled by default. You can also select it in the Options tab; 2. About the transplantation of DSP li...[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]
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]
Use the STM32 timer input capture module to control 3-way ultrasonic sensors. The ultrasonic sensor used this time is the common HC-SR04, which is often used in the obstacle avoidance system of smal...[Details]
When STM32 uses JTMS (PA13) and JTCK (PA14) as normal I/O ports, add the following code before initialization (the order cannot be reversed): RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE); G...[Details]
In the packaging process of a production line, every time the conveyor belt of the production line delivers a product to the packaging machine, the "SP" terminal outputs a pulse to the T1 terminal of...[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]
International Solar Photovoltaic Network News: On November 21, Australia's SMA Solar Technology Co., Ltd. signed a contract with the local government to provide photovoltaic inverters with an insta...[Details]
About a dozen years ago,
AMD
was also a rival to Intel. It can be said that the two microprocessor manufacturers have been in love and hate for many years, which is completely a commercial ...[Details]
Pay attention to whether the new lock matches the old door Smart locks have many advantages over traditional mechanical locks. Although the domestic penetration rate is not high, with the strength...[Details]
#include MSP430x12x2.h #define TEM_ADC_CHL 0x0a void InitSys(void); void Read_ADC(unsigned int INCH_channel); void ADC_TO_TEM(void); unsigned int ADC_sample_val; unsigned int long temp1,temp2;...[Details]
MSP430 uses ADC10 to measure the voltage of the temperature diode inside the chip #include "msp430x22x4.h" //This program uses ADC10 to measure the voltage of the temperature diode inside the chip ...[Details]