By Ian Beavers | Electronic Design When selecting a wideband analog-to-digital converter (ADC) for a high-performance system, there are a number of analog input parameters to consider, such as ADC res...
[i=s] This post was last edited by dcexpert on 2017-11-1 23:00 [/i] The kernel of openmv3 is STM32F765, and it runs the system's micropython, so those who have played with micropython will be able to ...
I have a question for you. I wrote a multi-user driver, which can be opened by multiple applications at the same time. Each application gets data from the driver in a round-robin manner. I created a B...
Three major industry events in July 2012: Avnet Electronics Asia's X-fest 2012 Technology Seminar kicked off in Beijing. The 2012 Freescale Smart Car Competition kicked off in South China. The 2012 AR...
Please add a picture and title when answering. Thank you. I will add more if the points are not enough. [img]http://pic.wenwen.soso.com/p/20100615/20100615121014-293577441.jpg[/img] [img]http://pic.we...
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]
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]
Using Systick timer to achieve delay 1. SysTick timer characteristics The SysTick timer is a 24-bit down counter, that is, when vlue is decremented to 0, an interrupt is triggered and the load va...[Details]
The day before yesterday, I learned about STM's Systick and found it quite useful for precise timing. When I used CVAVR before, I found that the delay.h in it was very useful. So, I used STM32's...[Details]
1. Photovoltaic inverter installation process
1. Preparation before installation
Are the product accessories, installation tools and parts complete? Is the installation environmen...[Details]
What are your expectations and ideas
for
the future of
Xiaomi Mi Band
?
Xiaomi Mi Band’s
official Weibo shared many netizens’ thoughts on
the future direction and functions
of Xiao...[Details]
As a leading company in automotive semiconductors, Freescale and Khronos Group have jointly launched an automotive multimedia embedded microprocessor i.MX35 with an integrated OpenVG hardware acceler...[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]
Using the WWDG of STM32F030, it is found that the MCU will not be reset under STOP, just like the sleep mode of STM8S. Paste the watchdog code: /******************************************************...[Details]
If you do not use an external crystal on the STM32, the connection method of OSC_IN and OSC_OUT If you use the internal RC oscillator instead of an external crystal, please follow the following metho...[Details]
//******************************************************************************/ #include msp430.h //Note: There must be a delay between two transmissions, otherwise it cannot be sent again, seria...[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]