|
@@ -0,0 +1,97 @@
|
|
|
|
+# [STM32F401] How to create a new project
|
|
|
|
+
|
|
|
|
+:::info
|
|
|
|
+:bulb: Download the latest RT-Thread studio from link -
|
|
|
|
+https://www.rt-thread.io/studio.html
|
|
|
|
+and follow the instructions to install it on your windows machine.
|
|
|
|
+:::
|
|
|
|
+
|
|
|
|
+### Create a new project
|
|
|
|
+
|
|
|
|
+- Go to File -> Import.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- Select RT-Thread Bsp Project into Workspace.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- Import Projects from BSP.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- Browse Bsp Location to rt-threadx\bsp\stm32\stm32f401-st-nucleo, then click Select Folder.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- Fill up the rest of the information and select ST-LINK for debugger. Then, click finish button. There will be a newly created project at the workspace.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+### Tool Chain
|
|
|
|
+
|
|
|
|
+- Select the latest tool chain version to resolve the warning.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- **If** there is no latest tool chain version, click SDK manager to download the latest version.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+> - Select the latest version from the RT-Thread SDK Manager window and click install packages button. After installation, click Exit SDK Manger button again.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+> - Then select the latest version from the Open Build Settings Dialog.
|
|
|
|
+
|
|
|
|
+### RT-Thread Setting
|
|
|
|
+
|
|
|
|
+- In order to configure kernel and to enable add-on software packages, click RT-Thread Settings. Then, click detail button.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- After configuration, click save to update the latest configuration.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+### Compilation
|
|
|
|
+
|
|
|
|
+- In order to complie the project, select the project and ensure that it is [Active - Debug ] state.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+- Click compilation icon at the menu bar to compile the project.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+### Terminal
|
|
|
|
+
|
|
|
|
+- To access the development board, click terminal icon at the menu ba and select the correct serial port.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+### Additional Info
|
|
|
|
+
|
|
|
|
+- If you need addtional information, visit to
|
|
|
|
+
|
|
|
|
+https://www.rt-thread.io/document/site/programming-manual/interrupt/interrupt/
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+##
|
|
|
|
+###### Author
|
|
|
|
+###### Stanley Lwin [04 / 11 / 2023]
|