Difference between revisions of "NU32 Software"

From Mech
Jump to navigationJump to search
Line 35: Line 35:
* [http://www.microchip.com/pagehandler/en_us/devtools/mplabharmony/home.html MPLAB Harmony]
* [http://www.microchip.com/pagehandler/en_us/devtools/mplabharmony/home.html MPLAB Harmony]
* [http://www.ftdichip.com/Drivers/VCP.htm FTDI Virtual COM Port Driver]
* [http://www.ftdichip.com/Drivers/VCP.htm FTDI Virtual COM Port Driver]
* [http://www.putty.org/ PuTTY Terminal Emulator for Windows] (use "screen" on Linux and the Terminal program on a Mac)
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html PuTTY Terminal Emulator for Windows] (use "screen" on Linux and the Terminal program on a Mac)
* [[Media:PIC32Quickstart.zip | PIC32Quickstart.zip (November 2015)]] - PIC32Quickstart.zip, as needed in the Quickstart Chapter
* [[Media:PIC32Quickstart.zip | PIC32Quickstart.zip (November 2015)]] - PIC32Quickstart.zip, as needed in the Quickstart Chapter
* [[Media:Embedded_Computing_V1.0-Nov_2015.zip | Full Book Source Code (November 2015)]] - All of the source code from the book.
* [[Media:Embedded_Computing_V1.0-Nov_2015.zip | Full Book Source Code (November 2015)]] - All of the source code from the book.

Revision as of 12:24, 11 December 2015

Software

  • Text Editors (these are just suggestions; feel free to use any text editor you are comfortable with)
    • for Mac
    • for Windows
    • for Linux
      • Gedit
        • Ubuntu: sudo apt-get install gedit
        • Arch: sudo pacman -S gedit
    • all platforms
      • vim
        • Ubuntu: sudo apt-get install vim
        • Arch: sudo pacman -S vim
      • emacs
        • Ubuntu: sudo apt-get install emacs
        • Arch: sudo pacman -S emacs
      • atom
  • Native C Compiler
    • for Mac
    • for Windows
      • MinGW - download mingw-get-setup.exe
      • After downloading the installer:
        1. Select mingw32-base and choose "mark for installation"
        2. Select msys-base and choose "mark for installation"
        3. In the file menu select Installation->Apply Changes
    • for Linux
      • Ubuntu: sudo apt-get install build-essential
      • Arch: sudo pacman -S base-devel