[i=s]This post was last edited by southwolf1813 on 2014-5-6 13:06[/i] I wanted to post all of them at once, but I found that I had spread my ideas too wide, so I might have to write them separately......
[i=s]This post was last edited by Heifeila on 2014-6-22 19:39[/i] [b][size=4][font=Tahoma,][font=Tahoma,]BB solution finale: FPGA-side software implementation - [/font][/font][font=Tahoma,][font=Tahom...
I've been learning about 28027 recently and bought a development board. I downloaded a lot of examples from experts on the forum and found that almost no one used TI's library functions. They all edit...
I am working on a project that uses Freescale's MCU + 2.4 G wireless. The wireless can beI want to find someone who has worked on or is familiar with 2.4G to help me write, or teach me how to write th...
Detailed introduction to the method of measuring resistance with a multimeter: Generally, a multimeter has several ranges, such as RX1, RX10, RX100, RX1k, and RX10k. For a multimeter with only one con...
Recently, the first Digital China Summit was held in Fuzhou, attracting many domestic ICT industry giants to participate in the exhibition. The long queues outside the venue, the noisy and exciting...[Details]
The most significant event in the technology circle during this period is undoubtedly the news that ZTE was banned by the United States. Once the news came out, it shocked the entire Chinese techno...[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]
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]
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]
1) ADC multi-channel acquisition: (Multi-channel acquisition must use scanning mode. In scanning mode, the channels of the rule group share a register, so DMA transmission must be used; to prevent da...[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]
;The hardware connection circuit of the 51 single-chip microcomputer is as follows: ;P1.3 and P1.4 are each connected to a button; ;P0.0 and P0.3 are each connected to a light-emitting diode; ;P2.0~P...[Details]
Circuit: Using AT89S52 single chip microcomputer. P3.0 to P3.3 are connected to four external buttons. P3.4 to P3.7 are the bit selection ports for controlling the four digital tubes, and P1 is the s...[Details]
I have been deeply affected by serial ports since 51. The MAX232 I bought from Huaqiang was originally broken. I thought there was something wrong with my circuit or schematic. Since there was no goo...[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]
While imaging industry experts know that Apple has designed a complex 3D camera for its iPhone X, called "TrueDepth," most of the details of the 3D system inside the module, including chips, componen...[Details]
:For medium and large-scale domestic photovoltaic power stations, inverters generally go through an open bidding process. Due to the high technical content of power station design, it is necessary ...[Details]
volatile unsigned int ad_value ; int main( void ) { WDTCTL=WDTPW+WDTHOLD; //Turn off watchdog BCSCTL1 =CALBC1_1MHz; //Set DCO to 1MHZ DCOCTL =CALBC1_1MHZ; //Clock source: AD internal clock and divide...[Details]