[i=s]This post was last edited by jameswangsynnex on 2015-3-3 19:58[/i] Swedish design company CHN released a super cool product at CNET EURO held in Geneva. In its demonstration video, the iGadget se...
There are relatively few people working on porting Vxworks system to embedded ARM chips (s3c2410\pxa270, etc.). I hope that after posting this article, I can gather a group of friends working on this ...
[color=#ff0000][size=3][b]Latest notice{:1_108:}:[/b][/size] [size=3][b]ESP8266 (EEWORLD version) has been sold out,[/b][/size] [size=3][b]The event will enter the stage where everyone can share their...
[b][color=#05006c] [/color][size=2][color=blue] Simulate switch light[/color][/size][/b] [b][i]1. Experimental task[/i][/b] As shown in Figure 4.2.1, monitor switch K1 (connected to port P3.0), and us...
【JDPCB】Qisda is introducing smart factories in phases. Chairman Chen Qihong said yesterday (25th) that through high automation, order delivery can be accelerated. The current benefits have reached a...[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]
After studying the F4 FSMC method to drive the touch screen for a few days, I have gained some understanding, which are listed below. The unorganized record is only for my own reference in the future...[Details]
In the development of artificial intelligence, talent reserve is undoubtedly an important part. Artificial intelligence should be a bottom-level technology that can be deeply embedded in any indust...[Details]
Artificial Intelligence (AI) is undoubtedly the hottest topic in the technology industry in the past one or two years. In addition to the huge investments made by technology giants, financial and o...[Details]
This paper proposes a design scheme for an embedded CNC system based on ARM and FPGA. The software and hardware design of the ARM system, the implementation method of hardware fine interpolation ...[Details]
With the large-scale development of the domestic household photovoltaic market and the improvement of component and inverter technology, the system cost has dropped significantly in the past year. The...[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]
The pins of stm32 have two uses: GPIO (general purpose io) and AFIO (alternate function io) For some pins (depending on the chip), neither of these two uses exists. For example, in 64-pin products, O...[Details]
I have encountered many problems when tinkering with LD driver recently. I will record them one by one below. Otherwise, who will remember who in five hundred years? 1. Configuration issues of multi-...[Details]
Today I am using the AD function of the stm8s microcontroller. There are ten channels from AN0 to AN9 on the microcontroller. I want to use only three of them, AN5 to AN7. //ADC initialization void A...[Details]
****************************************************************** 1. The operand is in register, R0--R7 2. Operands are in internal RAM 3. Operands are in external RAM But they are all similar. For ...[Details]
1. SCL is always controlled by the Master. SDA is controlled by the Slave when reading data and by the Master when writing data according to the direction of data transmission. After the 8-bit data i...[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]