Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycote authored Sep 12, 2023
1 parent 81623e4 commit 10358b9
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,35 @@
# UOSM-Dashboard

Read the wiki:
https://github.com/UOSupermileage/UOSM-Dashboard/wiki
[View Documentation]([https://uosupermileage.github.io/UOSM-Motor-Controller-MCU-L432/#/](https://uosupermileage.github.io/UOSM-Dashboard/))

## Getting Started
The team uses CLion for development. CLion is free for students. You will also need to install the compiler.

```bash
# MacOS
brew install --cask gcc-arm-embedded

# Ubuntu
# See https://lindevs.com/install-arm-gnu-toolchain-on-ubuntu

# Windows
# Install Ubuntu with WSL and then follow the Ubuntu instructions.
# Alternativly, Install the latest compiler from https://developer.arm.com/downloads/-/gnu-rm
# The WSL approach is heavily recommended.
```

```bash
# Make sure you've added your ssh key to GitHub.
# https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account

# Clone the project (Make sure to clone the submodules)
git clone --recurse-submodules git@github.com:UOSupermileage/UOSM-Dashboard.git

# Once you've made your changes
git commit -m "My changes"

git push origin main

# If you've modified UOSM-Core (Make sure you do this AFTER commiting your changes)
git subtree push --prefix UOSM-Core git@github.com:UOSupermileage/UOSM-Core.git main
```

0 comments on commit 10358b9

Please sign in to comment.