Rasware is a generic robotics library project for the EK-LM4F120XL Stellaris Launchpad, built on top of StellarisWare. It is intended to be used for UT RAS's Robotathon competition as well as general purpose robotics projects. Authored by the IEEE - Robotics and Automation Society Student Branch at the University of Texas at Austin. For documentation, see Rasware's Github wiki.
- Create a free GitHub account on github.com
- If you want to learn more about Git check out this great beginners guide http://rogerdudler.github.io/git-guide/ or if you really want to get into it, you can read the GitPro book online for free (and legally, too!) at http://git-scm.com/book
- Once logged into GitHub, go to ut-ras's Rasware.
- Fork the project's code through the button on the top right. This will copy the project to your own account.
- On the team's forked repository Github page, go to
Settings -> Collaborators
and add each team member as a collaborator
The remainder of the instructions will depend on what type of system you're running.
-
Download and install VMware Workstation Player (near the bottom of the page).
-
WMware Player is a hypervisor that lets us run a controlled environment for writing and flashing code.
-
Download a copy of the latest Ubuntu LTS .iso from here:
64-bit: ftp://ftp.utexas.edu/pub/ubuntu-iso/16.04.3/ubuntu-16.04.3-desktop-amd64.iso
32-bit: ftp://ftp.utexas.edu/pub/ubuntu-iso/16.04.3/ubuntu-16.04.3-desktop-i386.iso
-
Open VMWare and select Create a New Virtual Machine.
-
Select the Installer disc image file bubble and navigate to your freshly downloaded .iso. Click next.
-
Full Name is your own name. User name is whatever you want, all lower case, no special characters. Create and confirm a password. Click next.
-
Choose a name for your VM. (Some people like to theme their Linux machine names. We've seen famous scientists, video game AIs, Star Trek starship classes, whatever you want.)
-
Make sure you're okay with the location where you'll store this machine, then click next.
-
20GB is a good max disk size. This will not immediately allocate 20GB, it will be populated as you fill it. This is just the max allowed size.
-
Store your virtual disk as a single file. Click next.
-
Click Customize Hardware, then slide the memory slider up to 4GB. This is plenty of RAM for this VM's purposes. Click close.
-
Click finish, let the machine install, then log in!
If VMWare complains about VT-x not being enabled, you'll need to go through your BIOS and enable VT-x. There should in instructions in the dialog box.
- Plug in a Launchpad to your computer. If you don't have a Launchpad available this step can be done later.
- In the VM, select
Player -> Removable Devices -> Luminary Micro ICDI
and selectConnect
.
- Follow the rest of the instructions on how to use Rasware from the Install Dependencies step in the Linux instructions.
- Before we do anything else, run this in your terminal if you're running Marericks or newer (macOS 10.9+) and haven't already done this:
xcode-select --install
- Install Homebrew: link (Installation instructions are at the bottom of the page.)
- Install OpenOCD through Homebrew in a terminal.
brew install openocd
- Install the Cross Compiler Toolchain for Embedded ARM Devices through Homebrew as well:
brew cask install gcc-arm-embedded
- On macOS devices belong to the
wheel
group, so in order to access the devices on your Mac (like the Launchpad) you also need to be part of thewheel
group. Put the following in a terminal to see what groups you're part of:
groups
-
If
wheel
was one of the groups listed, you're good to go and can skip the next step. -
If not, add yourself to the
wheel
group:
sudo dscl . append /Groups/wheel GroupMembership $(whoami)
- If everything has worked so far, follow the rest of the instructions on how to use Rasware from the setup a directory step in the Linux instructions.
These instructions are written for use in a terminal (xterm, gterm, kterm, tty1, etc.) and assume that you have already installed, and are familiar with, your favorite text editor. If you have not found a favorite text editor, I recomend you take a look at Vim, Emacs, and SublimeText3.
- First install the basic dependencies
- Archlinux :
sudo pacman -S git base-devel openocd screen arm-none-eabi-gcc arm-none-eabi-gdb arm-none-eabi-newlib
- Ubuntu/Debian :
sudo apt-get install git build-essential openocd screen gcc-arm-none-eabi gdb-arm-none-eabi libnewlib-arm-none-eabi
- Create a directory to work in. This is where we will place everything.
mkdir ras
cd ras
Use git to clone Rasware, replacing "username" with your Git username in the URL. Make sure you've forked Rasware already! This makes a copy of Rasware on your computer.
git clone https://github.com/username/Rasware.git
- Locate Stellarisware, the TI library, in Rasware/Downloads on your computer (in the repository you cloned).
- Uncompress the file, compile StellarisWare, and move it to
/usr/local/lib
.
tar vfx StellarisWare.tar.bz2
cd StellarisWare
make
cd ..
sudo mv StellarisWare /usr/local/lib
rm StellarisWare.tar.bz2
- To avoid needing root access to communicate with the lm4f, you will need to copy the lm4f rule to the udev directory.
wget https://raw.githubusercontent.com/ut-ras/Rasware/master/RASLib/51-lm4f.rules
sudo mv 51-lm4f.rules /etc/udev/rules.d
- Trigger udev for the new rules to come into effect.
sudo udevadm control --reload
sudo udevadm trigger
- Plug in a Stellaris Launchpad. you should now see the file
/dev/lm4f
.
Compile RASLib by using the make program.
cd Rasware/RASLib
make
cd ..
cd RASTemplate
make
cd ..
cd RASDemo
make
- We have created an example project to demonstrate Rasware running on a Launchpad.
- Compile RASDemo.
cd Rasware/RASDemo
make
- To flash RASDemo to the board, we use make with different arguments.
make flash
If you get an Error 1, make sure your USB device is connected, powered on, and forwarded to your VM if necessary and try again. If you see "shutdown command invoked," press the reset button. If you get another Error 1, make flash
again and press reset. If you keep getting Error 1's, make sure you've forwarded your LaunchPad's USB connection to the VM: In the VM, select Player -> Removable Devices -> Luminary Micro ICDI
and select Connect
.
Else, if at this point an error message is printed that includes "Error erasing flash with vFlashErase packet", run the following command twice and press the board's reset button:
openocd -f $(find /usr -path */scripts/board/*tm4c123* 2>/dev/null) -c init -c halt -c "flash write_image erase RASDemo.out" -c verify_image RASDemo.out -c halt -c shutdown
You should now be able to use make flash
normally until you flash from Keil again. Keil seems to break things. Thank you to Kevin George for this workaround.
- If a launchpad is plugged in, it should be accessible at a special file in
/dev
(/dev/lm4f
on Linux,/dev/tty.usbmodem[board's serial id]
on macOS - run the detect-board script in the RASLib folder if you're curious). You can use make to create a terminal over UART.
make uart
-
You should now be presented with the RASDemo menu. Feel free to mess around and look into RASDemo's source code to see how it is done. To exit press
C-a k y
, or control-A followed by a K followed by a Y. -
If you don't want to do all of the above steps each time, you can run everything with one command.
make run
- Before you start, you should configure git with both your username and email.
git config --global user.name "User Name"
git config --global user.email "your@email.here"
- Git will keep track of any changes to your directory. You can use the status command to show the state of git.
git status
- To track a file, you can use the add command.
git add filename
- You can now use the commit command to create a commit containing all of the modifications of the files you
git add
ed. It will open an editor for writing a commit message. If saved, the commit will be created.
git commit
- To move your local changes to the server, use the push command.
git push origin master