-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added proper support for specifying an alternate serial port to all G…
…umbi subclasses. Also added auto-detection code to find the appropriate serial port if none is specified.
- Loading branch information
heffnercj
committed
Aug 23, 2012
1 parent
a8d9789
commit 761483b
Showing
7 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
PREREQUISITES | ||
|
||
The Gumbi API is written in Python, and requires no additional modules | ||
outside of those included with the standard Python installation. | ||
|
||
The firmware is written in C, and must be built for the AVR architecture; | ||
thus, you must have the AVR cross-compiler and toolchain installed on | ||
your system in order to build the firmware. | ||
|
||
To install the firmware via the Makefile, you must also have the dfu-programmer | ||
utility installed. Alternately, you can install the firmware using the | ||
Atmel Flip utility. | ||
|
||
The majority of the API code is platform independant, and should work on | ||
most systems; currently however, it has only been tested under Linux. | ||
|
||
INSTALLATION PROCEDURES | ||
|
||
To install the Gumbi API modules and associated Gumbi utilities: | ||
|
||
$ cd src/python | ||
$ ./configure | ||
# make | ||
|
||
To install the firmware onto the Gumbi board: | ||
|
||
$ cd src/avr | ||
$ make | ||
# make install | ||
|
||
Note that prior to installing the Gumbi board firmware, you must first | ||
put the board into programming mode, by shorting the two RESET pins while | ||
also shorting the two PROGRAM pins together. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters