From 9c30a7b5bc0dee756accb3b80fcd58e85d6ca2d5 Mon Sep 17 00:00:00 2001 From: Cameron Beneteau Date: Thu, 7 Nov 2024 14:19:23 -0500 Subject: [PATCH] Update docs --- docs/docs/firmware/project-structure/index.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/docs/firmware/project-structure/index.md b/docs/docs/firmware/project-structure/index.md index 7f021aa0b..5ee5e0124 100644 --- a/docs/docs/firmware/project-structure/index.md +++ b/docs/docs/firmware/project-structure/index.md @@ -20,9 +20,7 @@ In this tutorial, we will __recreate the Blink project from scratch__ for multip ## Prepare the project folder -All projects are stored under the `projects/` directory and each project has its own folder. For example, the `FrontController` project is stored at `projects/FrontController/`. - -Similarly, all demo projects are stored under `projects/Demo/`. For example, the `Blink` project is stored at `projects/Demo/Blink/`. +All projects are stored under the `projects/` directory, with each project organized in its own folder. Projects can also be grouped into subfolders for better organization. For example, the `FrontController` project is stored at `projects/FrontController/`, while demo projects can be grouped under `projects/Demo/`, such as the `Blink` project stored at `projects/Demo/Blink/`. 1. Create a new folder to hold the project at `projects/MyBlink`.