CH01 - Preliminary¶
This series records my learning process of the 51 series video on Bilibili - Jiangxi Science and Technology College Embedded System Basic Course
-
ๆฑ็งๅคง51 ๐ฏ๐๐๐
A Bilibili channel about embedded systems and programming๏ผ beginner-friendly, I strongly recommend it!
Development Tools¶
Development Board¶
Puzhong 51 single-chip development board - STC89C516RD+
KEIL C51¶
For programming and debugging, you can download the installation package from the official website, and seek a crack method from Taobao for installation.
STC-ISP¶
For flashing programs, you can download the installation package from the official website for installation.
Programming Method¶
- Open KEIL C51
- Select Project -> New uVision Project
- Select the project path, enter the project name, and click Save
- Select the chip model and click OK - ATMEL -> AT89C52
- Select Target -> Options for Target
- Select C51 -> Output -> Select Hex, click OK
- Select File -> New -> New File
- Select C File, enter the file name, and click Save
- Enter the code and click Save
- Select Project -> Build Target
- Open STC-ISP
- Select the chip model and click OK
- Select the file and click OK
- Click Start programming, then reset the single-chip microcomputer (turn off and then turn on the power)
