Skip to content

Commit

Permalink
Update to the README to make the PocketCHIP specific names more easil…
Browse files Browse the repository at this point in the history
…y recognizable. Update to the Makefile clean function to remove the byte compiled python stuff that wasn't cleaned properly
  • Loading branch information
xtacocorex committed Jan 2, 2017
1 parent abbc496 commit 8241f54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -6,7 +6,7 @@ publish: package

clean:
rm -rf CHIP_IO.* build dist
rm -f *.pyo
rm -f *.pyo *.pyc
rm -f *.egg
rm -f overlays/*.pyo overlays/*.pyc
tests:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -44,10 +44,10 @@ All scripts that require GPIO, PWM (HW and/or SW), and Overlay Manager need to b

**Allowable Pin Names for the Library**

The following "table" is the allowable pin names that are able to be used by the library.
The following "table" is the allowable pin names that are able to be used by the library. The Name column is the normal name used on the CHIP Headers, the Alt Name column is the value used by the PocketCHIP header (if it's broken out), and the Key is the Header and Pin Number the the Pin is physically located. Either of these 3 means is able to specify a pin in CHIP_IO.

+-----------+-------------+--------+
| Name | Alt Name | Key |
| CHIP (Name) | PocketCHIP (Alt Name) | Key |
+-----------+-------------+--------+
| TWI1-SDA | KPD-I2C-SDA | U13_9 |
+-----------+-------------+--------+
Expand Down

0 comments on commit 8241f54

Please sign in to comment.