Difference between revisions of "Pic32book"

From Mech
Jump to navigationJump to search
Line 1: Line 1:
Welcome to the webpage for the <Title TBD> book about the PIC32 and mechatronics.
Welcome to the webpage for the <Title TBD> book about the PIC32 and mechatronics.


A note to Linux users: most of this software may be available via your distribution's package manager.
== Chapter 1: Quickstart ==
== Chapter 1: Quickstart ==


Line 8: Line 7:
#* [http://www.barebones.com/products/textwrangler/download.html TextWrangler] (Mac
#* [http://www.barebones.com/products/textwrangler/download.html TextWrangler] (Mac
#* [http://wiki.gnome.org/Apps/Gedit Gedit] (Windows/Mac/Linux)
#* [http://wiki.gnome.org/Apps/Gedit Gedit] (Windows/Mac/Linux)
#* > sudo apt-get install gedit (Ubuntu)
#* [http://vim.org vim] (Windows/Mac/Linux)
#* [http://vim.org vim] (Windows/Mac/Linux)
#* > sudo apt-get install vim-gtk
#* [http://www.gnu.org/software/emacs/emacs emacs] (Windows/Mac/Linux)
#* [http://www.gnu.org/software/emacs/emacs emacs] (Windows/Mac/Linux)
#* > sudo apt-get install emacs
# The gcc compiler
# The Native C compiler
*#. [http://www.mingw.org/wiki/Getting_Started MinGW] (Windows)
*#. [http://developer.apple.com/xcode Xcode] (Mac)]
#* [http://www.mingw.org/wiki/Getting_Started MinGW] (Windows)
#* [http://developer.apple.com/xcode Xcode] (Mac)]
*#. Your distribution's package manager
#* Your distribution's package manager (Linux)
*** sudo apt-get install (Ubuntu)
*** sudo pacman -S gcc (archlinux)
#** > sudo apt-get install build-essential (Ubuntu)
# Make

#* [http://gnuwin32.sourceforge.net/packages/make.htm gnuWin32 Make] (Windows)
*#.
#* Already installed with Xcode (Mac)
*#.
#* Your distribution's package manger (Linux)
#** Already installed with gcc (Ubuntu)

Revision as of 16:18, 11 January 2015

Welcome to the webpage for the <Title TBD> book about the PIC32 and mechatronics.

Chapter 1: Quickstart

  1. Text editors (Choose one)
    • Notepad++ (Windows)
    • TextWrangler (Mac
    • Gedit (Windows/Mac/Linux)
    • > sudo apt-get install gedit (Ubuntu)
    • vim (Windows/Mac/Linux)
    • > sudo apt-get install vim-gtk
    • emacs (Windows/Mac/Linux)
    • > sudo apt-get install emacs
  2. The Native C compiler
    • MinGW (Windows)
    • Xcode (Mac)]
    • Your distribution's package manager (Linux)
      • > sudo apt-get install build-essential (Ubuntu)
  3. Make
    • gnuWin32 Make (Windows)
    • Already installed with Xcode (Mac)
    • Your distribution's package manger (Linux)
      • Already installed with gcc (Ubuntu)