To burn the BIOS of the mini2440 board, you need to set up an initialization script. I looked at the script content and it basically sets memory data. I commented on it: SCRIPT SECTION: Setmem 32-Bit ...
C2000 Premium Courses Crazy 15-day Event, the list of approved candidates can get a C2000 Piccolo LaunchPad development board for free (original price: $17)! [/font][/color]Among them, shihuntaotie, c...
[color=#ff0000][table][tr][td]I am 20 years old this year, a freshman (not a regular college student), majoring in computer science (software programming). I mainly want to explain my past and talk a ...
I used to be a WIDNOWS developer, but recently I have not had much work. The company took on a microcontroller project. Since they are not hiring, I have to do it myself. The project uses the Renesas ...
How is the 2010 Jetta? Is there anyone in the forum who has driven this car? I want to buy one at the end of the year for convenience! Friends who have driven Jetta, please give me some comments!...
[i=s] This post was last edited by paulhyde on 2014-9-15 09:10 [/i] I recently bought an ultrasonic ranging module, but found that the program and the pins do not match, and there are errors when debu...
In the actual project development process, hardware circuits often need to be modified, and the modified parts need to modify the driver. Thinking about the coming and going of such requirements is t...[Details]
The program got stuck during LCD initialization. Through hardware debugging, it was found that it was stuck in the Delay_ms() function. Going to the definition, it was found to be a macro definition ...[Details]
Chip: STM32F107VCT6 Application Pin: THOUSANDS, RMII STM32CubeMX is very convenient to use ETH. The software comes with LWIP and configuration. This time, STM32F107VCT6+DP83848CVV is used. The MII a...[Details]
introduction In the general project development process, two or more microcontrollers are often required to communicate to complete data transmission. For example, a quadcopter wirelessly transmits d...[Details]
This routine is also a classic routine on the development board. I modified the framework of the program to make it more suitable for future calls. The specific 4*4 keyboard scanning principle is rel...[Details]
Different from 51, AVR and other single-chip microcomputers, the clock signal sources of msp430 include LFXT1, XT2 and DCO. 1. LFXT1: It can connect high-speed and low-speed crystal oscillators. In l...[Details]
On Sunday, the South Australian government unveiled plans to build the world's largest virtual power plant, which will connect at least 50,000 homes over four years and have a capacity ...[Details]
From the functional classification, it can be divided into: 1. Active control ADAS: ACC/AEB/LKS, etc. 2. Warning ADAS: FCW/LDW/PCW, etc. 3. Other auxiliary ADAS: BSD/ADB/panora...[Details]
sprintf is a function in the C language library that converts data types. There is a situation where In 51 MCU, define unsigned char temp; Then I want to use the serial port to print out temp in deci...[Details]
Here is the temperature added in the previous chapter The above figure is the temperature calculation formula: where Vsense is the ADC value collected from the temperature channel. The stm32f407 ...[Details]
;Question: The 80C51 single-chip microcomputer has a fosc = 6MHz. It is required to use the T1 timer working mode 1 to perform a timing of 40ms. And P1.7 periodically outputs a rectangular wave with ...[Details]
6MHz crystal oscillator, using timer counter 1, using interrupt mode, through P1.0 to make a light emitting diode turn on for 100ms, turn off for 300ms, and repeat. Assembly programming is used to ac...[Details]
It is required to use MCS-51 microcontroller to sort data. 1. Sort the 8 data in ascending order; 2. The data to be sorted is stored in the internal data memory address units 30H-37H, which are 34H, ...[Details]
Please help me analyze the clock cycles occupied by the following delay program. Seek to explain: DELAY: MOV R6, #13 DELAY1: MOV R5, #250 DELAY2: NOP DJNZ R5, DELAY2 DJNZ R6, DEL...[Details]