Skip to content

Commit 06f98d6

Browse files
Add git configuration and setup verification steps
Added instructions for configuring git user information and testing the setup.
1 parent 1d3ada3 commit 06f98d6

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

  • content/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm

content/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm/3-env-setup-fvp.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ When the script completes, it prints a command to finalize the installation by a
3131
source $HOME/executorch/examples/arm/ethos-u-scratch/setup_path.sh
3232
```
3333

34+
Then configure git informations, you can stay anonymous or fill in your email and name:
35+
36+
```bash
37+
git config --global user.email "you@example.com"
38+
git config --global user.name "Your Name"
39+
```
40+
3441
Test that the setup was successful by running the `run.sh` script for Ethos-U85, which is the target device for Corstone-320:
3542

3643
```bash
@@ -39,4 +46,4 @@ Test that the setup was successful by running the `run.sh` script for Ethos-U85,
3946

4047
You will see a number of examples run on the FVP.
4148

42-
This confirms the installation, so you can now proceed to the Learning Path [Build a Simple PyTorch Model](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm/4-build-model/).
49+
This confirms the installation, so you can now proceed to the Learning Path [Build a Simple PyTorch Model](/learning-paths/embedded-and-microcontrollers/introduction-to-tinyml-on-arm/4-build-model/).

0 commit comments

Comments
 (0)