Skip to content

ut-ras/Rasware2012

Repository files navigation

How to set up Rasware 2012

Note: Only Windows is supported.

Getting started with Git

  1. Create a free GitHub account on github.com.
  2. Follow GitHub's great instructions for installing Git on your computer.

Forking Rasware

  1. Once logged into GitHub, go to ut-ras's Rasware2012.
  2. Fork the project's code through the button on the top right. This will copy the project to your own account.
  3. Open Git. Depending on what version is installed, the commands will be slightly different.
  4. Do Git Clone to create a copy of the project on your computer. In GitHub for Windows, simply click on clone next to the Rasware2012 project.
  5. Right click on Rasware2012 then click on open in explorer to open the folder containing the project.

Install Putty

  1. Go to http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html.
  2. Under "for Windows on Intel x86" click on putty.exe to save putty to your computer.

Install Keil uVision

  1. Go to the LM3S811 Evaluation Kit CD at http://www.ti.com/tool/ekk-lm3s811-cd.
  2. Click Get Software. To download it you'll need to create an account.
  3. Unzip the CD folder and open index.html.
  4. Click on Tools in the left-hand menu.
  5. Click the Keil logo to "download" and open the installer.
  6. Follow the installation dialogue.

Install the drivers

  1. Go back to the Tools page in the CD folder.
  2. Click on the link uder ICDI Drivers.
  3. Unzip the drivers and place them in the EKK-LM3S811-CD-705/Tools folder.
  4. Plug in a RAS board to the computer with a usb computer.
  5. Windows should fail at automattically installing drivers.
  6. Go to the Device Manager on your computer.
  7. For each listing, right-click and select the Update Driver option.
  8. Then choose the "Browse my Computer" option.
  9. Browse to where you previously unzipped the drivers and select the Tools folder.
  10. Once all of the drivers are installed, note the COM port number that appears in the Device Manager. It should read something like Stellaris Virtual COM Port (COMX) where X is the port.

Run the demo project

  1. Open the Rasware2012 project on your computer.

  2. Navigate to Rasware2012/Robotathon2012_Projects/RASDemo.uvproj and open the file with Keil uVision.

  3. Click the compile button compile and make sure that it compiles without errors.

  4. With the RAS board connected, click the load button load and it should load to the board without errors.

  5. Open Putty to connect to the board

    1. Click the serial radio button.
    2. Under serial line type COMX where X was the COM port that was shown in the Device Manager.
    3. Under speed type 115200
    4. Under Saved Settings type Robotathon2012 and then click Save to keep from having to configure it each time.
    5. Now double click Robotathon2012 to connect to the board.
  6. Hit the reset button on the board. The following should appear on the Putty console.

    Putty Console

  7. As the menu indicates, press the numbers 0-5 to use the demos.

Create a team project

  1. Create a copy of the RASDemo project in Rasware2012/Robotathon2012_Projects.
  2. Rename the Project to your team's name.
  3. Open up Git on your computer.
  4. First, add the new project folder to Git so Git can keep track of it.
  5. Then, create a commit in Git to update Git with what has changed.
  6. Finally, push in Git to update GitHub online.
  7. To prevent every team member from needing to create their own fork, you can add their github accounts to your project's collaborators
  8. Navigate to your project on github.
  9. Click the Admin button on the top right.
  10. Select the Collaborators option on the right.
  11. Type your member's usernames to add them as collaborators.
  12. They should now be able to clone and edit the same project through git.

Additional Information

Keil uVision (we pronounce it as Kyle Micro-Vision) is an Integrated Development Environment or IDE for short. Other popular IDEs are Netbeans, Eclipse, IDLE, and VisualStudio

Git is an implementation of something called version control which we use to maintain code in RAS. You might have heard of SVN, or subversion, which is another popular version control. Although it isn't necessary to do well in Robotaton, learning more about git, GitHub, and version control would be a smart idea.

When running PuTTY, we used 115200 as the speed of the connection. This is the baud rate of the USB connection on the board.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published