When compiling the program, the error "Duplicate input file D:\ARM\test\pro4\pro4_Data\DebugInRAM\ObjectCode\main.o ignored" always appears. Also, the printf() function cannot be used in the *.C progr
When I followed the teacher and asked him how to write a program, the teacher always told me to draw the control flow diagram of my program first. I thought it was troublesome at that time, so I just
[b][font=微软雅黑][size=3][color=black]I watched the DLP course today. TI's explanation is pretty good. It starts from the most basic, then goes to a relatively in-depth technical explanation, then to the
I used to use a 51 sub-function to display a string: void print(uchar *str) { while(*str!='\0') { LCD_Write(*str); //The function is easy to use for writing single characters. str++; } } But why is it