mirror of
https://github.com/xtacocorex/CHIP_IO
synced 2025-07-20 21:03:22 +00:00
Compare commits
63 Commits
Author | SHA1 | Date | |
---|---|---|---|
6bd2e61450 | |||
cd85e2b5eb | |||
6beacbb382 | |||
a498fc12bd | |||
2e2177da26 | |||
541d76f641 | |||
2b23e2d165 | |||
a839661c3b | |||
cb4e272a35 | |||
05b936ca1d | |||
3ff79d43e3 | |||
40381efa74 | |||
73ae207e16 | |||
eafcf0bf69 | |||
bf27e2feea | |||
8221016c10 | |||
bd7f667041 | |||
8c3dab1ecc | |||
962049299a | |||
10e7043269 | |||
3b2e334876 | |||
486cf73860 | |||
5723bf15b3 | |||
6972f352ae | |||
8ecec67bad | |||
d0ed4665aa | |||
1d641ecdff | |||
8241f54891 | |||
abbc4968c6 | |||
9a2e81f093 | |||
7cce06b472 | |||
7489fd21b4 | |||
87303b6083 | |||
8aa402fbd5 | |||
e82f62133a | |||
993ea29213 | |||
7d91bbc47e | |||
b12c0ad2fe | |||
5d8c0f6aaa | |||
4aaff04375 | |||
eeb98d468f | |||
51c38843d9 | |||
5aa08351c2 | |||
9d7fb634a3 | |||
3cd69cfe93 | |||
cf9916018b | |||
e0c65de9a8 | |||
794ce98ed2 | |||
617f562b1c | |||
89cbea038e | |||
82d6fef173 | |||
e2173f0235 | |||
30593306a3 | |||
a9902d1267 | |||
fcd5afcdc8 | |||
d66032ed93 | |||
9a83cf765a | |||
d95847eb5a | |||
12bc9dec67 | |||
29eb018e78 | |||
ee0e27cb22 | |||
c8e4323c27 | |||
1e3e801e60 |
@ -1,3 +1,84 @@
|
|||||||
|
0.4.0
|
||||||
|
---
|
||||||
|
* Software Servo code added
|
||||||
|
- Only works on the LCD and CSI pins
|
||||||
|
* Fixed cleanup() for the SOFTPWM and SERVO
|
||||||
|
- The per pin cleanup for SOFTPWM doesn't work as stop() clears up the memory for the pin used
|
||||||
|
- SERVO code was based on SOFTPWM, so it inherited this issue
|
||||||
|
|
||||||
|
0.3.5
|
||||||
|
---
|
||||||
|
* Merged in brettcvz's code to read a byte of data from the GPIO
|
||||||
|
- Cleaned the code up and expanded it (in the low level C code) to read up to 32 bits of data
|
||||||
|
- Presented 8 bit and 16 bits of data functions to the Python interface with brettcvz's read_byte() and my read_word()
|
||||||
|
* I think I finally fixed the GPIO.cleanup() code one and for all
|
||||||
|
|
||||||
|
0.3.4.1
|
||||||
|
---
|
||||||
|
* Quick fix as I borked XIO setup as inputs with the latest change that enabled PUD
|
||||||
|
|
||||||
|
0.3.4
|
||||||
|
---
|
||||||
|
* Pull Up/Pull Down resistor setting now available for the R8 GPIO.
|
||||||
|
* Some general cleanup
|
||||||
|
|
||||||
|
0.3.3
|
||||||
|
----
|
||||||
|
* Added Debug printing for all the capabilities with the toggle_debug() function
|
||||||
|
* Added 2 functions from @streamnsight for PWM that allow for setting the period of the PWM and the Pulse Width, both in nanoseconds
|
||||||
|
* Fixed the SPI2 overlay stuff by using the NTC overlay instead of mine.
|
||||||
|
|
||||||
|
0.3.2
|
||||||
|
----
|
||||||
|
* Fixing issue #53 to handle the return values of the set functions in pwm_enable.
|
||||||
|
* Start of whole library debug for #55
|
||||||
|
|
||||||
|
0.3.1
|
||||||
|
----
|
||||||
|
* Fixing issue #50 where I broke GPIO.cleanup() and SOFTPWM.cleanup() when no input is specified.
|
||||||
|
|
||||||
|
0.3.0
|
||||||
|
----
|
||||||
|
* Added setmode() function for GPIO to maintain compatibility with Raspberry Pi scripts, this function literally does nothing
|
||||||
|
* Added per pin cleanup functionality for GPIO and SoftPWM so you can unexport a pin without unexporting every pin
|
||||||
|
* Updated README to make edge detection wording a little better and to add the per pin cleanup code
|
||||||
|
* Version update since I blasted through 3 issues on github and feel like we need a nice bump to 0.3
|
||||||
|
|
||||||
|
0.2.7
|
||||||
|
----
|
||||||
|
* Fix to the Enable 1.8V Pin code as it wasn't working due to bit shifting isn't allowed on a float.
|
||||||
|
* Updated README to denote the PocketCHIP Pin names better
|
||||||
|
|
||||||
|
0.2.6
|
||||||
|
----
|
||||||
|
* Fix to keep the GPIO value file open until the pin is unexported (issue #34)
|
||||||
|
|
||||||
|
0.2.5
|
||||||
|
----
|
||||||
|
* Updates to the pytest code for HWPWM and SoftPWM
|
||||||
|
* Removed the i2c-1 load/unload support in OverlayManager as CHIP Kernel 4.4.13 has that bus brought back by default
|
||||||
|
|
||||||
|
0.2.4
|
||||||
|
----
|
||||||
|
* HW PWM Fixed
|
||||||
|
- Start/Stop/Duty Cycle/Frequency settings work
|
||||||
|
- Polarity cannot be changed, so don't bother setting it to 1 in start()
|
||||||
|
* Added the unexport_all() function to Utilites
|
||||||
|
|
||||||
|
0.2.3
|
||||||
|
----
|
||||||
|
* LRADC Support
|
||||||
|
* Added Utilities
|
||||||
|
- Enable/Disable the 1.8V Pin
|
||||||
|
- Change 1.8V Pin to output either 2.0V, 2.6V, or 3.3V
|
||||||
|
(Current limited to 50mA)
|
||||||
|
|
||||||
|
0.2.2
|
||||||
|
----
|
||||||
|
* Fixes for Issue #16
|
||||||
|
- Pass SoftPWM setup errors to Python layer (aninternetof)
|
||||||
|
- Updated spwmtest.py to test for this issue
|
||||||
|
|
||||||
0.2.1
|
0.2.1
|
||||||
----
|
----
|
||||||
* Pull request #12 fixes:
|
* Pull request #12 fixes:
|
||||||
|
231
CHIP_IO/LRADC.py
Normal file
231
CHIP_IO/LRADC.py
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
# Copyright (c) 2016 Robert Wolterman
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
# this software and associated documentation files (the "Software"), to deal in
|
||||||
|
# the Software without restriction, including without limitation the rights to
|
||||||
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
# of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
# so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
|
# copies or substantial portions of the Software.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
|
||||||
|
import os
|
||||||
|
import time
|
||||||
|
|
||||||
|
# Global Variables
|
||||||
|
DEBUG = False
|
||||||
|
DEVICE_EXIST = True
|
||||||
|
|
||||||
|
# Default Sample Rate Variables
|
||||||
|
SAMPLE_RATE_32P25 = 32.25
|
||||||
|
SAMPLE_RATE_62O5 = 62.5
|
||||||
|
SAMPLE_RATE_125 = 125
|
||||||
|
SAMPLE_RATE_250 = 250
|
||||||
|
SAMPLE_RATES = []
|
||||||
|
|
||||||
|
# Scale Factor
|
||||||
|
SCALE_FACTOR = 31.25
|
||||||
|
|
||||||
|
# File Locations
|
||||||
|
LRADC_BASE_DEVICE_FILE = "/sys/bus/iio/devices/iio:device0"
|
||||||
|
AVAILABLE_SAMPLE_RATE_FILE = "/sampling_frequency_available"
|
||||||
|
SCALE_FACTOR_FILE = "/in_voltage_scale"
|
||||||
|
CURRENT_SAMPLE_RATE_FILE = "/in_voltage_sampling_frequency"
|
||||||
|
RAW_VOLTAGE_CHAN0_FILE = "/in_voltage0_raw"
|
||||||
|
RAW_VOLTAGE_CHAN1_FILE = "/in_voltage1_raw"
|
||||||
|
|
||||||
|
def toggle_debug():
|
||||||
|
global DEBUG
|
||||||
|
if DEBUG:
|
||||||
|
DEBUG = False
|
||||||
|
else:
|
||||||
|
DEBUG = True
|
||||||
|
|
||||||
|
def setup(rate=250):
|
||||||
|
# First we determine if the device exists
|
||||||
|
if not os.path.exists(LRADC_BASE_DEVICE_FILE):
|
||||||
|
global DEVICE_EXIST
|
||||||
|
DEVICE_EXIST = False
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
else:
|
||||||
|
# Set the Sample Rate
|
||||||
|
set_sample_rate(rate)
|
||||||
|
|
||||||
|
def get_device_exist():
|
||||||
|
return DEVICE_EXIST
|
||||||
|
|
||||||
|
def get_scale_factor():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the data from the file
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+SCALE_FACTOR_FILE,"r")
|
||||||
|
dat = f.readline()
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# Set the Scale Factor
|
||||||
|
global SCALE_FACTOR
|
||||||
|
SCALE_FACTOR = float(dat.strip())
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_scale_factor: {0}".format(SCALE_FACTOR))
|
||||||
|
|
||||||
|
return SCALE_FACTOR
|
||||||
|
|
||||||
|
def get_allowable_sample_rates():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the data from the file
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+AVAILABLE_SAMPLE_RATE_FILE,"r")
|
||||||
|
dat = f.readline()
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
global SAMPLE_RATES
|
||||||
|
tmp = dat.strip().split(" ")
|
||||||
|
for i in range(len(tmp)):
|
||||||
|
if "." in tmp[i]:
|
||||||
|
tmp[i] = float(tmp[i])
|
||||||
|
else:
|
||||||
|
tmp[i] = int(tmp[i])
|
||||||
|
SAMPLE_RATES = tmp
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_allowable_sample_rates:")
|
||||||
|
for rate in SAMPLE_RATES:
|
||||||
|
print("{0}".format(rate))
|
||||||
|
|
||||||
|
return tuple(SAMPLE_RATES)
|
||||||
|
|
||||||
|
def set_sample_rate(rate):
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Check to see if the rates were gathered already
|
||||||
|
global SAMPLE_RATES
|
||||||
|
if SAMPLE_RATES == []:
|
||||||
|
tmp = get_allowable_sample_rates()
|
||||||
|
|
||||||
|
# Range check the input rate
|
||||||
|
if rate not in SAMPLE_RATES:
|
||||||
|
raise ValueError("Input Rate an Acceptable Value")
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.set_sample_rate: {0}".format(rate))
|
||||||
|
|
||||||
|
# Write the rate
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+CURRENT_SAMPLE_RATE_FILE,"w")
|
||||||
|
mystr = "%.2f" % rate
|
||||||
|
f.write(mystr)
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
# Verify write went well
|
||||||
|
crate = get_sample_rate()
|
||||||
|
if crate != rate:
|
||||||
|
raise Exception("Unable to write new Sampling Rate")
|
||||||
|
|
||||||
|
def get_sample_rate():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the data from the file
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+CURRENT_SAMPLE_RATE_FILE,"r")
|
||||||
|
dat = f.read()
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
dat = dat.strip()
|
||||||
|
if "." in dat:
|
||||||
|
dat = float(dat)
|
||||||
|
else:
|
||||||
|
dat = int(dat)
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_sample_rate: {0}".format(dat))
|
||||||
|
|
||||||
|
return dat
|
||||||
|
|
||||||
|
def get_chan0_raw():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the data from the file
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+RAW_VOLTAGE_CHAN0_FILE,"r")
|
||||||
|
dat = f.readline()
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
dat = float(dat.strip())
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_chan0_raw: {0}".format(dat))
|
||||||
|
|
||||||
|
return dat
|
||||||
|
|
||||||
|
def get_chan1_raw():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the data from the file
|
||||||
|
f = open(LRADC_BASE_DEVICE_FILE+RAW_VOLTAGE_CHAN1_FILE,"r")
|
||||||
|
dat = f.readline()
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
dat = float(dat.strip())
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_chan1_raw: {0}".format(dat))
|
||||||
|
|
||||||
|
return dat
|
||||||
|
|
||||||
|
def get_chan0():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the raw data first
|
||||||
|
dat = get_chan0_raw()
|
||||||
|
# Apply scale factor
|
||||||
|
dat *= SCALE_FACTOR
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_chan0: {0}".format(dat))
|
||||||
|
|
||||||
|
return dat
|
||||||
|
|
||||||
|
def get_chan1():
|
||||||
|
# If we do not have a device, lets throw an exception
|
||||||
|
if not DEVICE_EXIST:
|
||||||
|
raise Exception("LRADC Device does not exist")
|
||||||
|
|
||||||
|
# Get the raw data first
|
||||||
|
dat = get_chan1_raw()
|
||||||
|
# Apply scale factor
|
||||||
|
dat *= SCALE_FACTOR
|
||||||
|
|
||||||
|
# Debug
|
||||||
|
if DEBUG:
|
||||||
|
print("lradc.get_chan1: {0}".format(dat))
|
||||||
|
|
||||||
|
return dat
|
||||||
|
|
||||||
|
|
@ -1,3 +1,22 @@
|
|||||||
|
# Copyright (c) 2016 Robert Wolterman
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
# this software and associated documentation files (the "Software"), to deal in
|
||||||
|
# the Software without restriction, including without limitation the rights to
|
||||||
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
# of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
# so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
|
# copies or substantial portions of the Software.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import time
|
import time
|
||||||
@ -5,11 +24,11 @@ import time
|
|||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
|
||||||
OVERLAYINSTALLPATH = "/lib/firmware/chip_io"
|
OVERLAYINSTALLPATH = "/lib/firmware/chip_io"
|
||||||
|
SPIINSTALLPATH = "/lib/firmware/nextthingco/chip"
|
||||||
OVERLAYCONFIGPATH = "/sys/kernel/config/device-tree/overlays"
|
OVERLAYCONFIGPATH = "/sys/kernel/config/device-tree/overlays"
|
||||||
CUSTOMOVERLAYFILEPATH = ""
|
CUSTOMOVERLAYFILEPATH = ""
|
||||||
|
|
||||||
PWMSYSFSPATH = "/sys/class/pwm/pwmchip0"
|
PWMSYSFSPATH = "/sys/class/pwm/pwmchip0"
|
||||||
I2C1SYSFSPATH = "/sys/class/i2c-dev/i2c-1"
|
|
||||||
# USING THE BASE DIRECTORY FOR SPI AS THE DEVICE NUMBER CHANGES ON LOAD/UNLOAD
|
# USING THE BASE DIRECTORY FOR SPI AS THE DEVICE NUMBER CHANGES ON LOAD/UNLOAD
|
||||||
SPI2SYSFSPATH = "/sys/class/spi_master/"
|
SPI2SYSFSPATH = "/sys/class/spi_master/"
|
||||||
|
|
||||||
@ -17,36 +36,29 @@ SPI2SYSFSPATH = "/sys/class/spi_master/"
|
|||||||
# DO NOT MODIFY BY HAND WHEN USING
|
# DO NOT MODIFY BY HAND WHEN USING
|
||||||
# AS IT COULD BREAK FUNCTIONALITY
|
# AS IT COULD BREAK FUNCTIONALITY
|
||||||
_LOADED = {
|
_LOADED = {
|
||||||
"I2C1" : False,
|
|
||||||
"SPI2" : False,
|
"SPI2" : False,
|
||||||
"PWM0" : False,
|
"PWM0" : False,
|
||||||
"CUST" : False
|
"CUST" : False
|
||||||
}
|
}
|
||||||
|
|
||||||
_OVERLAYS = {
|
_OVERLAYS = {
|
||||||
"I2C1" : "chip-i2c1.dtbo",
|
"SPI2" : "sample-spi.dtbo",
|
||||||
"SPI2" : "chip-spi2.dtbo",
|
|
||||||
"PWM0" : "chip-pwm0.dtbo",
|
"PWM0" : "chip-pwm0.dtbo",
|
||||||
"CUST" : ""
|
"CUST" : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
_FOLDERS = {
|
_FOLDERS = {
|
||||||
"I2C1" : "chip-i2c",
|
|
||||||
"SPI2" : "chip-spi",
|
"SPI2" : "chip-spi",
|
||||||
"PWM0" : "chip-pwm",
|
"PWM0" : "chip-pwm",
|
||||||
"CUST" : "chip-cust"
|
"CUST" : "chip-cust"
|
||||||
}
|
}
|
||||||
|
|
||||||
def enable_debug():
|
def toggle_debug():
|
||||||
global DEBUG
|
global DEBUG
|
||||||
DEBUG = True
|
if DEBUG:
|
||||||
|
DEBUG = False
|
||||||
def get_i2c_loaded():
|
else:
|
||||||
"""
|
DEBUG = True
|
||||||
get_i2c_loaded - Returns True/False based upon if the i2c-1 Overlay is loaded
|
|
||||||
"""
|
|
||||||
global _LOADED
|
|
||||||
return _LOADED["I2C1"]
|
|
||||||
|
|
||||||
def get_spi_loaded():
|
def get_spi_loaded():
|
||||||
"""
|
"""
|
||||||
@ -104,15 +116,6 @@ def _set_overlay_verify(name, overlay_path, config_path):
|
|||||||
if DEBUG:
|
if DEBUG:
|
||||||
print("ERROR LOAIDNG PWM0")
|
print("ERROR LOAIDNG PWM0")
|
||||||
return 1
|
return 1
|
||||||
elif name == "I2C1":
|
|
||||||
if os.path.exists(I2C1SYSFSPATH):
|
|
||||||
if DEBUG:
|
|
||||||
print("I2C-1 IS LOADED!")
|
|
||||||
return 0
|
|
||||||
else:
|
|
||||||
if DEBUG:
|
|
||||||
print("ERROR LOADING I2C-1")
|
|
||||||
return 1
|
|
||||||
elif name == "SPI2":
|
elif name == "SPI2":
|
||||||
if os.listdir(SPI2SYSFSPATH) != "":
|
if os.listdir(SPI2SYSFSPATH) != "":
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
@ -128,7 +131,7 @@ def load(overlay, path=""):
|
|||||||
load - Load a DTB Overlay
|
load - Load a DTB Overlay
|
||||||
|
|
||||||
Inputs:
|
Inputs:
|
||||||
overlay - Overlay Key: I2C1, SPI2, PWM0, CUST
|
overlay - Overlay Key: SPI2, PWM0, CUST
|
||||||
path - Full Path to where the custom overlay is stored
|
path - Full Path to where the custom overlay is stored
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
@ -158,7 +161,11 @@ def load(overlay, path=""):
|
|||||||
|
|
||||||
# SET UP THE OVERLAY PATH FOR OUR USE
|
# SET UP THE OVERLAY PATH FOR OUR USE
|
||||||
if overlay.upper() != "CUST":
|
if overlay.upper() != "CUST":
|
||||||
opath = OVERLAYINSTALLPATH + "/" + _OVERLAYS[overlay.upper()]
|
opath = OVERLAYINSTALLPATH
|
||||||
|
# IF THE OVERLAY IS SPI, USE THE NTC PATH
|
||||||
|
if overlay.upper() == "SPI2":
|
||||||
|
opath = SPIINSTALLPATH
|
||||||
|
opath += "/" + _OVERLAYS[overlay.upper()]
|
||||||
else:
|
else:
|
||||||
opath = path
|
opath = path
|
||||||
if DEBUG:
|
if DEBUG:
|
||||||
@ -168,10 +175,6 @@ def load(overlay, path=""):
|
|||||||
print("PWM0 Overlay already loaded")
|
print("PWM0 Overlay already loaded")
|
||||||
return 2
|
return 2
|
||||||
|
|
||||||
if overlay.upper() == "I2C1" and _LOADED[overlay.upper()]:
|
|
||||||
print("I2C1 Overlay already loaded")
|
|
||||||
return 2
|
|
||||||
|
|
||||||
if overlay.upper() == "SPI2" and _LOADED[overlay.upper()]:
|
if overlay.upper() == "SPI2" and _LOADED[overlay.upper()]:
|
||||||
print("SPI2 Overlay already loaded")
|
print("SPI2 Overlay already loaded")
|
||||||
return 2
|
return 2
|
||||||
@ -184,7 +187,7 @@ def load(overlay, path=""):
|
|||||||
_LOADED[overlay.upper()] = True
|
_LOADED[overlay.upper()] = True
|
||||||
|
|
||||||
else:
|
else:
|
||||||
raise ValueError("Invalid Overlay name specified! Choose between: I2C1, SPI2, PWM0, CUST")
|
raise ValueError("Invalid Overlay name specified! Choose between: SPI2, PWM0, CUST")
|
||||||
|
|
||||||
def unload(overlay):
|
def unload(overlay):
|
||||||
global DEBUG
|
global DEBUG
|
||||||
@ -197,6 +200,6 @@ def unload(overlay):
|
|||||||
os.system('rmdir \"{}\"'.format(OVERLAYCONFIGPATH + "/" + _FOLDERS[overlay.upper()]))
|
os.system('rmdir \"{}\"'.format(OVERLAYCONFIGPATH + "/" + _FOLDERS[overlay.upper()]))
|
||||||
_LOADED[overlay.upper()] = False
|
_LOADED[overlay.upper()] = False
|
||||||
else:
|
else:
|
||||||
raise ValueError("Invalid Overlay name specified! Choose between: I2C1, SPI2, PWM0, CUST")
|
raise ValueError("Invalid Overlay name specified! Choose between: SPI2, PWM0, CUST")
|
||||||
|
|
||||||
|
|
||||||
|
103
CHIP_IO/Utilities.py
Normal file
103
CHIP_IO/Utilities.py
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
# Copyright (c) 2016 Robert Wolterman
|
||||||
|
#
|
||||||
|
# Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
# this software and associated documentation files (the "Software"), to deal in
|
||||||
|
# the Software without restriction, including without limitation the rights to
|
||||||
|
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
# of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
# so, subject to the following conditions:
|
||||||
|
#
|
||||||
|
# The above copyright notice and this permission notice shall be included in all
|
||||||
|
# copies or substantial portions of the Software.
|
||||||
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
# SOFTWARE.
|
||||||
|
|
||||||
|
# CHIP_IO Utilities
|
||||||
|
# Random functions to enable fun stuff on the CHIP!
|
||||||
|
|
||||||
|
# Credit goes to nonokuono (https://bbs.nextthing.co/users/nonokunono)
|
||||||
|
# for gathering the i2cset commands from the AXP-209 datasheet for 2.0, 2.6, and 3.3V output
|
||||||
|
# and for figuring out the ADC setup on the AXP-209
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
import glob
|
||||||
|
import re
|
||||||
|
|
||||||
|
# Global Variables
|
||||||
|
DEBUG = False
|
||||||
|
|
||||||
|
def toggle_debug():
|
||||||
|
global DEBUG
|
||||||
|
if DEBUG:
|
||||||
|
DEBUG = False
|
||||||
|
else:
|
||||||
|
DEBUG = True
|
||||||
|
|
||||||
|
# Set the 1.8V-pin on the CHIP U13-header to given voltage
|
||||||
|
# Return False on error
|
||||||
|
def set_1v8_pin_voltage(voltage):
|
||||||
|
if not isinstance(voltage, int) and not isinstance(voltage, float):
|
||||||
|
return False
|
||||||
|
if voltage < 1.8 or voltage > 3.3:
|
||||||
|
return False
|
||||||
|
if DEBUG:
|
||||||
|
print("Setting 1.8V Pin voltage: {0}".format(voltage))
|
||||||
|
voltage=int(round((voltage - 1.8) / 0.1)) << 4
|
||||||
|
if subprocess.call(["/usr/sbin/i2cset", "-f", "-y" ,"0", "0x34", "0x90", "0x03"]):
|
||||||
|
if DEBUG:
|
||||||
|
print("Pin enable command failed")
|
||||||
|
return False
|
||||||
|
if subprocess.call(["/usr/sbin/i2cset", "-f", "-y", "0", "0x34", "0x91", str(voltage)]):
|
||||||
|
if DEBUG:
|
||||||
|
print("Pin set voltage command failed")
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
# Get the voltage the 1.8V-pin on the CHIP U13-header has been configured as
|
||||||
|
# Return False on error
|
||||||
|
def get_1v8_pin_voltage():
|
||||||
|
p=subprocess.Popen(["/usr/sbin/i2cget", "-f", "-y", "0", "0x34", "0x90"], stdout=subprocess.PIPE)
|
||||||
|
output=p.communicate()[0].decode("utf-8").strip()
|
||||||
|
#Not configured as an output
|
||||||
|
if output != "0x03":
|
||||||
|
if DEBUG:
|
||||||
|
print("1.8V Pin is currently disabled")
|
||||||
|
return False
|
||||||
|
p=subprocess.Popen(["/usr/sbin/i2cget", "-f", "-y", "0", "0x34", "0x91"], stdout=subprocess.PIPE)
|
||||||
|
output=p.communicate()[0].decode("utf-8").strip()
|
||||||
|
voltage=round((int(output, 16) >> 4) * 0.1 + 1.8, 1)
|
||||||
|
if DEBUG:
|
||||||
|
print("Current 1.8V Pin voltage: {0}".format(voltage))
|
||||||
|
return voltage
|
||||||
|
|
||||||
|
# Enable 1.8V Pin on CHIP U13 Header
|
||||||
|
def enable_1v8_pin():
|
||||||
|
set_1v8_pin_voltage(1.8)
|
||||||
|
|
||||||
|
# Disable 1.8V Pin on CHIP U13 Header
|
||||||
|
def disable_1v8_pin():
|
||||||
|
if DEBUG:
|
||||||
|
print("Disabling the 1.8V Pin")
|
||||||
|
# CANNOT USE I2C LIB AS WE NEED TO FORCE THE COMMAND DUE TO THE KERNEL OWNING THE DEVICE
|
||||||
|
# First we have to write 0x05 to AXP-209 Register 0x91
|
||||||
|
subprocess.call('/usr/sbin/i2cset -f -y 0 0x34 0x91 0x05', shell=True)
|
||||||
|
# Then we have to write 0x07 to AXP-209 Register 0x90
|
||||||
|
subprocess.call('/usr/sbin/i2cset -f -y 0 0x34 0x90 0x07', shell=True)
|
||||||
|
|
||||||
|
# Unexport All
|
||||||
|
def unexport_all():
|
||||||
|
if DEBUG:
|
||||||
|
print("Unexporting all the pins")
|
||||||
|
gpios = glob.glob("/sys/class/gpio/gpio[0-9]*")
|
||||||
|
for g in gpios:
|
||||||
|
tmp = g.split("/")
|
||||||
|
gpio = tmp[4]
|
||||||
|
num = re.sub("[a-z]","",gpio)
|
||||||
|
cmd = "echo " + num + " > /sys/class/gpio/unexport"
|
||||||
|
subprocess.Popen(cmd,shell=True, stdout=subprocess.PIPE)
|
||||||
|
|
10
Makefile
10
Makefile
@ -1,12 +1,12 @@
|
|||||||
time:
|
package: clean
|
||||||
/usr/bin/ntpdate -b -s -u pool.ntp.org
|
python setup.py sdist
|
||||||
|
|
||||||
publish: clean
|
publish: package
|
||||||
python setup.py sdist upload
|
twine upload dist/*
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf CHIP_IO.* build dist
|
rm -rf CHIP_IO.* build dist
|
||||||
rm -f *.pyo
|
rm -f *.pyo *.pyc
|
||||||
rm -f *.egg
|
rm -f *.egg
|
||||||
rm -f overlays/*.pyo overlays/*.pyc
|
rm -f overlays/*.pyo overlays/*.pyc
|
||||||
tests:
|
tests:
|
||||||
|
400
README.rst
400
README.rst
@ -6,9 +6,11 @@ NOTE: Now requires the custom DTC to install the library
|
|||||||
|
|
||||||
Manual::
|
Manual::
|
||||||
|
|
||||||
|
For Python2.7::
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install git build-essential python-dev python-pip flex bison -y
|
sudo apt-get install git build-essential python-dev python-pip flex bison chip-dt-overlays -y
|
||||||
git clone https://github.com/atenart/dtc
|
git clone https://github.com/atenart/dtc.git
|
||||||
cd dtc
|
cd dtc
|
||||||
make
|
make
|
||||||
sudo make install PREFIX=/usr
|
sudo make install PREFIX=/usr
|
||||||
@ -17,7 +19,20 @@ Manual::
|
|||||||
cd CHIP_IO
|
cd CHIP_IO
|
||||||
sudo python setup.py install
|
sudo python setup.py install
|
||||||
cd ..
|
cd ..
|
||||||
sudo rm -rf CHIP_IO
|
|
||||||
|
For Python3::
|
||||||
|
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install git build-essential python3-dev python3-pip flex bison chip-dt-overlays -y
|
||||||
|
git clone https://github.com/atenart/dtc.git
|
||||||
|
cd dtc
|
||||||
|
make
|
||||||
|
sudo make install PREFIX=/usr
|
||||||
|
cd ..
|
||||||
|
git clone git://github.com/xtacocorex/CHIP_IO.git
|
||||||
|
cd CHIP_IO
|
||||||
|
sudo python3 setup.py install
|
||||||
|
cd ..
|
||||||
|
|
||||||
**Usage**
|
**Usage**
|
||||||
|
|
||||||
@ -27,115 +42,115 @@ All scripts that require GPIO, PWM (HW and/or SW), and Overlay Manager need to b
|
|||||||
|
|
||||||
**Allowable Pin Names for the Library**
|
**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 |
|
| TWI1-SDA | KPD-I2C-SDA | U13_9 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| TWI1-SCK | KPD-I2C-SCL | U13_11 |
|
| TWI1-SCK | KPD-I2C-SCL | U13_11 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D2 | LCD-D2 | U13_17 |
|
| LCD-D2 | LCD-D2 | U13_17 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| PWM0 | PWM0 | U13_18 |
|
| PWM0 | PWM0 | U13_18 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D4 | LCD-D4 | U13_19 |
|
| LCD-D4 | LCD-D4 | U13_19 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D3 | LCD-D3 | U13_20 |
|
| LCD-D3 | LCD-D3 | U13_20 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D6 | LCD-D6 | U13_21 |
|
| LCD-D6 | LCD-D6 | U13_21 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D5 | LCD-D5 | U13_22 |
|
| LCD-D5 | LCD-D5 | U13_22 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D10 | LCD-D10 | U13_23 |
|
| LCD-D10 | LCD-D10 | U13_23 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D7 | LCD-D7 | U13_24 |
|
| LCD-D7 | LCD-D7 | U13_24 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D12 | LCD-D12 | U13_25 |
|
| LCD-D12 | LCD-D12 | U13_25 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D11 | LCD-D11 | U13_26 |
|
| LCD-D11 | LCD-D11 | U13_26 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D14 | LCD-D14 | U13_27 |
|
| LCD-D14 | LCD-D14 | U13_27 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D13 | LCD-D13 | U13_28 |
|
| LCD-D13 | LCD-D13 | U13_28 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D18 | LCD-D18 | U13_29 |
|
| LCD-D18 | LCD-D18 | U13_29 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D15 | LCD-D15 | U13_30 |
|
| LCD-D15 | LCD-D15 | U13_30 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D20 | LCD-D20 | U13_31 |
|
| LCD-D20 | LCD-D20 | U13_31 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D19 | LCD-D19 | U13_32 |
|
| LCD-D19 | LCD-D19 | U13_32 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D22 | LCD-D22 | U13_33 |
|
| LCD-D22 | LCD-D22 | U13_33 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D21 | LCD-D21 | U13_34 |
|
| LCD-D21 | LCD-D21 | U13_34 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-CLK | LCD-CLK | U13_35 |
|
| LCD-CLK | LCD-CLK | U13_35 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-D23 | LCD-D23 | U13_36 |
|
| LCD-D23 | LCD-D23 | U13_36 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-VSYNC | LCD-VSYNC | U13_37 |
|
| LCD-VSYNC | LCD-VSYNC | U13_37 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-HSYNC | LCD-HSYNC | U13_38 |
|
| LCD-HSYNC | LCD-HSYNC | U13_38 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LCD-DE | LCD-DE | U13_40 |
|
| LCD-DE | LCD-DE | U13_40 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| UART1-TX | UART-TX | U14_3 |
|
| UART1-TX | UART-TX | U14_3 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| UART1-RX | UART-RX | U14_5 |
|
| UART1-RX | UART-RX | U14_5 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| LRADC | ADC | U14_11 |
|
| LRADC | ADC | U14_11 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P0 | XIO-P0 | U14_13 |
|
| XIO-P0 | XIO-P0 | U14_13 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P1 | XIO-P1 | U14_14 |
|
| XIO-P1 | XIO-P1 | U14_14 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P2 | GPIO1 | U14_15 |
|
| XIO-P2 | GPIO1 | U14_15 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P3 | GPIO2 | U14_16 |
|
| XIO-P3 | GPIO2 | U14_16 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P4 | GPIO3 | U14_17 |
|
| XIO-P4 | GPIO3 | U14_17 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P5 | GPIO4 | U14_18 |
|
| XIO-P5 | GPIO4 | U14_18 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P6 | GPIO5 | U14_19 |
|
| XIO-P6 | GPIO5 | U14_19 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| XIO-P7 | GPIO6 | U14_20 |
|
| XIO-P7 | GPIO6 | U14_20 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| AP-EINT1 | KPD-INT | U14_23 |
|
| AP-EINT1 | KPD-INT | U14_23 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| AP-EINT3 | AP-INT3 | U14_24 |
|
| AP-EINT3 | AP-INT3 | U14_24 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| TWI2-SDA | I2C-SDA | U14_25 |
|
| TWI2-SDA | I2C-SDA | U14_25 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| TWI2-SCK | I2C-SCL | U14_26 |
|
| TWI2-SCK | I2C-SCL | U14_26 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSIPCK | SPI-SEL | U14_27 |
|
| CSIPCK | SPI-SEL | U14_27 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSICK | SPI-CLK | U14_28 |
|
| CSICK | SPI-CLK | U14_28 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSIHSYNC | SPI-MOSI | U14_29 |
|
| CSIHSYNC | SPI-MOSI | U14_29 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSIVSYNC | SPI-MISO | U14_30 |
|
| CSIVSYNC | SPI-MISO | U14_30 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID0 | CSID0 | U14_31 |
|
| CSID0 | CSID0 | U14_31 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID1 | CSID1 | U14_32 |
|
| CSID1 | CSID1 | U14_32 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID2 | CSID2 | U14_33 |
|
| CSID2 | CSID2 | U14_33 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID3 | CSID3 | U14_34 |
|
| CSID3 | CSID3 | U14_34 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID4 | CSID4 | U14_35 |
|
| CSID4 | CSID4 | U14_35 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID5 | CSID5 | U14_36 |
|
| CSID5 | CSID5 | U14_36 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID6 | CSID6 | U14_37 |
|
| CSID6 | CSID6 | U14_37 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
| CSID7 | CSID7 | U14_38 |
|
| CSID7 | CSID7 | U14_38 |
|
||||||
+-----------+-------------+--------+
|
+------------------+--------------------------+--------+
|
||||||
|
|
||||||
**GPIO Setup**
|
**GPIO Setup**
|
||||||
|
|
||||||
@ -152,6 +167,13 @@ You can also refer to the bin based upon its alternate name::
|
|||||||
|
|
||||||
GPIO.setup("GPIO1", GPIO.IN)
|
GPIO.setup("GPIO1", GPIO.IN)
|
||||||
|
|
||||||
|
**GPIO Debug**
|
||||||
|
|
||||||
|
Debug can be enabled/disabled by the following command::
|
||||||
|
|
||||||
|
# Enable Debug
|
||||||
|
GPIO.toggle_debug()
|
||||||
|
|
||||||
**GPIO Output**
|
**GPIO Output**
|
||||||
|
|
||||||
Setup the pin for output, and write GPIO.HIGH or GPIO.LOW. Or you can use 1 or 0.::
|
Setup the pin for output, and write GPIO.HIGH or GPIO.LOW. Or you can use 1 or 0.::
|
||||||
@ -167,17 +189,35 @@ Inputs work similarly to outputs.::
|
|||||||
import CHIP_IO.GPIO as GPIO
|
import CHIP_IO.GPIO as GPIO
|
||||||
GPIO.setup("CSID0", GPIO.IN)
|
GPIO.setup("CSID0", GPIO.IN)
|
||||||
|
|
||||||
|
Other options when setting up pins::
|
||||||
|
|
||||||
|
# Specify pull up/pull down settings on a pin
|
||||||
|
GPIO.setup("CSID0", GPIO.IN, pull_up_down=GPIO.PUD_UP)
|
||||||
|
# Specify initial value for an output
|
||||||
|
GPIO.setup("CSID0", GPIO.OUT, initial=1)
|
||||||
|
|
||||||
|
Pull Up/Down values are only for pins that are provided by the R8, the XIO are not capable of this. The allowable values are: PUD_OFF, PUD_UP, and PUD_DOWN.
|
||||||
|
|
||||||
Polling inputs::
|
Polling inputs::
|
||||||
|
|
||||||
if GPIO.input("CSID0"):
|
if GPIO.input("CSID0"):
|
||||||
print("HIGH")
|
print("HIGH")
|
||||||
else:
|
else:
|
||||||
print("LOW")
|
print("LOW")
|
||||||
|
|
||||||
|
Read lots of data::
|
||||||
|
|
||||||
|
# Get 8 bits of data in one shot
|
||||||
|
mybyte = GPIO.read_byte("LCD-D3")
|
||||||
|
# Get 16 bits of data in one shot
|
||||||
|
myword = GPIO.read_word("XIO-P4")
|
||||||
|
|
||||||
|
This code was initially added by brettcvz and I cleaned it up and expanded it.
|
||||||
|
|
||||||
|
The edge detection code below only works for the AP-EINT1, AP-EINT3, and XPO Pins on the CHIP.
|
||||||
|
|
||||||
Waiting for an edge (GPIO.RISING, GPIO.FALLING, or GPIO.BOTH::
|
Waiting for an edge (GPIO.RISING, GPIO.FALLING, or GPIO.BOTH::
|
||||||
|
|
||||||
This only works for the AP-EINT1, AP-EINT3, and XPO Pins on the CHIP
|
|
||||||
|
|
||||||
GPIO.wait_for_edge(channel, GPIO.RISING)
|
GPIO.wait_for_edge(channel, GPIO.RISING)
|
||||||
|
|
||||||
Detecting events::
|
Detecting events::
|
||||||
@ -187,54 +227,119 @@ Detecting events::
|
|||||||
#your amazing code here
|
#your amazing code here
|
||||||
#detect wherever:
|
#detect wherever:
|
||||||
if GPIO.event_detected("XIO-P0"):
|
if GPIO.event_detected("XIO-P0"):
|
||||||
print "event detected!"
|
print "event detected!"
|
||||||
|
|
||||||
|
CHIP_IO can also handle adding callback functions on any pin that supports edge detection.::
|
||||||
|
|
||||||
|
def mycallback(channel):
|
||||||
|
print("we hit the edge we want")
|
||||||
|
|
||||||
|
GPIO.setup("GPIO3", GPIO.IN)
|
||||||
|
# Add Callback: Falling Edge
|
||||||
|
GPIO.add_event_callback("GPIO3", GPIO.FALLING, mycallback)
|
||||||
|
# Add Callback: Rising Edge
|
||||||
|
GPIO.add_event_callback("GPIO3", GPIO.RISING, mycallback)
|
||||||
|
# Add Callback: Both Edges
|
||||||
|
GPIO.add_event_callback("GPIO3", GPIO.BOTH, mycallback)
|
||||||
|
# Remove callback
|
||||||
|
GPIO.remove_event_detect("GPIO3")
|
||||||
|
|
||||||
|
|
||||||
**GPIO Cleanup**
|
**GPIO Cleanup**
|
||||||
|
|
||||||
To clean up the GPIO when done, do the following::
|
To clean up the GPIO when done, do the following::
|
||||||
|
|
||||||
|
# Clean up every exported GPIO Pin
|
||||||
GPIO.cleanup()
|
GPIO.cleanup()
|
||||||
|
# Clean up a single pin (keeping everything else intact)
|
||||||
|
GPIO.cleanup("XIO-P0")
|
||||||
|
|
||||||
**PWM**::
|
**PWM**::
|
||||||
|
|
||||||
Hardware PWM requires a DTB Overlay loaded on the CHIP to allow the kernel to know there is a PWM device available to use.
|
Hardware PWM requires a DTB Overlay loaded on the CHIP to allow the kernel to know there is a PWM device available to use.
|
||||||
|
::
|
||||||
import CHIP_IO.PWM as PWM
|
import CHIP_IO.PWM as PWM
|
||||||
|
# Enable/Disable Debug
|
||||||
|
PWM.toggle_debug()
|
||||||
#PWM.start(channel, duty, freq=2000, polarity=0)
|
#PWM.start(channel, duty, freq=2000, polarity=0)
|
||||||
#duty values are valid 0 (off) to 100 (on)
|
#duty values are valid 0 (off) to 100 (on)
|
||||||
PWM.start("PWM0", 50)
|
PWM.start("PWM0", 50)
|
||||||
PWM.set_duty_cycle("PWM0", 25.5)
|
PWM.set_duty_cycle("PWM0", 25.5)
|
||||||
PWM.set_frequency("PWM0", 10)
|
PWM.set_frequency("PWM0", 10)
|
||||||
|
# To stop PWM
|
||||||
PWM.stop("PWM0")
|
PWM.stop("PWM0")
|
||||||
PWM.cleanup()
|
PWM.cleanup()
|
||||||
|
#For specific polarity: this example sets polarity to 1 on start:
|
||||||
#set polarity to 1 on start:
|
|
||||||
PWM.start("PWM0", 50, 2000, 1)
|
PWM.start("PWM0", 50, 2000, 1)
|
||||||
|
|
||||||
**SOFTPWM**::
|
**SOFTPWM**::
|
||||||
|
|
||||||
import CHIP_IO.SOFTPWM as SPWM
|
import CHIP_IO.SOFTPWM as SPWM
|
||||||
|
# Enable/Disable Debug
|
||||||
|
SPWM.toggle_debug()
|
||||||
#SPWM.start(channel, duty, freq=2000, polarity=0)
|
#SPWM.start(channel, duty, freq=2000, polarity=0)
|
||||||
#duty values are valid 0 (off) to 100 (on)
|
#duty values are valid 0 (off) to 100 (on)
|
||||||
#you can choose any pin
|
#you can choose any pin
|
||||||
SPWM.start("XIO-P7", 50)
|
SPWM.start("XIO-P7", 50)
|
||||||
SPWM.set_duty_cycle("XIO-P7", 25.5)
|
SPWM.set_duty_cycle("XIO-P7", 25.5)
|
||||||
SPWM.set_frequency("XIO-P7", 10)
|
SPWM.set_frequency("XIO-P7", 10)
|
||||||
|
# To Stop SPWM
|
||||||
SPWM.stop("XIO-P7")
|
SPWM.stop("XIO-P7")
|
||||||
|
# Cleanup
|
||||||
SPWM.cleanup()
|
SPWM.cleanup()
|
||||||
|
#For specific polarity: this example sets polarity to 1 on start:
|
||||||
#set polarity to 1 on start:
|
|
||||||
SPWM.start("XIO-P7", 50, 2000, 1)
|
SPWM.start("XIO-P7", 50, 2000, 1)
|
||||||
|
|
||||||
Use SOFTPWM at low speeds (hundreds of Hz) for the best results. Do not use for anything that needs high precision or reliability.
|
Use SOFTPWM at low speeds (hundreds of Hz) for the best results. Do not use for anything that needs high precision or reliability.
|
||||||
|
|
||||||
If using SOFTPWM and PWM at the same time, import CHIP_IO.SOFTPWM as SPWM or something different than PWM as to not confuse the library.
|
If using SOFTPWM and PWM at the same time, import CHIP_IO.SOFTPWM as SPWM or something different than PWM as to not confuse the library.
|
||||||
|
|
||||||
**ADC**::
|
**SERVO**::
|
||||||
|
|
||||||
Not Implemented yet
|
import CHIP_IO.SERVO as SERVO
|
||||||
|
# Enable/Disable Debug
|
||||||
|
SERVO.toggle_debug()
|
||||||
|
#SPWM.start(channel, angle=0, range=180)
|
||||||
|
#angle values are between +/- range/2)
|
||||||
|
#you can choose any pin except the XIO's
|
||||||
|
SERVO.start("CSID4", 50)
|
||||||
|
SERVO.set_angle("CSID4", 25.5)
|
||||||
|
SERVO.set_range("CSID4", 90)
|
||||||
|
# To Stop Servo
|
||||||
|
SERVO.stop("CSID4")
|
||||||
|
# Cleanup
|
||||||
|
SERVO.cleanup()
|
||||||
|
|
||||||
|
The Software Servo control only works on the LCD and CSI pins. The XIO is too slow to control.
|
||||||
|
|
||||||
|
**LRADC**::
|
||||||
|
|
||||||
|
The LRADC was enabled in the 4.4.13-ntc-mlc. This is a 6 bit ADC that is 2 Volt tolerant.
|
||||||
|
Sample code below details how to talk to the LRADC.::
|
||||||
|
|
||||||
|
import CHIP_IO.LRADC as ADC
|
||||||
|
# Enable/Disable Debug
|
||||||
|
ADC.toggle_debug()
|
||||||
|
# Check to see if the LRADC Device exists
|
||||||
|
# Returns True/False
|
||||||
|
ADC.get_device_exists()
|
||||||
|
# Setup the LRADC
|
||||||
|
# Specify a sampling rate if needed
|
||||||
|
ADC.setup(rate)
|
||||||
|
# Get the Scale Factor
|
||||||
|
factor = ADC.get_scale_factor()
|
||||||
|
# Get the allowable Sampling Rates
|
||||||
|
sampleratestuple = ADC.get_allowable_sample_rates()
|
||||||
|
# Set the sampling rate
|
||||||
|
ADC.set_sample_rate(rate)
|
||||||
|
# Get the current sampling rate
|
||||||
|
currentrate = ADC.get_sample_rate()
|
||||||
|
# Get the Raw Channel 0 or 1 data
|
||||||
|
raw = ADC.get_chan0_raw()
|
||||||
|
raw = ADC.get_chan1_raw()
|
||||||
|
# Get the factored ADC Channel data
|
||||||
|
fulldata = ADC.get_chan0()
|
||||||
|
fulldata = ADC.get_chan1()
|
||||||
|
|
||||||
**SPI**::
|
**SPI**::
|
||||||
|
|
||||||
@ -246,22 +351,21 @@ The Overlay Manager enables you to quickly load simple Device Tree Overlays. Th
|
|||||||
PWM0, SPI2, I2C1, CUST
|
PWM0, SPI2, I2C1, CUST
|
||||||
|
|
||||||
Only one of each type of overlay can be loaded at a time, but all three options can be loaded simultaneously. So you can have SPI2 and I2C1 without PWM0, but you cannot have SPI2 loaded twice.
|
Only one of each type of overlay can be loaded at a time, but all three options can be loaded simultaneously. So you can have SPI2 and I2C1 without PWM0, but you cannot have SPI2 loaded twice.
|
||||||
|
::
|
||||||
import CHIP_IO.OverlayManager as OM
|
import CHIP_IO.OverlayManager as OM
|
||||||
# The enable_debug() function turns on debug printing
|
# The toggle_debug() function turns on/off debug printing
|
||||||
#OM.enable_debug()
|
#OM.toggle_debug()
|
||||||
# To load an overlay, feed in the name to load()
|
# To load an overlay, feed in the name to load()
|
||||||
OM.load("PWM0")
|
OM.load("PWM0")
|
||||||
# To verify the overlay was properly loaded, the get_ functions return booleans
|
# To verify the overlay was properly loaded, the get_ functions return booleans
|
||||||
OM.get_pwm_loaded()
|
OM.get_pwm_loaded()
|
||||||
OM.get_i2c_loaded()
|
|
||||||
OM.get_spi_loaded()
|
OM.get_spi_loaded()
|
||||||
# To unload an overlay, feed in the name to unload()
|
# To unload an overlay, feed in the name to unload()
|
||||||
OM.unload("PWM0")
|
OM.unload("PWM0")
|
||||||
|
|
||||||
To use a custom overlay, you must build and compile it properly per the DIP Docs: http://docs.getchip.com/dip.html#development-by-example
|
To use a custom overlay, you must build and compile it properly per the DIP Docs: http://docs.getchip.com/dip.html#development-by-example
|
||||||
There is no verification that the Custom Overlay is setup properly, it's fire and forget
|
There is no verification that the Custom Overlay is setup properly, it's fire and forget
|
||||||
|
::
|
||||||
import CHIP_IO.OverlayManager as OM
|
import CHIP_IO.OverlayManager as OM
|
||||||
# The full path to the dtbo file needs to be specified
|
# The full path to the dtbo file needs to be specified
|
||||||
OM.load("CUST","/home/chip/projects/myfunproject/overlays/mycustomoverlay.dtbo")
|
OM.load("CUST","/home/chip/projects/myfunproject/overlays/mycustomoverlay.dtbo")
|
||||||
@ -270,17 +374,49 @@ There is no verification that the Custom Overlay is setup properly, it's fire an
|
|||||||
# To unload, just call unload()
|
# To unload, just call unload()
|
||||||
OM.unload("CUST")
|
OM.unload("CUST")
|
||||||
|
|
||||||
Note that this requires the 4.4 kernel with the CONFIG_OF_CONFIGFS option enabled in the kernel config.
|
**OverlayManager requires a 4.4 kernel with the CONFIG_OF_CONFIGFS option enabled in the kernel config.**
|
||||||
|
|
||||||
|
**Utilties**::
|
||||||
|
|
||||||
|
CHIP_IO now supports the ability to enable and disable the 1.8V port on U13. This voltage rail isn't enabled during boot.
|
||||||
|
|
||||||
|
To use the utilities, here is sample code::
|
||||||
|
|
||||||
|
import CHIP_IO.Utilities as UT
|
||||||
|
# Enable/Disable Debug
|
||||||
|
UT.toggle_debug()
|
||||||
|
# Enable 1.8V Output
|
||||||
|
UT.enable_1v8_pin()
|
||||||
|
# Set 2.0V Output
|
||||||
|
UT.set_1v8_pin_voltage(2.0)
|
||||||
|
# Set 2.6V Output
|
||||||
|
UT.set_1v8_pin_voltage(2.6)
|
||||||
|
# Set 3.3V Output
|
||||||
|
UT.set_1v8_pin_voltage(3.3)
|
||||||
|
# Disable 1.8V Output
|
||||||
|
UT.disable_1v8_pin()
|
||||||
|
# Get currently-configured voltage (returns False if the pin is not enabled as output)
|
||||||
|
UT.get_1v8_pin_voltage()
|
||||||
|
# Unexport Everything
|
||||||
|
UT.unexport_all()
|
||||||
|
|
||||||
**Running tests**
|
**Running tests**
|
||||||
|
|
||||||
Install py.test to run the tests. You'll also need the python compiler package for py.test.::
|
Install py.test to run the tests. You'll also need the python compiler package for py.test.::
|
||||||
|
|
||||||
|
# Python 2.7
|
||||||
sudo apt-get install python-pytest
|
sudo apt-get install python-pytest
|
||||||
|
# Python 3
|
||||||
|
sudo apt-get install python3-pytest
|
||||||
|
|
||||||
Execute the following in the root of the project::
|
To run the tests, do the following.::
|
||||||
|
|
||||||
|
# If only one version of Python is installed
|
||||||
sudo py.test
|
sudo py.test
|
||||||
|
# If more than one version of Python
|
||||||
|
cd test
|
||||||
|
sudo python2 -m pytest
|
||||||
|
sudo python3 -m pytest
|
||||||
|
|
||||||
**Credits**
|
**Credits**
|
||||||
|
|
||||||
|
@ -2,23 +2,21 @@ from subprocess import call
|
|||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import glob
|
import glob
|
||||||
|
import sys
|
||||||
|
|
||||||
def compile():
|
def compile():
|
||||||
print("Compiling DTS Files")
|
print("Compiling DTS Files")
|
||||||
call(["dtc", "-O", "dtb", "-o", "overlays/chip-spi2.dtbo", "-b", "o", "-@", "overlays/chip-spi2.dts"])
|
|
||||||
call(["dtc", "-O", "dtb", "-o", "overlays/chip-i2c1.dtbo", "-b", "o", "-@", "overlays/chip-i2c1.dts"])
|
|
||||||
call(["dtc", "-O", "dtb", "-o", "overlays/chip-pwm0.dtbo", "-b", "o", "-@", "overlays/chip-pwm0.dts"])
|
call(["dtc", "-O", "dtb", "-o", "overlays/chip-pwm0.dtbo", "-b", "o", "-@", "overlays/chip-pwm0.dts"])
|
||||||
|
|
||||||
def copy():
|
def copy():
|
||||||
|
target_dir = os.environ.get('TARGET_DIR', '')
|
||||||
|
overlay_path = target_dir + "/lib/firmware/chip_io"
|
||||||
print("Checking for DTBO Install Path")
|
print("Checking for DTBO Install Path")
|
||||||
if not os.path.exists("/lib/firmware/chip_io/"):
|
if not os.path.exists(overlay_path):
|
||||||
print("Path not found, creating /lib/firmware/chip_io/")
|
print("Path not found, creating "+overlay_path)
|
||||||
os.makedirs("/lib/firmware/chip_io/")
|
os.makedirs(overlay_path)
|
||||||
print("Removing old DTBO files (if applicable)")
|
print("Removing old DTBO files (if applicable)")
|
||||||
for fl in glob.glob("/lib/firmware/chip_io/chip-*-.dtbo"):
|
for fl in glob.glob(overlay_path+"/chip-*-.dtbo"):
|
||||||
os.remove(fl)
|
os.remove(fl)
|
||||||
print("Moving DTBO files to /lib/firmware/chip_io/")
|
print("Moving DTBO files to "+overlay_path)
|
||||||
shutil.move("overlays/chip-spi2.dtbo", "/lib/firmware/chip_io/chip-spi2.dtbo")
|
shutil.move("overlays/chip-pwm0.dtbo", overlay_path+"/chip-pwm0.dtbo")
|
||||||
shutil.move("overlays/chip-i2c1.dtbo", "/lib/firmware/chip_io/chip-i2c1.dtbo")
|
|
||||||
shutil.move("overlays/chip-pwm0.dtbo", "/lib/firmware/chip_io/chip-pwm0.dtbo")
|
|
||||||
|
|
||||||
|
@ -1,72 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2016 Free Electrons
|
|
||||||
* Copyright 2016 NextThing Co
|
|
||||||
*
|
|
||||||
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
||||||
*
|
|
||||||
* This file is dual-licensed: you can use it either under the terms
|
|
||||||
* of the GPL or the X11 license, at your option. Note that this dual
|
|
||||||
* licensing only applies to this file, and not this project as a
|
|
||||||
* whole.
|
|
||||||
*
|
|
||||||
* a) This file is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation; either version 2 of the
|
|
||||||
* License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This file is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* Or, alternatively,
|
|
||||||
*
|
|
||||||
* b) Permission is hereby granted, free of charge, to any person
|
|
||||||
* obtaining a copy of this software and associated documentation
|
|
||||||
* files (the "Software"), to deal in the Software without
|
|
||||||
* restriction, including without limitation the rights to use,
|
|
||||||
* copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
* sell copies of the Software, and to permit persons to whom the
|
|
||||||
* Software is furnished to do so, subject to the following
|
|
||||||
* conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
||||||
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
||||||
* OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/dts-v1/;
|
|
||||||
/plugin/;
|
|
||||||
|
|
||||||
/ {
|
|
||||||
compatible = "nextthing,chip", "allwinner,sun5i-r8";
|
|
||||||
|
|
||||||
fragment@0 {
|
|
||||||
target-path = "/aliases";
|
|
||||||
__overlay__ {
|
|
||||||
i2c1 = "/soc@01c00000/i2c@01c2b000";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Enable the I2C1 bus and the keyboard */
|
|
||||||
fragment@1 {
|
|
||||||
target = <&i2c1>;
|
|
||||||
|
|
||||||
__overlay__ {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&i2c1_pins_a>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
@ -1,93 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright 2016, Robert Wolterman
|
|
||||||
* This file is an amalgamation of stuff from Kolja Windeler, Maxime Ripard, and Renzo.
|
|
||||||
*
|
|
||||||
* This file is dual-licensed: you can use it either under the terms
|
|
||||||
* of the GPL or the X11 license, at your option. Note that this dual
|
|
||||||
* licensing only applies to this file, and not this project as a
|
|
||||||
* whole.
|
|
||||||
*
|
|
||||||
* a) This file is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation; either version 2 of the
|
|
||||||
* License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This file is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* Or, alternatively,
|
|
||||||
*
|
|
||||||
* b) Permission is hereby granted, free of charge, to any person
|
|
||||||
* obtaining a copy of this software and associated documentation
|
|
||||||
* files (the "Software"), to deal in the Software without
|
|
||||||
* restriction, including without limitation the rights to use,
|
|
||||||
* copy, modify, merge, publish, distribute, sublicense, and/or
|
|
||||||
* sell copies of the Software, and to permit persons to whom the
|
|
||||||
* Software is furnished to do so, subject to the following
|
|
||||||
* conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be
|
|
||||||
* included in all copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
||||||
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
||||||
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
||||||
* OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/dts-v1/;
|
|
||||||
/plugin/;
|
|
||||||
|
|
||||||
/ {
|
|
||||||
compatible = "nextthing,chip", "allwinner,sun5i-r8";
|
|
||||||
|
|
||||||
/* activate the gpio for interrupt */
|
|
||||||
fragment@0 {
|
|
||||||
target-path = <&pio>;
|
|
||||||
|
|
||||||
__overlay__ {
|
|
||||||
chip_spi2_pins: spi2@0 {
|
|
||||||
allwinner,pins = "PE1", "PE2", "PE3";
|
|
||||||
allwinner,function = "spi2";
|
|
||||||
allwinner,drive = "0"; //<SUN4I_PINCTRL_10_MA>;
|
|
||||||
allwinner,pull = "0"; //<SUN4I_PINCTRL_NO_PULL>;
|
|
||||||
};
|
|
||||||
|
|
||||||
chip_spi2_cs0_pins: spi2_cs0@0 {
|
|
||||||
allwinner,pins = "PE0";
|
|
||||||
allwinner,function = "spi2";
|
|
||||||
allwinner,drive = "0"; //<SUN4I_PINCTRL_10_MA>;
|
|
||||||
allwinner,pull = "0"; //<SUN4I_PINCTRL_NO_PULL>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Enable our SPI device, with an spidev device connected
|
|
||||||
* to it
|
|
||||||
*/
|
|
||||||
fragment@1 {
|
|
||||||
target = <&spi2>;
|
|
||||||
|
|
||||||
__overlay__ {
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&chip_spi2_pins>, <&chip_spi2_cs0_pins>;
|
|
||||||
status = "okay";
|
|
||||||
|
|
||||||
spi2@0 {
|
|
||||||
compatible = "rohm,dh2228fv";
|
|
||||||
reg = <0>;
|
|
||||||
spi-max-frequency = <24000000>;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
5
setup.py
5
setup.py
@ -20,7 +20,7 @@ classifiers = ['Development Status :: 3 - Alpha',
|
|||||||
'Topic :: System :: Hardware']
|
'Topic :: System :: Hardware']
|
||||||
|
|
||||||
setup(name = 'CHIP_IO',
|
setup(name = 'CHIP_IO',
|
||||||
version = '0.2.1',
|
version = '0.4.0',
|
||||||
author = 'Robert Wolterman',
|
author = 'Robert Wolterman',
|
||||||
author_email = 'robert.wolterman@gmail.com',
|
author_email = 'robert.wolterman@gmail.com',
|
||||||
description = 'A module to control CHIP IO channels',
|
description = 'A module to control CHIP IO channels',
|
||||||
@ -32,5 +32,6 @@ setup(name = 'CHIP_IO',
|
|||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
ext_modules = [Extension('CHIP_IO.GPIO', ['source/py_gpio.c', 'source/event_gpio.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
ext_modules = [Extension('CHIP_IO.GPIO', ['source/py_gpio.c', 'source/event_gpio.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
||||||
Extension('CHIP_IO.PWM', ['source/py_pwm.c', 'source/c_pwm.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
Extension('CHIP_IO.PWM', ['source/py_pwm.c', 'source/c_pwm.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
||||||
Extension('CHIP_IO.SOFTPWM', ['source/py_softpwm.c', 'source/c_softpwm.c', 'source/constants.c', 'source/common.c', 'source/event_gpio.c'], extra_compile_args=['-Wno-format-security'])]) #,
|
Extension('CHIP_IO.SOFTPWM', ['source/py_softpwm.c', 'source/c_softpwm.c', 'source/constants.c', 'source/common.c', 'source/event_gpio.c'], extra_compile_args=['-Wno-format-security']),
|
||||||
|
Extension('CHIP_IO.SERVO', ['source/py_servo.c', 'source/c_softservo.c', 'source/constants.c', 'source/common.c', 'source/event_gpio.c'], extra_compile_args=['-Wno-format-security'])]) #,
|
||||||
# Extension('CHIP_IO.ADC', ['source/py_adc.c', 'source/c_adc.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
# Extension('CHIP_IO.ADC', ['source/py_adc.c', 'source/c_adc.c', 'source/constants.c', 'source/common.c'], extra_compile_args=['-Wno-format-security']),
|
||||||
|
403
source/c_pwm.c
403
source/c_pwm.c
@ -33,6 +33,7 @@ SOFTWARE.
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include "c_pwm.h"
|
#include "c_pwm.h"
|
||||||
@ -42,9 +43,35 @@ SOFTWARE.
|
|||||||
|
|
||||||
#define PERIOD 0
|
#define PERIOD 0
|
||||||
#define DUTY 1
|
#define DUTY 1
|
||||||
|
#define ENABLE 1
|
||||||
|
#define DISABLE 0
|
||||||
|
|
||||||
|
// Global variables
|
||||||
int pwm_initialized = 0;
|
int pwm_initialized = 0;
|
||||||
|
|
||||||
|
// pwm devices (future chip pro use)
|
||||||
|
struct pwm_dev
|
||||||
|
{
|
||||||
|
char key[KEYLEN+1]; /* leave room for terminating NUL byte */
|
||||||
|
int gpio;
|
||||||
|
int initialized;
|
||||||
|
struct pwm_dev *next;
|
||||||
|
};
|
||||||
|
struct pwm_dev *initialized_pwms = NULL;
|
||||||
|
|
||||||
|
struct pwm_dev *lookup_initialized_pwm(const char *key)
|
||||||
|
{
|
||||||
|
struct pwm_dev *dev = initialized_pwms;
|
||||||
|
while (dev != NULL)
|
||||||
|
{
|
||||||
|
if (strcmp(dev->key, key) == 0) {
|
||||||
|
return dev;
|
||||||
|
}
|
||||||
|
dev = dev->next;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// pwm exports
|
// pwm exports
|
||||||
struct pwm_exp
|
struct pwm_exp
|
||||||
{
|
{
|
||||||
@ -71,131 +98,332 @@ struct pwm_exp *lookup_exported_pwm(const char *key)
|
|||||||
}
|
}
|
||||||
pwm = pwm->next;
|
pwm = pwm->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
return NULL; /* standard for pointers */
|
return NULL; /* standard for pointers */
|
||||||
}
|
}
|
||||||
|
|
||||||
int initialize_pwm(void)
|
int initialize_pwm(void)
|
||||||
{
|
{
|
||||||
if (!pwm_initialized) {
|
int e_no;
|
||||||
|
if (!pwm_initialized) {
|
||||||
int fd, len;
|
int fd, len;
|
||||||
char str_gpio[80];
|
char str_gpio[80];
|
||||||
// Per https://github.com/NextThingCo/CHIP-linux/pull/4
|
// Per https://github.com/NextThingCo/CHIP-linux/pull/4
|
||||||
// we need to export 0 here to enable pwm0
|
// we need to export 0 here to enable pwm0
|
||||||
int gpio = 0;
|
int gpio = 0;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** initialize_pwm **\n");
|
||||||
if ((fd = open("/sys/class/pwm/pwmchip0/export", O_WRONLY)) < 0)
|
if ((fd = open("/sys/class/pwm/pwmchip0/export", O_WRONLY)) < 0)
|
||||||
{
|
{
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "initialize_pwm: could not open export file");
|
||||||
|
add_error_msg(err);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
len = snprintf(str_gpio, sizeof(str_gpio), "%d", gpio); BUF2SMALL(str_gpio);
|
len = snprintf(str_gpio, sizeof(str_gpio), "%d", gpio); BUF2SMALL(str_gpio);
|
||||||
ssize_t s = write(fd, str_gpio, len); ASSRT(s == len);
|
ssize_t s = write(fd, str_gpio, len); e_no = errno;
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "initialize_pwm: could not export pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** initialize_pwm: export pin: s = %d, len = %d\n", s, len);
|
||||||
|
|
||||||
pwm_initialized = 1;
|
pwm_initialized = 1;
|
||||||
return 1;
|
return 1;
|
||||||
|
} else {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** initialize_pwm: pwm is already initialized\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_set_frequency(const char *key, float freq) {
|
int pwm_set_frequency(const char *key, float freq) {
|
||||||
int len;
|
int len, e_no;
|
||||||
|
int rtnval = -1;
|
||||||
char buffer[80];
|
char buffer[80];
|
||||||
unsigned long period_ns;
|
unsigned long period_ns;
|
||||||
struct pwm_exp *pwm;
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
if (freq <= 0.0)
|
if (freq <= 0.0)
|
||||||
return -1;
|
return rtnval;
|
||||||
|
|
||||||
pwm = lookup_exported_pwm(key);
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
if (pwm == NULL) {
|
if (pwm == NULL) {
|
||||||
return -1;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
period_ns = (unsigned long)(1e9 / freq);
|
period_ns = (unsigned long)(1e9 / freq);
|
||||||
|
|
||||||
if (period_ns != pwm->period_ns) {
|
if (pwm->enable) {
|
||||||
pwm->period_ns = period_ns;
|
if (period_ns != pwm->period_ns) {
|
||||||
|
pwm->period_ns = period_ns;
|
||||||
|
|
||||||
len = snprintf(buffer, sizeof(buffer), "%lu", period_ns); BUF2SMALL(buffer);
|
len = snprintf(buffer, sizeof(buffer), "%lu", period_ns); BUF2SMALL(buffer);
|
||||||
ssize_t s = write(pwm->period_fd, buffer, len); ASSRT(s == len);
|
ssize_t s = write(pwm->period_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_frequency: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_frequency: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_frequency: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_frequency: could not change frequency of pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
} else {
|
||||||
|
rtnval = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 1;
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
int pwm_set_period_ns(const char *key, unsigned long period_ns) {
|
||||||
|
int len, e_no;
|
||||||
|
int rtnval = -1;
|
||||||
|
char buffer[80];
|
||||||
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
|
//TODO: ADD CHECK FOR period_ns
|
||||||
|
|
||||||
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
|
if (pwm == NULL) {
|
||||||
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwm->enable) {
|
||||||
|
if (period_ns != pwm->period_ns) {
|
||||||
|
pwm->period_ns = period_ns;
|
||||||
|
|
||||||
|
len = snprintf(buffer, sizeof(buffer), "%lu", period_ns); BUF2SMALL(buffer);
|
||||||
|
ssize_t s = write(pwm->period_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_period_ns: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_period_ns: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_period_ns: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_period_ns: could not change period of pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
} else {
|
||||||
|
rtnval = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
int pwm_get_period_ns(const char *key, unsigned long *period_ns) {
|
||||||
|
int rtnval = -1;
|
||||||
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
|
if (pwm == NULL) {
|
||||||
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_get_period_ns: %lu **\n",pwm->period_ns);
|
||||||
|
|
||||||
|
// Set period_ns to what we have in the struct
|
||||||
|
*period_ns = pwm->period_ns;
|
||||||
|
|
||||||
|
rtnval = 0;
|
||||||
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_set_polarity(const char *key, int polarity) {
|
int pwm_set_polarity(const char *key, int polarity) {
|
||||||
int len;
|
int len, e_no;
|
||||||
|
int rtnval = -1;
|
||||||
char buffer[80];
|
char buffer[80];
|
||||||
struct pwm_exp *pwm;
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
pwm = lookup_exported_pwm(key);
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
if (pwm == NULL) {
|
if (pwm == NULL) {
|
||||||
return -1;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (polarity < 0 || polarity > 1) {
|
if (polarity != 0 && polarity != 1) {
|
||||||
return -1;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (polarity == 0) {
|
if (pwm->enable) {
|
||||||
len = snprintf(buffer, sizeof(buffer), "%s", "normal"); BUF2SMALL(buffer);
|
if (polarity == 0) {
|
||||||
|
len = snprintf(buffer, sizeof(buffer), "%s", "normal"); BUF2SMALL(buffer);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
len = snprintf(buffer, sizeof(buffer), "%s", "inverted"); BUF2SMALL(buffer);
|
||||||
|
}
|
||||||
|
ssize_t s = write(pwm->polarity_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_polarity: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_polarity: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_polarity: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_polarity: could not change polarity of pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
} else {
|
||||||
|
rtnval = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
}
|
}
|
||||||
else
|
return rtnval;
|
||||||
{
|
|
||||||
len = snprintf(buffer, sizeof(buffer), "%s", "inverted"); BUF2SMALL(buffer);
|
|
||||||
}
|
|
||||||
ssize_t s = write(pwm->polarity_fd, buffer, len); ASSRT(s == len);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_set_duty_cycle(const char *key, float duty) {
|
int pwm_set_duty_cycle(const char *key, float duty) {
|
||||||
int len;
|
int len, e_no;
|
||||||
|
int rtnval = -1;
|
||||||
char buffer[80];
|
char buffer[80];
|
||||||
struct pwm_exp *pwm;
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
if (duty < 0.0 || duty > 100.0)
|
if (duty < 0.0 || duty > 100.0) {
|
||||||
return -1;
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
pwm = lookup_exported_pwm(key);
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
if (pwm == NULL) {
|
if (pwm == NULL) {
|
||||||
return -1;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
pwm->duty = (unsigned long)(pwm->period_ns * (duty / 100.0));
|
pwm->duty = (unsigned long)(pwm->period_ns * (duty / 100.0));
|
||||||
|
|
||||||
len = snprintf(buffer, sizeof(buffer), "%lu", pwm->duty); BUF2SMALL(buffer);
|
if (pwm->enable) {
|
||||||
ssize_t s = write(pwm->duty_fd, buffer, len); ASSRT(s == len);
|
len = snprintf(buffer, sizeof(buffer), "%lu", pwm->duty); BUF2SMALL(buffer);
|
||||||
|
ssize_t s = write(pwm->duty_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_duty_cycle: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_duty_cycle: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_duty_cycle: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_duty_cycle: could not change duty cycle of pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
} else {
|
||||||
|
rtnval = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_set_enable(const char *key, int enable)
|
int pwm_set_pulse_width_ns(const char *key, unsigned long pulse_width_ns) {
|
||||||
{
|
int len, e_no;
|
||||||
int len;
|
int rtnval = -1;
|
||||||
char buffer[80];
|
char buffer[80];
|
||||||
struct pwm_exp *pwm;
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
if (enable != 0 || enable != 1)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
pwm = lookup_exported_pwm(key);
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
if (pwm == NULL) {
|
if (pwm == NULL) {
|
||||||
return -1;
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
pwm->enable = enable;
|
if (pulse_width_ns < 0 || pulse_width_ns > pwm->period_ns)
|
||||||
|
return rtnval;
|
||||||
|
|
||||||
len = snprintf(buffer, sizeof(buffer), "%d", pwm->enable); BUF2SMALL(buffer);
|
pwm->duty = pulse_width_ns / pwm->period_ns;
|
||||||
ssize_t s = write(pwm->enable_fd, buffer, len); ASSRT(s == len);
|
|
||||||
|
|
||||||
return 0;
|
if (pwm->enable) {
|
||||||
|
len = snprintf(buffer, sizeof(buffer), "%lu", pwm->duty); BUF2SMALL(buffer);
|
||||||
|
ssize_t s = write(pwm->duty_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_pulse_width_ns: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_pulse_width_ns: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_pulse_width_ns: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_pulse_width_ns: could not change pulse width of pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
} else {
|
||||||
|
rtnval = 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
rtnval = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rtnval;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
int pwm_set_enable(const char *key, int enable)
|
||||||
|
{
|
||||||
|
int len, e_no;
|
||||||
|
int rtnval = -1;
|
||||||
|
char buffer[80];
|
||||||
|
struct pwm_exp *pwm;
|
||||||
|
|
||||||
|
if (enable != 0 && enable != 1) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_set_enable: enable needs to be 0 or 1! **\n");
|
||||||
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
pwm = lookup_exported_pwm(key);
|
||||||
|
|
||||||
|
if (pwm == NULL) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_set_enable: pwm struct is null **\n");
|
||||||
|
return rtnval;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
len = snprintf(buffer, sizeof(buffer), "%d", enable); BUF2SMALL(buffer);
|
||||||
|
ssize_t s = write(pwm->enable_fd, buffer, len); e_no = errno;
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_set_enable: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
printf(" ** pwm_set_enable: buffer: %s\n", buffer);
|
||||||
|
printf(" ** pwm_set_enable: s = %d, len = %d\n", s, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s == len)
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_set_enable: pwm->enable to %d\n", enable);
|
||||||
|
pwm->enable = enable;
|
||||||
|
rtnval = 0;
|
||||||
|
} else {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_set_enable: could not enable/disable pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
rtnval = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_start(const char *key, float duty, float freq, int polarity)
|
int pwm_start(const char *key, float duty, float freq, int polarity)
|
||||||
@ -208,9 +436,17 @@ int pwm_start(const char *key, float duty, float freq, int polarity)
|
|||||||
int period_fd, duty_fd, polarity_fd, enable_fd;
|
int period_fd, duty_fd, polarity_fd, enable_fd;
|
||||||
struct pwm_exp *new_pwm, *pwm;
|
struct pwm_exp *new_pwm, *pwm;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_start: pwm_initialized = %d\n", pwm_initialized);
|
||||||
if(!pwm_initialized) {
|
if(!pwm_initialized) {
|
||||||
initialize_pwm();
|
initialize_pwm();
|
||||||
|
} else {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_start: pwm already initialized, cleaning up **");
|
||||||
|
pwm_cleanup();
|
||||||
}
|
}
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_start: pwm_initialized = %d\n", pwm_initialized);
|
||||||
|
|
||||||
//setup the pwm base path, the chip only has one pwm
|
//setup the pwm base path, the chip only has one pwm
|
||||||
snprintf(pwm_base_path, sizeof(pwm_base_path), "/sys/class/pwm/pwmchip0/pwm%d", 0); BUF2SMALL(pwm_base_path);
|
snprintf(pwm_base_path, sizeof(pwm_base_path), "/sys/class/pwm/pwmchip0/pwm%d", 0); BUF2SMALL(pwm_base_path);
|
||||||
@ -221,37 +457,62 @@ int pwm_start(const char *key, float duty, float freq, int polarity)
|
|||||||
snprintf(duty_path, sizeof(duty_path), "%s/duty_cycle", pwm_base_path); BUF2SMALL(duty_path);
|
snprintf(duty_path, sizeof(duty_path), "%s/duty_cycle", pwm_base_path); BUF2SMALL(duty_path);
|
||||||
snprintf(polarity_path, sizeof(polarity_path), "%s/polarity", pwm_base_path); BUF2SMALL(polarity_path);
|
snprintf(polarity_path, sizeof(polarity_path), "%s/polarity", pwm_base_path); BUF2SMALL(polarity_path);
|
||||||
|
|
||||||
//add period and duty fd to pwm list
|
if (DEBUG) {
|
||||||
if ((enable_fd = open(enable_path, O_RDWR)) < 0)
|
printf(" ** pwm_start: pwm_base_path: %s\n", pwm_base_path);
|
||||||
return -1;
|
printf(" ** pwm_start: enable_path: %s\n", enable_path);
|
||||||
|
printf(" ** pwm_start: period_path: %s\n", period_path);
|
||||||
|
printf(" ** pwm_start: duty_path: %s\n", duty_path);
|
||||||
|
printf(" ** pwm_start: polarity_path: %s\n", polarity_path);
|
||||||
|
}
|
||||||
|
|
||||||
if ((period_fd = open(period_path, O_RDWR)) < 0) {
|
//add period and duty fd to pwm list
|
||||||
close(enable_fd);
|
if ((enable_fd = open(enable_path, O_WRONLY)) < 0) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_start: could not open enable file");
|
||||||
|
add_error_msg(err);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((period_fd = open(period_path, O_WRONLY)) < 0) {
|
||||||
|
close(enable_fd);
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_start: could not open period file");
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if ((duty_fd = open(duty_path, O_RDWR)) < 0) {
|
if ((duty_fd = open(duty_path, O_WRONLY)) < 0) {
|
||||||
//error, close already opened period_fd.
|
//error, close already opened period_fd.
|
||||||
close(enable_fd);
|
close(enable_fd);
|
||||||
close(period_fd);
|
close(period_fd);
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_start: could not open duty cycle file");
|
||||||
|
add_error_msg(err);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((polarity_fd = open(polarity_path, O_RDWR)) < 0) {
|
if ((polarity_fd = open(polarity_path, O_WRONLY)) < 0) {
|
||||||
//error, close already opened period_fd and duty_fd.
|
//error, close already opened period_fd and duty_fd.
|
||||||
close(enable_fd);
|
close(enable_fd);
|
||||||
close(period_fd);
|
close(period_fd);
|
||||||
close(duty_fd);
|
close(duty_fd);
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_start: could not open polarity file");
|
||||||
|
add_error_msg(err);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// add to list
|
// add to list
|
||||||
new_pwm = malloc(sizeof(struct pwm_exp));
|
new_pwm = malloc(sizeof(struct pwm_exp));
|
||||||
if (new_pwm == 0) {
|
if (new_pwm == 0) {
|
||||||
return -1; // out of memory
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_start: unable to allocate memory");
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** pwm_start: sysfs files opened successfully **\n");
|
||||||
strncpy(new_pwm->key, key, KEYLEN); /* can leave string unterminated */
|
strncpy(new_pwm->key, key, KEYLEN); /* can leave string unterminated */
|
||||||
new_pwm->key[KEYLEN] = '\0'; /* terminate string */
|
new_pwm->key[KEYLEN] = '\0'; /* terminate string */
|
||||||
new_pwm->period_fd = period_fd;
|
new_pwm->period_fd = period_fd;
|
||||||
@ -272,19 +533,27 @@ int pwm_start(const char *key, float duty, float freq, int polarity)
|
|||||||
pwm->next = new_pwm;
|
pwm->next = new_pwm;
|
||||||
}
|
}
|
||||||
|
|
||||||
pwm_set_frequency(key, freq);
|
int rtnval = 0;
|
||||||
pwm_set_polarity(key, polarity);
|
rtnval = pwm_set_enable(key, ENABLE);
|
||||||
pwm_set_enable(key, 1);
|
// Fix for issue #53
|
||||||
pwm_set_duty_cycle(key, duty);
|
if (rtnval != -1) {
|
||||||
|
rtnval = 0;
|
||||||
return 1;
|
rtnval = pwm_set_frequency(key, freq);
|
||||||
|
if (rtnval != -1) {
|
||||||
|
rtnval = 0;
|
||||||
|
//rtnval = pwm_set_polarity(key, polarity);
|
||||||
|
//rtnval = 0;
|
||||||
|
rtnval = pwm_set_duty_cycle(key, duty);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return rtnval;
|
||||||
}
|
}
|
||||||
|
|
||||||
int pwm_disable(const char *key)
|
int pwm_disable(const char *key)
|
||||||
{
|
{
|
||||||
struct pwm_exp *pwm, *temp, *prev_pwm = NULL;
|
struct pwm_exp *pwm, *temp, *prev_pwm = NULL;
|
||||||
|
|
||||||
int fd, len;
|
int fd, len, e_no;
|
||||||
char str_gpio[80];
|
char str_gpio[80];
|
||||||
// Per https://github.com/NextThingCo/CHIP-linux/pull/4
|
// Per https://github.com/NextThingCo/CHIP-linux/pull/4
|
||||||
// we need to export 0 here to enable pwm0
|
// we need to export 0 here to enable pwm0
|
||||||
@ -292,17 +561,26 @@ int pwm_disable(const char *key)
|
|||||||
|
|
||||||
// Disable the PWM
|
// Disable the PWM
|
||||||
pwm_set_frequency(key, 0);
|
pwm_set_frequency(key, 0);
|
||||||
pwm_set_polarity(key, 0);
|
//pwm_set_polarity(key, 0);
|
||||||
pwm_set_enable(key, 0);
|
|
||||||
pwm_set_duty_cycle(key, 0);
|
pwm_set_duty_cycle(key, 0);
|
||||||
|
pwm_set_enable(key, DISABLE);
|
||||||
|
|
||||||
if ((fd = open("/sys/class/pwm/pwmchip0/unexport", O_WRONLY)) < 0)
|
if ((fd = open("/sys/class/pwm/pwmchip0/unexport", O_WRONLY)) < 0)
|
||||||
{
|
{
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_disable: could not open unexport file");
|
||||||
|
add_error_msg(err);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
len = snprintf(str_gpio, sizeof(str_gpio), "%d", gpio); BUF2SMALL(str_gpio);
|
len = snprintf(str_gpio, sizeof(str_gpio), "%d", gpio); BUF2SMALL(str_gpio);
|
||||||
ssize_t s = write(fd, str_gpio, len); ASSRT(s == len);
|
ssize_t s = write(fd, str_gpio, len); e_no = errno;
|
||||||
close(fd);
|
close(fd);
|
||||||
|
if (s != len) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "pwm_disable: could not unexport pwm (%s)", strerror(e_no));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
// remove from list
|
// remove from list
|
||||||
pwm = exported_pwms;
|
pwm = exported_pwms;
|
||||||
@ -310,6 +588,9 @@ int pwm_disable(const char *key)
|
|||||||
{
|
{
|
||||||
if (strcmp(pwm->key, key) == 0)
|
if (strcmp(pwm->key, key) == 0)
|
||||||
{
|
{
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** pwm_disable: freeing memory %s\n", key);
|
||||||
|
}
|
||||||
//close the fd
|
//close the fd
|
||||||
close(pwm->enable_fd);
|
close(pwm->enable_fd);
|
||||||
close(pwm->period_fd);
|
close(pwm->period_fd);
|
||||||
@ -323,7 +604,6 @@ int pwm_disable(const char *key)
|
|||||||
} else {
|
} else {
|
||||||
prev_pwm->next = pwm->next;
|
prev_pwm->next = pwm->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
temp = pwm;
|
temp = pwm;
|
||||||
pwm = pwm->next;
|
pwm = pwm->next;
|
||||||
free(temp);
|
free(temp);
|
||||||
@ -341,3 +621,4 @@ void pwm_cleanup(void)
|
|||||||
pwm_disable(exported_pwms->key);
|
pwm_disable(exported_pwms->key);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +32,9 @@ SOFTWARE.
|
|||||||
int pwm_start(const char *key, float duty, float freq, int polarity);
|
int pwm_start(const char *key, float duty, float freq, int polarity);
|
||||||
int pwm_disable(const char *key);
|
int pwm_disable(const char *key);
|
||||||
int pwm_set_frequency(const char *key, float freq);
|
int pwm_set_frequency(const char *key, float freq);
|
||||||
|
int pwm_set_period_ns(const char *key, unsigned long period_ns);
|
||||||
|
int pwm_get_period_ns(const char *key, unsigned long *period_ns);
|
||||||
int pwm_set_duty_cycle(const char *key, float duty);
|
int pwm_set_duty_cycle(const char *key, float duty);
|
||||||
|
int pwm_set_pulse_width_ns(const char *key, unsigned long pulse_width_ns);
|
||||||
int pwm_set_enable(const char *key, int enable);
|
int pwm_set_enable(const char *key, int enable);
|
||||||
void pwm_cleanup(void);
|
void pwm_cleanup(void);
|
||||||
|
@ -35,13 +35,13 @@ SOFTWARE.
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <errno.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "c_pwm.h"
|
#include "c_softpwm.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "event_gpio.h"
|
#include "event_gpio.h"
|
||||||
#include "Python.h"
|
|
||||||
|
|
||||||
#define KEYLEN 7
|
#define KEYLEN 7
|
||||||
|
|
||||||
@ -97,6 +97,8 @@ int softpwm_set_frequency(const char *key, float freq) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_set_frequency: %f **\n", freq);
|
||||||
pthread_mutex_lock(pwm->params_lock);
|
pthread_mutex_lock(pwm->params_lock);
|
||||||
pwm->params.freq = freq;
|
pwm->params.freq = freq;
|
||||||
pthread_mutex_unlock(pwm->params_lock);
|
pthread_mutex_unlock(pwm->params_lock);
|
||||||
@ -117,6 +119,8 @@ int softpwm_set_polarity(const char *key, int polarity) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_set_polarity: %d **\n", polarity);
|
||||||
pthread_mutex_lock(pwm->params_lock);
|
pthread_mutex_lock(pwm->params_lock);
|
||||||
pwm->params.polarity = polarity;
|
pwm->params.polarity = polarity;
|
||||||
pthread_mutex_unlock(pwm->params_lock);
|
pthread_mutex_unlock(pwm->params_lock);
|
||||||
@ -136,6 +140,8 @@ int softpwm_set_duty_cycle(const char *key, float duty) {;
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_set_duty_cycle: %f **\n", duty);
|
||||||
pthread_mutex_lock(pwm->params_lock);
|
pthread_mutex_lock(pwm->params_lock);
|
||||||
pwm->params.duty = duty;
|
pwm->params.duty = duty;
|
||||||
pthread_mutex_unlock(pwm->params_lock);
|
pthread_mutex_unlock(pwm->params_lock);
|
||||||
@ -195,7 +201,6 @@ void *softpwm_thread_toggle(void *arg)
|
|||||||
|
|
||||||
if (enabled_local)
|
if (enabled_local)
|
||||||
{
|
{
|
||||||
|
|
||||||
/* Force 0 duty cycle to be 0 */
|
/* Force 0 duty cycle to be 0 */
|
||||||
if (duty_local != 0)
|
if (duty_local != 0)
|
||||||
{
|
{
|
||||||
@ -239,12 +244,27 @@ int softpwm_start(const char *key, float duty, float freq, int polarity)
|
|||||||
int gpio;
|
int gpio;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (get_gpio_number(key, &gpio) < 0)
|
if (get_gpio_number(key, &gpio) < 0) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_start: invalid gpio specified **\n");
|
||||||
return -1;
|
return -1;
|
||||||
if (gpio_export(gpio) < 0)
|
}
|
||||||
return -1;
|
|
||||||
if (gpio_set_direction(gpio, OUTPUT) < 0)
|
if (gpio_export(gpio) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error setting up softpwm on pin %d, maybe already exported? (%s)", gpio, get_error_msg());
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_start: %d exported **\n", gpio);
|
||||||
|
|
||||||
|
if (gpio_set_direction(gpio, OUTPUT) < 0) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_start: gpio_set_direction failed **\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
// add to list
|
// add to list
|
||||||
new_pwm = malloc(sizeof(struct softpwm)); ASSRT(new_pwm != NULL);
|
new_pwm = malloc(sizeof(struct softpwm)); ASSRT(new_pwm != NULL);
|
||||||
@ -276,12 +296,16 @@ int softpwm_start(const char *key, float duty, float freq, int polarity)
|
|||||||
}
|
}
|
||||||
pthread_mutex_unlock(new_params_lock);
|
pthread_mutex_unlock(new_params_lock);
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_enable: setting softpwm parameters **\n");
|
||||||
ASSRT(softpwm_set_duty_cycle(new_pwm->key, duty) == 0);
|
ASSRT(softpwm_set_duty_cycle(new_pwm->key, duty) == 0);
|
||||||
ASSRT(softpwm_set_frequency(new_pwm->key, freq) == 0);
|
ASSRT(softpwm_set_frequency(new_pwm->key, freq) == 0);
|
||||||
ASSRT(softpwm_set_polarity(new_pwm->key, polarity) == 0);
|
ASSRT(softpwm_set_polarity(new_pwm->key, polarity) == 0);
|
||||||
|
|
||||||
pthread_mutex_lock(new_params_lock);
|
pthread_mutex_lock(new_params_lock);
|
||||||
// create thread for pwm
|
// create thread for pwm
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_enable: creating thread **\n");
|
||||||
ret = pthread_create(&new_thread, NULL, softpwm_thread_toggle, (void *)new_pwm);
|
ret = pthread_create(&new_thread, NULL, softpwm_thread_toggle, (void *)new_pwm);
|
||||||
ASSRT(ret == 0);
|
ASSRT(ret == 0);
|
||||||
|
|
||||||
@ -296,17 +320,23 @@ int softpwm_disable(const char *key)
|
|||||||
{
|
{
|
||||||
struct softpwm *pwm, *temp, *prev_pwm = NULL;
|
struct softpwm *pwm, *temp, *prev_pwm = NULL;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** in softpwm_disable **\n");
|
||||||
// remove from list
|
// remove from list
|
||||||
pwm = exported_pwms;
|
pwm = exported_pwms;
|
||||||
while (pwm != NULL)
|
while (pwm != NULL)
|
||||||
{
|
{
|
||||||
if (strcmp(pwm->key, key) == 0)
|
if (strcmp(pwm->key, key) == 0)
|
||||||
{
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_disable: found pin **\n");
|
||||||
pthread_mutex_lock(pwm->params_lock);
|
pthread_mutex_lock(pwm->params_lock);
|
||||||
pwm->params.stop_flag = true;
|
pwm->params.stop_flag = true;
|
||||||
pthread_mutex_unlock(pwm->params_lock);
|
pthread_mutex_unlock(pwm->params_lock);
|
||||||
pthread_join(pwm->thread, NULL); /* wait for thread to exit */
|
pthread_join(pwm->thread, NULL); /* wait for thread to exit */
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** softpwm_disable: unexporting %d **\n", pwm->gpio);
|
||||||
gpio_unexport(pwm->gpio);
|
gpio_unexport(pwm->gpio);
|
||||||
|
|
||||||
if (prev_pwm == NULL)
|
if (prev_pwm == NULL)
|
||||||
|
355
source/c_softservo.c
Normal file
355
source/c_softservo.c
Normal file
@ -0,0 +1,355 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2017 Robert Wolterman
|
||||||
|
|
||||||
|
Using CHIP_IO servo code from Brady Hurlburt as a basis for the servo code
|
||||||
|
|
||||||
|
Copyright (c) 2016 Brady Hurlburt
|
||||||
|
|
||||||
|
Original BBIO Author Justin Cooper
|
||||||
|
Modified for CHIP_IO Author Brady Hurlburt
|
||||||
|
|
||||||
|
This file incorporates work covered by the following copyright and
|
||||||
|
permission notice, all modified code adopts the original license:
|
||||||
|
|
||||||
|
Copyright (c) 2013 Adafruit
|
||||||
|
Author: Justin Cooper
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <pthread.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include "c_softservo.h"
|
||||||
|
#include "common.h"
|
||||||
|
#include "event_gpio.h"
|
||||||
|
|
||||||
|
#define KEYLEN 7
|
||||||
|
|
||||||
|
#define PERIOD 0
|
||||||
|
#define DUTY 1
|
||||||
|
|
||||||
|
#define MSTONS 1000000
|
||||||
|
#define BLOCKNS 20 * MSTONS
|
||||||
|
#define FUDGEFACTOR 450
|
||||||
|
#define MSTOMICROS 1000
|
||||||
|
#define MICROSTONS 1000
|
||||||
|
#define MINMICROS 1000
|
||||||
|
#define NEUTRAL 1500
|
||||||
|
#define MAXMICROS 2000
|
||||||
|
|
||||||
|
int servo_initialized = 0;
|
||||||
|
|
||||||
|
struct servo_params
|
||||||
|
{
|
||||||
|
float range;
|
||||||
|
float min_angle;
|
||||||
|
float max_angle;
|
||||||
|
float current_angle;
|
||||||
|
bool enabled;
|
||||||
|
bool stop_flag;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct servo
|
||||||
|
{
|
||||||
|
char key[KEYLEN+1]; /* leave room for terminating NUL byte */
|
||||||
|
int gpio;
|
||||||
|
struct servo_params params;
|
||||||
|
pthread_mutex_t* params_lock;
|
||||||
|
pthread_t thread;
|
||||||
|
struct servo *next;
|
||||||
|
};
|
||||||
|
struct servo *exported_servos = NULL;
|
||||||
|
|
||||||
|
struct servo *lookup_exported_servo(const char *key)
|
||||||
|
{
|
||||||
|
struct servo *srv = exported_servos;
|
||||||
|
|
||||||
|
while (srv != NULL)
|
||||||
|
{
|
||||||
|
if (strcmp(srv->key, key) == 0) {
|
||||||
|
return srv;
|
||||||
|
}
|
||||||
|
srv = srv->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
return NULL; /* standard for pointers */
|
||||||
|
}
|
||||||
|
|
||||||
|
void *servo_thread_toggle(void *arg)
|
||||||
|
{
|
||||||
|
struct servo *srv = (struct servo *)arg;
|
||||||
|
int gpio = srv->gpio;
|
||||||
|
struct timespec tim_on;
|
||||||
|
struct timespec tim_off;
|
||||||
|
float on_time_microsec = 0;
|
||||||
|
unsigned int on_ns;
|
||||||
|
unsigned int off_ns;
|
||||||
|
|
||||||
|
/* Used to determine if something has
|
||||||
|
* has changed
|
||||||
|
*/
|
||||||
|
float angle_local = 0;
|
||||||
|
float range_local = 0;
|
||||||
|
bool stop_flag_local = false;
|
||||||
|
bool enabled_local = false;
|
||||||
|
bool recalculate_timing = false;
|
||||||
|
|
||||||
|
while (!stop_flag_local) {
|
||||||
|
/* Take a snapshot of the parameter block */
|
||||||
|
pthread_mutex_lock(srv->params_lock);
|
||||||
|
if ((angle_local != srv->params.current_angle) || (range_local != srv->params.range)) {
|
||||||
|
recalculate_timing = true;
|
||||||
|
}
|
||||||
|
angle_local = srv->params.current_angle;
|
||||||
|
range_local = srv->params.range;
|
||||||
|
enabled_local = srv->params.enabled;
|
||||||
|
stop_flag_local = srv->params.stop_flag;
|
||||||
|
pthread_mutex_unlock(srv->params_lock);
|
||||||
|
|
||||||
|
/* If freq or duty has been changed, update the
|
||||||
|
* sleep times
|
||||||
|
*/
|
||||||
|
if (recalculate_timing) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo updating timing: new angle: (%.2f)\n",angle_local);
|
||||||
|
on_time_microsec = (((MAXMICROS - MINMICROS) / range_local) * angle_local) + NEUTRAL;
|
||||||
|
on_ns = (unsigned long)(on_time_microsec * MICROSTONS - FUDGEFACTOR);
|
||||||
|
off_ns = BLOCKNS - on_ns;
|
||||||
|
tim_on.tv_sec = 0;
|
||||||
|
tim_on.tv_nsec = on_ns;
|
||||||
|
tim_off.tv_sec = 0;
|
||||||
|
tim_off.tv_nsec = off_ns;
|
||||||
|
recalculate_timing = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (enabled_local)
|
||||||
|
{
|
||||||
|
/* Set gpio */
|
||||||
|
gpio_set_value(gpio, HIGH);
|
||||||
|
|
||||||
|
nanosleep(&tim_on, NULL);
|
||||||
|
|
||||||
|
/* Unset gpio */
|
||||||
|
gpio_set_value(gpio, LOW);
|
||||||
|
|
||||||
|
nanosleep(&tim_off, NULL);
|
||||||
|
//printf("AFTER SECOND NANOSLEEP\n");
|
||||||
|
} /* if enabled_local */
|
||||||
|
} /* while !stop_flag_local */
|
||||||
|
|
||||||
|
gpio_set_value(gpio, LOW);
|
||||||
|
|
||||||
|
/* This servo has been disabled */
|
||||||
|
pthread_exit(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
int servo_start(const char *key, float angle, float range)
|
||||||
|
{
|
||||||
|
struct servo *new_srv, *srv;
|
||||||
|
pthread_t new_thread;
|
||||||
|
pthread_mutex_t *new_params_lock;
|
||||||
|
int gpio;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
if (get_gpio_number(key, &gpio) < 0) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_start: invalid gpio specified **\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gpio_export(gpio) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error setting up servo on pin %d, maybe already exported? (%s)", gpio, get_error_msg());
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_start: %d exported **\n", gpio);
|
||||||
|
|
||||||
|
if (gpio_set_direction(gpio, OUTPUT) < 0) {
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_start: gpio_set_direction failed **\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
printf("c_softservo.c: servo_start(%d,%.2f,%.2f)\n",gpio,angle,range);
|
||||||
|
|
||||||
|
// add to list
|
||||||
|
new_srv = malloc(sizeof(struct servo)); ASSRT(new_srv != NULL);
|
||||||
|
new_params_lock = (pthread_mutex_t *)malloc(sizeof(pthread_mutex_t));
|
||||||
|
if (new_srv == 0) {
|
||||||
|
return -1; // out of memory
|
||||||
|
}
|
||||||
|
pthread_mutex_init(new_params_lock, NULL);
|
||||||
|
pthread_mutex_lock(new_params_lock);
|
||||||
|
|
||||||
|
strncpy(new_srv->key, key, KEYLEN); /* can leave string unterminated */
|
||||||
|
new_srv->key[KEYLEN] = '\0'; /* terminate string */
|
||||||
|
new_srv->gpio = gpio;
|
||||||
|
new_srv->params.enabled = true;
|
||||||
|
new_srv->params.stop_flag = false;
|
||||||
|
new_srv->params_lock = new_params_lock;
|
||||||
|
new_srv->next = NULL;
|
||||||
|
|
||||||
|
if (exported_servos == NULL)
|
||||||
|
{
|
||||||
|
// create new list
|
||||||
|
exported_servos = new_srv;
|
||||||
|
} else {
|
||||||
|
// add to end of existing list
|
||||||
|
srv = exported_servos;
|
||||||
|
while (srv->next != NULL)
|
||||||
|
srv = srv->next;
|
||||||
|
srv->next = new_srv;
|
||||||
|
}
|
||||||
|
pthread_mutex_unlock(new_params_lock);
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_enable: setting servo parameters **\n");
|
||||||
|
ASSRT(servo_set_range(new_srv->key, range) == 0);
|
||||||
|
ASSRT(servo_set_angle(new_srv->key, angle) == 0);
|
||||||
|
|
||||||
|
pthread_mutex_lock(new_params_lock);
|
||||||
|
// create thread for srv
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_enable: creating thread **\n");
|
||||||
|
ret = pthread_create(&new_thread, NULL, servo_thread_toggle, (void *)new_srv);
|
||||||
|
ASSRT(ret == 0);
|
||||||
|
|
||||||
|
new_srv->thread = new_thread;
|
||||||
|
|
||||||
|
pthread_mutex_unlock(new_params_lock);
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int servo_disable(const char *key)
|
||||||
|
{
|
||||||
|
struct servo *srv, *temp, *prev_srv = NULL;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** in servo_disable **\n");
|
||||||
|
// remove from list
|
||||||
|
srv = exported_servos;
|
||||||
|
while (srv != NULL)
|
||||||
|
{
|
||||||
|
if (strcmp(srv->key, key) == 0)
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_disable: found pin **\n");
|
||||||
|
pthread_mutex_lock(srv->params_lock);
|
||||||
|
srv->params.stop_flag = true;
|
||||||
|
pthread_mutex_unlock(srv->params_lock);
|
||||||
|
pthread_join(srv->thread, NULL); /* wait for thread to exit */
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_disable: unexporting %d **\n", srv->gpio);
|
||||||
|
gpio_unexport(srv->gpio);
|
||||||
|
|
||||||
|
if (prev_srv == NULL)
|
||||||
|
{
|
||||||
|
exported_servos = srv->next;
|
||||||
|
prev_srv = srv;
|
||||||
|
} else {
|
||||||
|
prev_srv->next = srv->next;
|
||||||
|
}
|
||||||
|
|
||||||
|
temp = srv;
|
||||||
|
srv = srv->next;
|
||||||
|
free(temp->params_lock);
|
||||||
|
free(temp);
|
||||||
|
} else {
|
||||||
|
prev_srv = srv;
|
||||||
|
srv = srv->next;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int servo_set_range(const char *key, float range)
|
||||||
|
{
|
||||||
|
struct servo *srv;
|
||||||
|
float min_angle, max_angle;
|
||||||
|
|
||||||
|
srv = lookup_exported_servo(key);
|
||||||
|
|
||||||
|
if (srv == NULL) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compute the min and max angle
|
||||||
|
max_angle = range / 2.0;
|
||||||
|
min_angle = -max_angle;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_set_range(%d,%.2f = %.2f,%.2f)\n",srv->gpio,range,min_angle,max_angle);
|
||||||
|
pthread_mutex_lock(srv->params_lock);
|
||||||
|
srv->params.range = range;
|
||||||
|
srv->params.min_angle = min_angle;
|
||||||
|
srv->params.max_angle = max_angle;
|
||||||
|
pthread_mutex_unlock(srv->params_lock);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int servo_set_angle(const char *key, float angle)
|
||||||
|
{
|
||||||
|
struct servo *srv;
|
||||||
|
|
||||||
|
srv = lookup_exported_servo(key);
|
||||||
|
|
||||||
|
if (srv == NULL) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure we're between the range of allowable angles
|
||||||
|
if (angle < srv->params.min_angle || angle > srv->params.max_angle) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Angle specified (%.2f) for pin %d, is outside allowable range (%.2f,%.2f)", angle, srv->gpio, srv->params.min_angle,srv->params.max_angle);
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** servo_set_angle(%d,%.2f)\n",srv->gpio,angle);
|
||||||
|
pthread_mutex_lock(srv->params_lock);
|
||||||
|
srv->params.current_angle = angle;
|
||||||
|
pthread_mutex_unlock(srv->params_lock);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void servo_cleanup(void)
|
||||||
|
{
|
||||||
|
while (exported_servos != NULL) {
|
||||||
|
servo_disable(exported_servos->key);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
40
source/c_softservo.h
Normal file
40
source/c_softservo.h
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2017 Robert Wolterman
|
||||||
|
|
||||||
|
Using CHIP_IO SoftPWM code from Brady Hurlburt as a basis for the servo code
|
||||||
|
|
||||||
|
Copyright (c) 2016 Brady Hurlburt
|
||||||
|
|
||||||
|
Original BBIO Author Justin Cooper
|
||||||
|
Modified for CHIP_IO Author Brady Hurlburt
|
||||||
|
|
||||||
|
This file incorporates work covered by the following copyright and
|
||||||
|
permission notice, all modified code adopts the original license:
|
||||||
|
|
||||||
|
Copyright (c) 2013 Adafruit
|
||||||
|
Author: Justin Cooper
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
int servo_start(const char *key, float angle, float range);
|
||||||
|
int servo_disable(const char *key);
|
||||||
|
int servo_set_range(const char *key, float range);
|
||||||
|
int servo_set_angle(const char *key, float angle);
|
||||||
|
void servo_cleanup(void);
|
286
source/common.c
286
source/common.c
@ -36,7 +36,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "Python.h"
|
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
@ -50,90 +49,92 @@ SOFTWARE.
|
|||||||
int setup_error = 0;
|
int setup_error = 0;
|
||||||
int module_setup = 0;
|
int module_setup = 0;
|
||||||
|
|
||||||
pins_t pins_info[] = {
|
// Library Debug
|
||||||
{ "GND", "GND", "U13_1", -1, BASE_METHOD_AS_IS, -1, -1},
|
int DEBUG = 0;
|
||||||
{ "CHG-IN", "CHG-IN", "U13_2", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "VCC-5V", "VCC-5V", "U13_3", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U13_4", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "VCC-3V3", "VCC-3V3", "U13_5", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "TS", "TS", "U13_6", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "VCC-1V8", "VCC-1V8", "U13_7", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "BAT", "BAT", "U13_8", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "TWI1-SDA", "KPD-I2C-SDA", "U13_9", 48, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "PWRON", "PWRON", "U13_10", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "TWI1-SCK", "KPD-I2C-SCL", "U13_11", 47, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U13_12", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "X1", "X1", "U13_13", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "X2", "X2", "U13_14", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "Y1", "Y1", "U13_15", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "Y2", "Y2", "U13_16", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D2", "LCD-D2", "U13_17", 98, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "PWM0", "PWM0", "U13_18", 34, BASE_METHOD_AS_IS, 0, -1},
|
|
||||||
{ "LCD-D4", "LCD-D4", "U13_19", 100, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D3", "LCD-D3", "U13_20", 99, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D6", "LCD-D6", "U13_21", 102, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D5", "LCD-D5", "U13_22", 101, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D10", "LCD-D10", "U13_23", 106, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D7", "LCD-D7", "U13_24", 103, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D12", "LCD-D12", "U13_25", 108, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D11", "LCD-D11", "U13_26", 107, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D14", "LCD-D14", "U13_27", 110, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D13", "LCD-D13", "U13_28", 109, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D18", "LCD-D18", "U13_29", 114, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D15", "LCD-D15", "U13_30", 111, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D20", "LCD-D20", "U13_31", 116, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D19", "LCD-D19", "U13_32", 115, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D22", "LCD-D22", "U13_33", 118, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D21", "LCD-D21", "U13_34", 117, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-CLK", "LCD-CLK", "U13_35", 120, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-D23", "LCD-D23", "U13_36", 119, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-VSYNC", "LCD-VSYNC", "U13_37", 123, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-HSYNC", "LCD-HSYNC", "U13_38", 122, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U13_39", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LCD-DE", "LCD-DE", "U13_40", 121, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U14_1", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "VCC-5V", "VCC-5V", "U14_2", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "UART1-TX", "UART-TX", "U14_3", 195, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "HPL", "HPL", "U14_4", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "UART1-RX", "UART-RX", "U14_5", 196, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "HPCOM", "HPCOM", "U14_6", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "FEL", "FEL", "U14_7", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "HPR", "HPR", "U14_8", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "VCC-3V3", "VCC-3V3", "U14_9", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "MICM", "MICM", "U14_10", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "LRADC", "ADC", "U14_11", -1, BASE_METHOD_AS_IS, -1, 0},
|
|
||||||
{ "MICIN1", "MICIN1", "U14_12", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "XIO-P0", "XIO-P0", "U14_13", 0, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P1", "XIO-P1", "U14_14", 1, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P2", "GPIO1", "U14_15", 2, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P3", "GPIO2", "U14_16", 3, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P4", "GPIO3", "U14_17", 4, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P5", "GPIO4", "U14_18", 5, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P6", "GPIO5", "U14_19", 6, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "XIO-P7", "GPIO6", "U14_20", 7, BASE_METHOD_XIO, -1, -1},
|
|
||||||
{ "GND", "GND", "U14_21", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U14_22", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "AP-EINT1", "KPD-INT", "U14_23", 193, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "AP-EINT3", "AP-INT3", "U14_24", 35, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "TWI2-SDA", "I2C-SDA", "U14_25", 50, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "TWI2-SCK", "I2C-SCL", "U14_26", 49, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSIPCK", "SPI-SEL", "U14_27", 128, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSICK", "SPI-CLK", "U14_28", 129, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSIHSYNC", "SPI-MOSI", "U14_29", 130, BASE_METHOD_AS_IS, 1, -1},
|
|
||||||
{ "CSIVSYNC", "SPI-MISO", "U14_30", 131, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID0", "CSID0", "U14_31", 132, BASE_METHOD_AS_IS, 1, -1},
|
|
||||||
{ "CSID1", "CSID1", "U14_32", 133, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID2", "CSID2", "U14_33", 134, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID3", "CSID3", "U14_34", 135, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID4", "CSID4", "U14_35", 136, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID5", "CSID5", "U14_36", 137, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID6", "CSID6", "U14_37", 138, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "CSID7", "CSID7", "U14_38", 139, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U14_39", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ "GND", "GND", "U14_40", -1, BASE_METHOD_AS_IS, -1, -1},
|
|
||||||
{ NULL, NULL, NULL, -1, 0, -1, -1}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
pins_t pins_info[] = {
|
||||||
|
{ "GND", "GND", "U13_1", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CHG-IN", "CHG-IN", "U13_2", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "VCC-5V", "VCC-5V", "U13_3", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U13_4", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "VCC-3V3", "VCC-3V3", "U13_5", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "TS", "TS", "U13_6", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "VCC-1V8", "VCC-1V8", "U13_7", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "BAT", "BAT", "U13_8", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "TWI1-SDA", "KPD-I2C-SDA", "U13_9", 48, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "PWRON", "PWRON", "U13_10", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "TWI1-SCK", "KPD-I2C-SCL", "U13_11", 47, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U13_12", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "X1", "X1", "U13_13", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "X2", "X2", "U13_14", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "Y1", "Y1", "U13_15", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "Y2", "Y2", "U13_16", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D2", "LCD-D2", "U13_17", 98, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "PWM0", "PWM0", "U13_18", 34, BASE_METHOD_AS_IS, 0, -1, BOTH},
|
||||||
|
{ "LCD-D4", "LCD-D4", "U13_19", 100, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D3", "LCD-D3", "U13_20", 99, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D6", "LCD-D6", "U13_21", 102, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D5", "LCD-D5", "U13_22", 101, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D10", "LCD-D10", "U13_23", 106, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D7", "LCD-D7", "U13_24", 103, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D12", "LCD-D12", "U13_25", 108, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D11", "LCD-D11", "U13_26", 107, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D14", "LCD-D14", "U13_27", 110, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D13", "LCD-D13", "U13_28", 109, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D18", "LCD-D18", "U13_29", 114, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D15", "LCD-D15", "U13_30", 111, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D20", "LCD-D20", "U13_31", 116, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D19", "LCD-D19", "U13_32", 115, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D22", "LCD-D22", "U13_33", 118, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D21", "LCD-D21", "U13_34", 117, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-CLK", "LCD-CLK", "U13_35", 120, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-D23", "LCD-D23", "U13_36", 119, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-VSYNC", "LCD-VSYNC", "U13_37", 123, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-HSYNC", "LCD-HSYNC", "U13_38", 122, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U13_39", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LCD-DE", "LCD-DE", "U13_40", 121, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U14_1", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "VCC-5V", "VCC-5V", "U14_2", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "UART1-TX", "UART-TX", "U14_3", 195, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "HPL", "HPL", "U14_4", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "UART1-RX", "UART-RX", "U14_5", 196, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "HPCOM", "HPCOM", "U14_6", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "FEL", "FEL", "U14_7", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "HPR", "HPR", "U14_8", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "VCC-3V3", "VCC-3V3", "U14_9", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "MICM", "MICM", "U14_10", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "LRADC", "ADC", "U14_11", -1, BASE_METHOD_AS_IS, -1, 0, BOTH},
|
||||||
|
{ "MICIN1", "MICIN1", "U14_12", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "XIO-P0", "XIO-P0", "U14_13", 0, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P1", "XIO-P1", "U14_14", 1, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P2", "GPIO1", "U14_15", 2, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P3", "GPIO2", "U14_16", 3, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P4", "GPIO3", "U14_17", 4, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P5", "GPIO4", "U14_18", 5, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P6", "GPIO5", "U14_19", 6, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "XIO-P7", "GPIO6", "U14_20", 7, BASE_METHOD_XIO, -1, -1, CHIP},
|
||||||
|
{ "GND", "GND", "U14_21", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U14_22", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "AP-EINT1", "KPD-INT", "U14_23", 193, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "AP-EINT3", "AP-INT3", "U14_24", 35, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "TWI2-SDA", "I2C-SDA", "U14_25", 50, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "TWI2-SCK", "I2C-SCL", "U14_26", 49, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSIPCK", "SPI-SEL", "U14_27", 128, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSICK", "SPI-CLK", "U14_28", 129, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSIHSYNC", "SPI-MOSI", "U14_29", 130, BASE_METHOD_AS_IS, 1, -1, BOTH},
|
||||||
|
{ "CSIVSYNC", "SPI-MISO", "U14_30", 131, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID0", "CSID0", "U14_31", 132, BASE_METHOD_AS_IS, 1, -1, BOTH},
|
||||||
|
{ "CSID1", "CSID1", "U14_32", 133, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID2", "CSID2", "U14_33", 134, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID3", "CSID3", "U14_34", 135, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID4", "CSID4", "U14_35", 136, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID5", "CSID5", "U14_36", 137, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID6", "CSID6", "U14_37", 138, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "CSID7", "CSID7", "U14_38", 139, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U14_39", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ "GND", "GND", "U14_40", -1, BASE_METHOD_AS_IS, -1, -1, BOTH},
|
||||||
|
{ NULL, NULL, NULL, -1, 0, -1, -1, -1}
|
||||||
|
};
|
||||||
|
|
||||||
// CREDIT FOR THIS FUNCTION DUE TO HOWIE KATZ OF NTC AND STEVE FORD
|
// CREDIT FOR THIS FUNCTION DUE TO HOWIE KATZ OF NTC AND STEVE FORD
|
||||||
// THIS WILL FIND THE PROPER XIO BASE SYSFS NUMBER
|
// THIS WILL FIND THE PROPER XIO BASE SYSFS NUMBER
|
||||||
@ -215,6 +216,14 @@ int get_xio_base(void)
|
|||||||
return xio_base_address;
|
return xio_base_address;
|
||||||
} /* get_xio_base */
|
} /* get_xio_base */
|
||||||
|
|
||||||
|
void toggle_debug(void)
|
||||||
|
{
|
||||||
|
if (DEBUG) {
|
||||||
|
DEBUG = 0;
|
||||||
|
} else {
|
||||||
|
DEBUG = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int gpio_number(pins_t *pin)
|
int gpio_number(pins_t *pin)
|
||||||
{
|
{
|
||||||
@ -240,6 +249,22 @@ int gpio_number(pins_t *pin)
|
|||||||
return gpio_num;
|
return gpio_num;
|
||||||
} /* gpio_number */
|
} /* gpio_number */
|
||||||
|
|
||||||
|
int gpio_pud_capable(pins_t *pin)
|
||||||
|
{
|
||||||
|
int capable = -1;
|
||||||
|
|
||||||
|
switch (pin->base_method) {
|
||||||
|
case BASE_METHOD_AS_IS:
|
||||||
|
capable = 1;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case BASE_METHOD_XIO:
|
||||||
|
capable = 0;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return capable;
|
||||||
|
}
|
||||||
|
|
||||||
int lookup_gpio_by_key(const char *key)
|
int lookup_gpio_by_key(const char *key)
|
||||||
{
|
{
|
||||||
@ -274,6 +299,39 @@ int lookup_gpio_by_altname(const char *altname)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int lookup_pud_capable_by_key(const char *key)
|
||||||
|
{
|
||||||
|
pins_t *p;
|
||||||
|
for (p = pins_info; p->key != NULL; ++p) {
|
||||||
|
if (strcmp(p->key, key) == 0) {
|
||||||
|
return gpio_pud_capable(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int lookup_pud_capable_by_name(const char *name)
|
||||||
|
{
|
||||||
|
pins_t *p;
|
||||||
|
for (p = pins_info; p->name != NULL; ++p) {
|
||||||
|
if (strcmp(p->name, name) == 0) {
|
||||||
|
return gpio_pud_capable(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int lookup_pud_capable_by_altname(const char *altname)
|
||||||
|
{
|
||||||
|
pins_t *p;
|
||||||
|
for (p = pins_info; p->altname != NULL; ++p) {
|
||||||
|
if (strcmp(p->altname, altname) == 0) {
|
||||||
|
return gpio_pud_capable(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
int lookup_ain_by_key(const char *key)
|
int lookup_ain_by_key(const char *key)
|
||||||
{
|
{
|
||||||
pins_t *p;
|
pins_t *p;
|
||||||
@ -352,10 +410,16 @@ int get_pwm_key_by_name(const char *name, char *key)
|
|||||||
pins_t *p;
|
pins_t *p;
|
||||||
for (p = pins_info; p->name != NULL; ++p) {
|
for (p = pins_info; p->name != NULL; ++p) {
|
||||||
if (strcmp(p->name, name) == 0) {
|
if (strcmp(p->name, name) == 0) {
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** get_pwm_key_by_name: FOUND PWM KEY, VALIDATING MUX MODE **\n");
|
||||||
|
}
|
||||||
//validate it's a valid pwm pin
|
//validate it's a valid pwm pin
|
||||||
if (p->pwm_mux_mode == -1)
|
if (p->pwm_mux_mode == -1)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** get_pwm_key_by_name: PWM KEY IS VALID ##\n");
|
||||||
|
}
|
||||||
strncpy(key, p->key, 7);
|
strncpy(key, p->key, 7);
|
||||||
key[7] = '\0';
|
key[7] = '\0';
|
||||||
return 1;
|
return 1;
|
||||||
@ -381,6 +445,33 @@ int get_gpio_number(const char *key, int *gpio)
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int compute_port_pin(const char *key, int gpio, int *port, int *pin)
|
||||||
|
{
|
||||||
|
int capable = 0;
|
||||||
|
int rtn = -1;
|
||||||
|
|
||||||
|
capable = lookup_pud_capable_by_key(key);
|
||||||
|
if (capable < 0) {
|
||||||
|
capable = lookup_pud_capable_by_name(key);
|
||||||
|
if (capable < 0) {
|
||||||
|
capable = lookup_gpio_by_altname(key);
|
||||||
|
if (capable < 0) {
|
||||||
|
capable = 0; // default to false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (capable) {
|
||||||
|
// Method from:
|
||||||
|
// https://bbs.nextthing.co/t/chippy-gonzales-fast-gpio/14056/6?u=xtacocorex
|
||||||
|
*port = gpio / 32;
|
||||||
|
*pin = gpio % 32;
|
||||||
|
rtn = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return rtn;
|
||||||
|
}
|
||||||
|
|
||||||
int get_key(const char *input, char *key)
|
int get_key(const char *input, char *key)
|
||||||
{
|
{
|
||||||
if (!copy_key_by_key(input, key)) {
|
if (!copy_key_by_key(input, key)) {
|
||||||
@ -439,33 +530,6 @@ int build_path(const char *partial_path, const char *prefix, char *full_path, si
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int get_spi_bus_path_number(unsigned int spi)
|
|
||||||
{
|
|
||||||
char path[FILENAME_BUFFER_SIZE];
|
|
||||||
char ocp_dir[FILENAME_BUFFER_SIZE];
|
|
||||||
|
|
||||||
build_path("/sys/devices", "ocp", ocp_dir, sizeof(ocp_dir)); BUF2SMALL(ocp_dir);
|
|
||||||
|
|
||||||
if (spi == 0) {
|
|
||||||
snprintf(path, sizeof(path), "%s/48030000.spi/spi_master/spi1", ocp_dir); BUF2SMALL(path);
|
|
||||||
} else {
|
|
||||||
snprintf(path, sizeof(path), "%s/481a0000.spi/spi_master/spi1", ocp_dir); BUF2SMALL(path);
|
|
||||||
}
|
|
||||||
|
|
||||||
DIR* dir = opendir(path);
|
|
||||||
if (dir) {
|
|
||||||
closedir(dir);
|
|
||||||
//device is using /dev/spidev1.x
|
|
||||||
return 1;
|
|
||||||
} else if (ENOENT == errno) {
|
|
||||||
//device is using /dev/spidev2.x
|
|
||||||
return 2;
|
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// We do not know at compile time how many GPIOs there are, so it is not safe
|
// We do not know at compile time how many GPIOs there are, so it is not safe
|
||||||
// to declare per-GPIO arrays with a static size. The "dyn_int_array_*"
|
// to declare per-GPIO arrays with a static size. The "dyn_int_array_*"
|
||||||
// functions implement a dynamic integer array which grows as needed at run
|
// functions implement a dynamic integer array which grows as needed at run
|
||||||
|
@ -54,20 +54,27 @@ SOFTWARE.
|
|||||||
#define MODE_UNKNOWN -1
|
#define MODE_UNKNOWN -1
|
||||||
#define BOARD 10
|
#define BOARD 10
|
||||||
#define BCM 11
|
#define BCM 11
|
||||||
|
#define CHIP 0
|
||||||
|
#define CHIPPRO 1
|
||||||
|
#define BOTH 2
|
||||||
|
|
||||||
// In the pins_t structure, the "base_method" field tells how
|
// In the pins_t structure, the "base_method" field tells how
|
||||||
// the "gpio" field should be interpreted.
|
// the "gpio" field should be interpreted.
|
||||||
#define BASE_METHOD_AS_IS 1 /* use the gpio value directly */
|
#define BASE_METHOD_AS_IS 1 /* use the gpio value directly */
|
||||||
#define BASE_METHOD_XIO 2 /* add the gpio value to the XIO base */
|
#define BASE_METHOD_XIO 2 /* add the gpio value to the XIO base */
|
||||||
|
#define SPWM_ENABLED 1 /* pin able to be used by software pwm */
|
||||||
|
#define SPWM_DISABLED 0 /* pin unable to be used by software pwm */
|
||||||
|
|
||||||
typedef struct pins_t {
|
typedef struct pins_t {
|
||||||
const char *name;
|
const char *name;
|
||||||
const char *altname; /* alternate name as referenced on pocketchip pin header */
|
const char *altname; /* alternate name as referenced on pocketchip pin header */
|
||||||
const char *key;
|
const char *key;
|
||||||
|
//const char *altkey; /* alternate key for chip pro */
|
||||||
int gpio; /* port number to use under /sys/class/gpio */
|
int gpio; /* port number to use under /sys/class/gpio */
|
||||||
int base_method; /* modifier for port number; see BASE_METHOD_... */
|
int base_method; /* modifier for port number; see BASE_METHOD_... */
|
||||||
int pwm_mux_mode;
|
int pwm_mux_mode; /* pwm pin */
|
||||||
int ain;
|
int ain; /* analog pin */
|
||||||
|
int sbc_type; /* which sbc pin is allowed */
|
||||||
} pins_t;
|
} pins_t;
|
||||||
|
|
||||||
|
|
||||||
@ -77,17 +84,21 @@ struct dyn_int_array_s {
|
|||||||
};
|
};
|
||||||
typedef struct dyn_int_array_s dyn_int_array_t;
|
typedef struct dyn_int_array_s dyn_int_array_t;
|
||||||
|
|
||||||
|
|
||||||
#define FILENAME_BUFFER_SIZE 128
|
#define FILENAME_BUFFER_SIZE 128
|
||||||
|
|
||||||
int setup_error;
|
int setup_error;
|
||||||
int module_setup;
|
int module_setup;
|
||||||
|
int DEBUG;
|
||||||
|
|
||||||
int get_xio_base(void);
|
int get_xio_base(void);
|
||||||
int gpio_number(pins_t *pin);
|
int gpio_number(pins_t *pin);
|
||||||
|
int gpio_pud_capable(pins_t *pin);
|
||||||
int lookup_gpio_by_key(const char *key);
|
int lookup_gpio_by_key(const char *key);
|
||||||
int lookup_gpio_by_name(const char *name);
|
int lookup_gpio_by_name(const char *name);
|
||||||
int lookup_gpio_by_altname(const char *altname);
|
int lookup_gpio_by_altname(const char *altname);
|
||||||
|
int lookup_pud_capable_by_key(const char *key);
|
||||||
|
int lookup_pud_capable_by_name(const char *name);
|
||||||
|
int lookup_pud_capable_by_altname(const char *altname);
|
||||||
int lookup_ain_by_key(const char *key);
|
int lookup_ain_by_key(const char *key);
|
||||||
int lookup_ain_by_name(const char *name);
|
int lookup_ain_by_name(const char *name);
|
||||||
int copy_key_by_key(const char *input_key, char *key);
|
int copy_key_by_key(const char *input_key, char *key);
|
||||||
@ -99,10 +110,11 @@ int get_key(const char *input, char *key);
|
|||||||
int get_pwm_key(const char *input, char *key);
|
int get_pwm_key(const char *input, char *key);
|
||||||
int get_adc_ain(const char *key, unsigned int *ain);
|
int get_adc_ain(const char *key, unsigned int *ain);
|
||||||
int build_path(const char *partial_path, const char *prefix, char *full_path, size_t full_path_len);
|
int build_path(const char *partial_path, const char *prefix, char *full_path, size_t full_path_len);
|
||||||
int get_spi_bus_path_number(unsigned int spi);
|
|
||||||
void dyn_int_array_set(dyn_int_array_t **in_array, int i, int val, int initial_val);
|
void dyn_int_array_set(dyn_int_array_t **in_array, int i, int val, int initial_val);
|
||||||
int dyn_int_array_get(dyn_int_array_t **in_array, int i, int initial_val);
|
int dyn_int_array_get(dyn_int_array_t **in_array, int i, int initial_val);
|
||||||
void dyn_int_array_delete(dyn_int_array_t **in_array);
|
void dyn_int_array_delete(dyn_int_array_t **in_array);
|
||||||
void clear_error_msg(void);
|
void clear_error_msg(void);
|
||||||
char *get_error_msg(void);
|
char *get_error_msg(void);
|
||||||
void add_error_msg(char *msg);
|
void add_error_msg(char *msg);
|
||||||
|
void toggle_debug(void);
|
||||||
|
int compute_port_pin(const char *key, int gpio, int *port, int *pin);
|
||||||
|
@ -76,6 +76,18 @@ void define_constants(PyObject *module)
|
|||||||
both_edge = Py_BuildValue("i", BOTH_EDGE);
|
both_edge = Py_BuildValue("i", BOTH_EDGE);
|
||||||
PyModule_AddObject(module, "BOTH", both_edge);
|
PyModule_AddObject(module, "BOTH", both_edge);
|
||||||
|
|
||||||
version = Py_BuildValue("s", "0.2.1");
|
unknown = Py_BuildValue("i", MODE_UNKNOWN);
|
||||||
|
PyModule_AddObject(module, "UNKNOWN", unknown);
|
||||||
|
|
||||||
|
board = Py_BuildValue("i", BOARD);
|
||||||
|
PyModule_AddObject(module, "BOARD", board);
|
||||||
|
|
||||||
|
bcm = Py_BuildValue("i", BCM);
|
||||||
|
PyModule_AddObject(module, "BCM", bcm);
|
||||||
|
|
||||||
|
module_debug = Py_BuildValue("i", DEBUG ? Py_True: Py_False);
|
||||||
|
PyModule_AddObject(module, "DEBUG", module_debug);
|
||||||
|
|
||||||
|
version = Py_BuildValue("s", "0.4.0");
|
||||||
PyModule_AddObject(module, "VERSION", version);
|
PyModule_AddObject(module, "VERSION", version);
|
||||||
}
|
}
|
||||||
|
@ -10,5 +10,9 @@ PyObject *rising_edge;
|
|||||||
PyObject *falling_edge;
|
PyObject *falling_edge;
|
||||||
PyObject *both_edge;
|
PyObject *both_edge;
|
||||||
PyObject *version;
|
PyObject *version;
|
||||||
|
PyObject *unknown;
|
||||||
|
PyObject *board;
|
||||||
|
PyObject *bcm;
|
||||||
|
PyObject *module_debug;
|
||||||
|
|
||||||
void define_constants(PyObject *module);
|
void define_constants(PyObject *module);
|
@ -38,17 +38,23 @@ SOFTWARE.
|
|||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <sys/epoll.h>
|
#include <sys/epoll.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include "event_gpio.h"
|
#include "event_gpio.h"
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
const char *stredge[4] = {"none", "rising", "falling", "both"};
|
const char *stredge[4] = {"none", "rising", "falling", "both"};
|
||||||
|
|
||||||
|
// Memory Map for PUD
|
||||||
|
uint8_t *memmap;
|
||||||
|
|
||||||
// file descriptors
|
// file descriptors
|
||||||
struct fdx
|
struct fdx
|
||||||
{
|
{
|
||||||
@ -66,7 +72,8 @@ struct callback
|
|||||||
int fde;
|
int fde;
|
||||||
int gpio;
|
int gpio;
|
||||||
int edge;
|
int edge;
|
||||||
void (*func)(int gpio);
|
void* data;
|
||||||
|
void (*func)(int gpio, void* data);
|
||||||
struct callback *next;
|
struct callback *next;
|
||||||
};
|
};
|
||||||
struct callback *callbacks = NULL;
|
struct callback *callbacks = NULL;
|
||||||
@ -84,6 +91,63 @@ dyn_int_array_t *event_occurred = NULL;
|
|||||||
int thread_running = 0;
|
int thread_running = 0;
|
||||||
int epfd = -1;
|
int epfd = -1;
|
||||||
|
|
||||||
|
// Thanks to WereCatf and Chippy-Gonzales for the Memory Mapping code/help
|
||||||
|
int map_pio_memory()
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** map_pio_memory: opening /dev/mem **\n");
|
||||||
|
int fd = open("/dev/mem", O_RDWR|O_SYNC);
|
||||||
|
if(fd < 0) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "map_pio_memory: could not open /dev/mem (%s)", strerror(errno));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
// uint32_t addr = 0x01c20800 & ~(getpagesize() - 1);
|
||||||
|
//Requires memmap to be on pagesize-boundary
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** map_pio_memory: mapping memory **\n");
|
||||||
|
memmap = (uint8_t *)mmap(NULL, getpagesize()*2, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0x01C20000);
|
||||||
|
if(memmap == NULL) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "map_pio_memory: mmap failed (%s)", strerror(errno));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
close(fd);
|
||||||
|
|
||||||
|
//Set memmap to point to PIO-registers
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** map_pio_memory: moving to pio registers **\n");
|
||||||
|
memmap=memmap+0x800;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int gpio_get_pud(int port, int pin)
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_get_pud: port %d, pin %d **\n", port, pin);
|
||||||
|
volatile uint32_t *pioMem32, *configRegister;
|
||||||
|
pioMem32=(uint32_t *)(memmap+port*0x24+0x1c); //0x1c == pull-register
|
||||||
|
configRegister=pioMem32+(pin >> 4);
|
||||||
|
return *configRegister >> ((pin & 15) * 2) & 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
int gpio_set_pud(int port, int pin, uint8_t value)
|
||||||
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_set_pud: port %d, pin %d, value %d **\n", port, pin, value);
|
||||||
|
value &= 3;
|
||||||
|
volatile uint32_t *pioMem32, *configRegister;
|
||||||
|
uint32_t mask;
|
||||||
|
pioMem32=(uint32_t *)(memmap+port*0x24+0x1c); //0x1c == pull-register
|
||||||
|
configRegister=pioMem32+(pin >> 4);
|
||||||
|
mask = ~(3 << ((pin & 15) * 2));
|
||||||
|
*configRegister &= mask;
|
||||||
|
*configRegister |= value << ((pin & 15) * 2);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int gpio_export(int gpio)
|
int gpio_export(int gpio)
|
||||||
{
|
{
|
||||||
@ -92,6 +156,9 @@ int gpio_export(int gpio)
|
|||||||
char str_gpio[80];
|
char str_gpio[80];
|
||||||
struct gpio_exp *new_gpio, *g;
|
struct gpio_exp *new_gpio, *g;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_export **\n");
|
||||||
|
|
||||||
snprintf(filename, sizeof(filename), "/sys/class/gpio/export"); BUF2SMALL(filename);
|
snprintf(filename, sizeof(filename), "/sys/class/gpio/export"); BUF2SMALL(filename);
|
||||||
|
|
||||||
if ((fd = open(filename, O_WRONLY)) < 0)
|
if ((fd = open(filename, O_WRONLY)) < 0)
|
||||||
@ -114,6 +181,8 @@ int gpio_export(int gpio)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// add to list
|
// add to list
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_export: creating data struct **\n");
|
||||||
new_gpio = malloc(sizeof(struct gpio_exp)); ASSRT(new_gpio != NULL);
|
new_gpio = malloc(sizeof(struct gpio_exp)); ASSRT(new_gpio != NULL);
|
||||||
|
|
||||||
new_gpio->gpio = gpio;
|
new_gpio->gpio = gpio;
|
||||||
@ -214,7 +283,11 @@ int open_value_file(int gpio)
|
|||||||
// create file descriptor of value file
|
// create file descriptor of value file
|
||||||
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/value", gpio); BUF2SMALL(filename);
|
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/value", gpio); BUF2SMALL(filename);
|
||||||
|
|
||||||
if ((fd = open(filename, O_RDONLY | O_NONBLOCK)) < 0) {
|
// Changed this to open Read/Write to prevent a ton of file open/closes from happening when using
|
||||||
|
// the GPIO for SOFTPWM
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** open_value_file **\n");
|
||||||
|
if ((fd = open(filename, O_RDWR | O_NONBLOCK)) < 0) {
|
||||||
char err[256];
|
char err[256];
|
||||||
snprintf(err, sizeof(err), "open_value_file: could not open '%s' (%s)", filename, strerror(errno));
|
snprintf(err, sizeof(err), "open_value_file: could not open '%s' (%s)", filename, strerror(errno));
|
||||||
add_error_msg(err);
|
add_error_msg(err);
|
||||||
@ -233,6 +306,8 @@ int open_edge_file(int gpio)
|
|||||||
// create file descriptor of value file
|
// create file descriptor of value file
|
||||||
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/edge", gpio); BUF2SMALL(filename);
|
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/edge", gpio); BUF2SMALL(filename);
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** open_edge_file **\n");
|
||||||
if ((fd = open(filename, O_RDONLY | O_NONBLOCK)) < 0) {
|
if ((fd = open(filename, O_RDONLY | O_NONBLOCK)) < 0) {
|
||||||
char err[256];
|
char err[256];
|
||||||
snprintf(err, sizeof(err), "open_edge_file: could not open '%s' (%s)", filename, strerror(errno));
|
snprintf(err, sizeof(err), "open_edge_file: could not open '%s' (%s)", filename, strerror(errno));
|
||||||
@ -250,6 +325,9 @@ int gpio_unexport(int gpio)
|
|||||||
char str_gpio[16];
|
char str_gpio[16];
|
||||||
struct gpio_exp *g, *temp, *prev_g = NULL;
|
struct gpio_exp *g, *temp, *prev_g = NULL;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_unexport **\n");
|
||||||
|
|
||||||
close_value_fd(gpio);
|
close_value_fd(gpio);
|
||||||
|
|
||||||
snprintf(filename, sizeof(filename), "/sys/class/gpio/unexport"); BUF2SMALL(filename);
|
snprintf(filename, sizeof(filename), "/sys/class/gpio/unexport"); BUF2SMALL(filename);
|
||||||
@ -271,6 +349,8 @@ int gpio_unexport(int gpio)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_unexport: freeing memory **\n");
|
||||||
// remove from list
|
// remove from list
|
||||||
g = exported_gpios;
|
g = exported_gpios;
|
||||||
while (g != NULL)
|
while (g != NULL)
|
||||||
@ -312,6 +392,9 @@ int gpio_set_direction(int gpio, unsigned int in_flag)
|
|||||||
} else {
|
} else {
|
||||||
strncpy(direction, "in", ARRAY_SIZE(direction) - 1);
|
strncpy(direction, "in", ARRAY_SIZE(direction) - 1);
|
||||||
}
|
}
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_set_direction: %s **\n",direction);
|
||||||
|
|
||||||
ssize_t s = write(fd, direction, strlen(direction)); e_no = errno;
|
ssize_t s = write(fd, direction, strlen(direction)); e_no = errno;
|
||||||
close(fd);
|
close(fd);
|
||||||
if (s != strlen(direction)) {
|
if (s != strlen(direction)) {
|
||||||
@ -358,6 +441,9 @@ int gpio_get_direction(int gpio, unsigned int *value)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_get_direction: %s **\n",direction);
|
||||||
|
|
||||||
if (strcmp(direction, "out") == 0)
|
if (strcmp(direction, "out") == 0)
|
||||||
*value = OUTPUT;
|
*value = OUTPUT;
|
||||||
else if (strcmp(direction, "in") == 0)
|
else if (strcmp(direction, "in") == 0)
|
||||||
@ -375,17 +461,23 @@ int gpio_get_direction(int gpio, unsigned int *value)
|
|||||||
|
|
||||||
int gpio_set_value(int gpio, unsigned int value)
|
int gpio_set_value(int gpio, unsigned int value)
|
||||||
{
|
{
|
||||||
int fd, e_no;
|
// This now uses the value file descriptor that is set in the other struct
|
||||||
|
// in an effort to minimize opening/closing this
|
||||||
|
int fd = fd_lookup(gpio);
|
||||||
|
int e_no;
|
||||||
char filename[MAX_FILENAME];
|
char filename[MAX_FILENAME];
|
||||||
char vstr[16];
|
char vstr[16];
|
||||||
|
|
||||||
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/value", gpio); BUF2SMALL(filename);
|
snprintf(filename, sizeof(filename), "/sys/class/gpio/gpio%d/value", gpio); BUF2SMALL(filename);
|
||||||
|
|
||||||
if ((fd = open(filename, O_WRONLY)) < 0) {
|
if (!fd)
|
||||||
char err[256];
|
{
|
||||||
snprintf(err, sizeof(err), "gpio_set_value: could not open '%s' (%s)", filename, strerror(errno));
|
if ((fd = open_value_file(gpio)) == -1) {
|
||||||
add_error_msg(err);
|
char err[256];
|
||||||
return -1;
|
snprintf(err, sizeof(err), "gpio_get_value: could not open GPIO %d value file", gpio);
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (value) {
|
if (value) {
|
||||||
@ -394,8 +486,10 @@ int gpio_set_value(int gpio, unsigned int value)
|
|||||||
strncpy(vstr, "0", ARRAY_SIZE(vstr) - 1);
|
strncpy(vstr, "0", ARRAY_SIZE(vstr) - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//if (DEBUG)
|
||||||
|
// printf(" ** gpio_set_value: writing %s **\n", vstr);
|
||||||
|
|
||||||
ssize_t s = write(fd, vstr, strlen(vstr)); e_no = errno;
|
ssize_t s = write(fd, vstr, strlen(vstr)); e_no = errno;
|
||||||
close(fd);
|
|
||||||
|
|
||||||
if (s != strlen(vstr)) {
|
if (s != strlen(vstr)) {
|
||||||
char err[256];
|
char err[256];
|
||||||
@ -412,8 +506,7 @@ int gpio_get_value(int gpio, unsigned int *value)
|
|||||||
int fd = fd_lookup(gpio);
|
int fd = fd_lookup(gpio);
|
||||||
char ch;
|
char ch;
|
||||||
|
|
||||||
if (!fd)
|
if (!fd) {
|
||||||
{
|
|
||||||
if ((fd = open_value_file(gpio)) == -1) {
|
if ((fd = open_value_file(gpio)) == -1) {
|
||||||
char err[256];
|
char err[256];
|
||||||
snprintf(err, sizeof(err), "gpio_get_value: could not open GPIO %d value file", gpio);
|
snprintf(err, sizeof(err), "gpio_get_value: could not open GPIO %d value file", gpio);
|
||||||
@ -436,6 +529,9 @@ int gpio_get_value(int gpio, unsigned int *value)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_get_value: %c **\n", ch);
|
||||||
|
|
||||||
if (ch == '1') {
|
if (ch == '1') {
|
||||||
*value = 1;
|
*value = 1;
|
||||||
} else if (ch == '0') {
|
} else if (ch == '0') {
|
||||||
@ -450,6 +546,58 @@ int gpio_get_value(int gpio, unsigned int *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int gpio_get_more(int gpio, int bits, unsigned int *value)
|
||||||
|
{
|
||||||
|
int fd = fd_lookup(gpio);
|
||||||
|
char ch;
|
||||||
|
|
||||||
|
if (!fd) {
|
||||||
|
if ((fd = open_value_file(gpio)) == -1) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "gpio_get_more: could not open GPIO %d value file", gpio);
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Loop for our number of bits
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < bits; i++) {
|
||||||
|
|
||||||
|
if (lseek(fd, 0, SEEK_SET) < 0) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "gpio_get_more: could not seek GPIO %d (%s)", gpio, strerror(errno));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
ssize_t s = read(fd, &ch, sizeof(ch));
|
||||||
|
if (s < 0) {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "gpio_get_more: could not read GPIO %d (%s)", gpio, strerror(errno));
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ch == '1') {
|
||||||
|
*value |= (1 << i);
|
||||||
|
} else if (ch == '0') {
|
||||||
|
*value |= (0 << i);
|
||||||
|
} else {
|
||||||
|
char err[256];
|
||||||
|
snprintf(err, sizeof(err), "gpio_get_more: unrecognized read GPIO %d (%c)", gpio, ch);
|
||||||
|
add_error_msg(err);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (DEBUG) {
|
||||||
|
printf(" ** gpio_get_more: %c **\n", ch);
|
||||||
|
printf(" ** gpio_get_more: current value: %u **\n", *value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
int gpio_set_edge(int gpio, unsigned int edge)
|
int gpio_set_edge(int gpio, unsigned int edge)
|
||||||
{
|
{
|
||||||
int fd;
|
int fd;
|
||||||
@ -464,6 +612,9 @@ int gpio_set_edge(int gpio, unsigned int edge)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_set_edge: %s **\n", stredge[edge]);
|
||||||
|
|
||||||
ssize_t s = write(fd, stredge[edge], strlen(stredge[edge]) + 1);
|
ssize_t s = write(fd, stredge[edge], strlen(stredge[edge]) + 1);
|
||||||
if (s < 0) {
|
if (s < 0) {
|
||||||
char err[256];
|
char err[256];
|
||||||
@ -513,6 +664,9 @@ int gpio_get_edge(int gpio)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** gpio_get_edge: %s **\n", edge);
|
||||||
|
|
||||||
if (strcmp(edge, "rising") == 0)
|
if (strcmp(edge, "rising") == 0)
|
||||||
{
|
{
|
||||||
rtnedge = 1;
|
rtnedge = 1;
|
||||||
@ -545,20 +699,25 @@ int gpio_lookup(int fd)
|
|||||||
void exports_cleanup(void)
|
void exports_cleanup(void)
|
||||||
{
|
{
|
||||||
// unexport everything
|
// unexport everything
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** exports_cleanup **\n");
|
||||||
while (exported_gpios != NULL)
|
while (exported_gpios != NULL)
|
||||||
gpio_unexport(exported_gpios->gpio);
|
gpio_unexport(exported_gpios->gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
int add_edge_callback(int gpio, int edge, void (*func)(int gpio))
|
int add_edge_callback(int gpio, int edge, void (*func)(int gpio, void* data), void* data)
|
||||||
{
|
{
|
||||||
struct callback *cb = callbacks;
|
struct callback *cb = callbacks;
|
||||||
struct callback *new_cb;
|
struct callback *new_cb;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** add_edge_callback **\n");
|
||||||
new_cb = malloc(sizeof(struct callback)); ASSRT(new_cb != NULL);
|
new_cb = malloc(sizeof(struct callback)); ASSRT(new_cb != NULL);
|
||||||
|
|
||||||
new_cb->fde = open_edge_file(gpio);
|
new_cb->fde = open_edge_file(gpio);
|
||||||
new_cb->gpio = gpio;
|
new_cb->gpio = gpio;
|
||||||
new_cb->edge = edge;
|
new_cb->edge = edge;
|
||||||
|
new_cb->data = data;
|
||||||
new_cb->func = func;
|
new_cb->func = func;
|
||||||
new_cb->next = NULL;
|
new_cb->next = NULL;
|
||||||
|
|
||||||
@ -602,7 +761,9 @@ void run_callbacks(int gpio)
|
|||||||
// Only run if we are allowed
|
// Only run if we are allowed
|
||||||
if (canrun)
|
if (canrun)
|
||||||
{
|
{
|
||||||
cb->func(cb->gpio);
|
if (DEBUG)
|
||||||
|
printf(" ** run_callbacks: gpio triggered: %d **\n", gpio);
|
||||||
|
cb->func(cb->gpio, cb->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -620,6 +781,8 @@ void remove_callbacks(int gpio)
|
|||||||
{
|
{
|
||||||
if (cb->gpio == gpio)
|
if (cb->gpio == gpio)
|
||||||
{
|
{
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** remove_callbacks: gpio: %d **\n", gpio);
|
||||||
close(cb->fde);
|
close(cb->fde);
|
||||||
if (prev == NULL)
|
if (prev == NULL)
|
||||||
callbacks = cb->next;
|
callbacks = cb->next;
|
||||||
@ -753,6 +916,9 @@ int add_edge_detect(int gpio, unsigned int edge)
|
|||||||
struct epoll_event ev;
|
struct epoll_event ev;
|
||||||
long t = 0;
|
long t = 0;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** add_edge_detect: gpio: %d **\n", gpio);
|
||||||
|
|
||||||
// check to see if this gpio has been added already
|
// check to see if this gpio has been added already
|
||||||
if (gpio_event_add(gpio) != 0)
|
if (gpio_event_add(gpio) != 0)
|
||||||
return 1;
|
return 1;
|
||||||
@ -819,6 +985,9 @@ void remove_edge_detect(int gpio)
|
|||||||
struct epoll_event ev;
|
struct epoll_event ev;
|
||||||
int fd = fd_lookup(gpio);
|
int fd = fd_lookup(gpio);
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** remove_edge_detect: gpio : %d **\n", gpio);
|
||||||
|
|
||||||
// delete callbacks for gpio
|
// delete callbacks for gpio
|
||||||
remove_callbacks(gpio);
|
remove_callbacks(gpio);
|
||||||
|
|
||||||
@ -862,6 +1031,9 @@ int blocking_wait_for_edge(int gpio, unsigned int edge)
|
|||||||
struct epoll_event events, ev;
|
struct epoll_event events, ev;
|
||||||
char buf;
|
char buf;
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** blocking_wait_for_edge: gpio: %d **\n", gpio);
|
||||||
|
|
||||||
if ((epfd = epoll_create(1)) == -1) {
|
if ((epfd = epoll_create(1)) == -1) {
|
||||||
char err[256];
|
char err[256];
|
||||||
snprintf(err, sizeof(err), "blocking_wait_for_edge: could not epoll_create GPIO %d (%s)", gpio, strerror(errno));
|
snprintf(err, sizeof(err), "blocking_wait_for_edge: could not epoll_create GPIO %d (%s)", gpio, strerror(errno));
|
||||||
@ -940,6 +1112,9 @@ int blocking_wait_for_edge(int gpio, unsigned int edge)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** blocking_wait_for_edge: gpio triggered: %d **\n", gpio);
|
||||||
|
|
||||||
gpio_event_remove(gpio);
|
gpio_event_remove(gpio);
|
||||||
close(epfd);
|
close(epfd);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -36,6 +36,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
#define NO_EDGE 0
|
#define NO_EDGE 0
|
||||||
#define RISING_EDGE 1
|
#define RISING_EDGE 1
|
||||||
#define FALLING_EDGE 2
|
#define FALLING_EDGE 2
|
||||||
@ -54,6 +56,12 @@ SOFTWARE.
|
|||||||
#define PUD_DOWN 1
|
#define PUD_DOWN 1
|
||||||
#define PUD_UP 2
|
#define PUD_UP 2
|
||||||
|
|
||||||
|
extern uint8_t *memmap;
|
||||||
|
|
||||||
|
int map_pio_memory(void);
|
||||||
|
int gpio_get_pud(int port, int pin);
|
||||||
|
int gpio_set_pud(int port, int pin, uint8_t value);
|
||||||
|
|
||||||
int gpio_export(int gpio);
|
int gpio_export(int gpio);
|
||||||
int gpio_unexport(int gpio);
|
int gpio_unexport(int gpio);
|
||||||
void exports_cleanup(void);
|
void exports_cleanup(void);
|
||||||
@ -61,6 +69,7 @@ int gpio_set_direction(int gpio, unsigned int in_flag);
|
|||||||
int gpio_get_direction(int gpio, unsigned int *value);
|
int gpio_get_direction(int gpio, unsigned int *value);
|
||||||
int gpio_set_value(int gpio, unsigned int value);
|
int gpio_set_value(int gpio, unsigned int value);
|
||||||
int gpio_get_value(int gpio, unsigned int *value);
|
int gpio_get_value(int gpio, unsigned int *value);
|
||||||
|
int gpio_get_more(int gpio, int bits, unsigned int *value);
|
||||||
int fd_lookup(int gpio);
|
int fd_lookup(int gpio);
|
||||||
int open_value_file(int gpio);
|
int open_value_file(int gpio);
|
||||||
|
|
||||||
@ -70,7 +79,7 @@ int gpio_set_edge(int gpio, unsigned int edge);
|
|||||||
int gpio_get_edge(int gpio);
|
int gpio_get_edge(int gpio);
|
||||||
int add_edge_detect(int gpio, unsigned int edge);
|
int add_edge_detect(int gpio, unsigned int edge);
|
||||||
void remove_edge_detect(int gpio);
|
void remove_edge_detect(int gpio);
|
||||||
int add_edge_callback(int gpio, int edge, void (*func)(int gpio));
|
int add_edge_callback(int gpio, int edge, void (*func)(int gpio, void* data), void* data);
|
||||||
int event_detected(int gpio);
|
int event_detected(int gpio);
|
||||||
int gpio_event_add(int gpio);
|
int gpio_event_add(int gpio);
|
||||||
int gpio_event_remove(int gpio);
|
int gpio_event_remove(int gpio);
|
||||||
|
309
source/py_gpio.c
309
source/py_gpio.c
@ -58,26 +58,69 @@ struct py_callback
|
|||||||
};
|
};
|
||||||
static struct py_callback *py_callbacks = NULL;
|
static struct py_callback *py_callbacks = NULL;
|
||||||
|
|
||||||
|
// python function toggle_debug()
|
||||||
|
static PyObject *py_toggle_debug(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
// toggle debug printing
|
||||||
|
toggle_debug();
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
static int init_module(void)
|
static int init_module(void)
|
||||||
{
|
{
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (map_pio_memory() < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "init_module error (%s)", get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we make it here, we're good to go
|
||||||
|
if (DEBUG)
|
||||||
|
printf(" ** init_module: setup complete **\n");
|
||||||
module_setup = 1;
|
module_setup = 1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void remember_gpio_direction(int gpio, int direction)
|
static void remember_gpio_direction(int gpio, int direction)
|
||||||
{
|
{
|
||||||
dyn_int_array_set(&gpio_direction, gpio, direction, -1);
|
dyn_int_array_set(&gpio_direction, gpio, direction, -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// python function cleanup()
|
// Dummy function to mimic RPi.GPIO for easier porting.
|
||||||
static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
// python function setmode(mode)
|
||||||
|
static PyObject *py_setmode(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python function cleanup(channel=None)
|
||||||
|
static PyObject *py_cleanup(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char *channel;
|
||||||
|
static char *kwlist[] = {"channel", NULL};
|
||||||
|
|
||||||
clear_error_msg();
|
clear_error_msg();
|
||||||
|
|
||||||
// clean up any exports
|
// Channel is optional
|
||||||
event_cleanup();
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", kwlist, &channel)) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The !channel fixes issues #50
|
||||||
|
if (channel == NULL || strcmp(channel, "\0") == 0) {
|
||||||
|
event_cleanup();
|
||||||
|
} else {
|
||||||
|
if (get_gpio_number(channel, &gpio) < 0) {
|
||||||
|
event_cleanup();
|
||||||
|
}
|
||||||
|
gpio_unexport(gpio);
|
||||||
|
}
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
@ -85,69 +128,87 @@ static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
|||||||
// python function setup(channel, direction, pull_up_down=PUD_OFF, initial=None)
|
// python function setup(channel, direction, pull_up_down=PUD_OFF, initial=None)
|
||||||
static PyObject *py_setup_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
static PyObject *py_setup_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
{
|
{
|
||||||
int gpio;
|
int gpio;
|
||||||
char *channel;
|
char *channel;
|
||||||
int direction;
|
int direction;
|
||||||
int pud = PUD_OFF;
|
int pud = PUD_OFF;
|
||||||
int initial = 0;
|
int initial = 0;
|
||||||
static char *kwlist[] = {"channel", "direction", "pull_up_down", "initial", NULL};
|
static char *kwlist[] = {"channel", "direction", "pull_up_down", "initial", NULL};
|
||||||
|
|
||||||
clear_error_msg();
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "si|ii", kwlist, &channel, &direction, &pud, &initial))
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "si|ii", kwlist, &channel, &direction, &pud, &initial))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (!module_setup) {
|
if (!module_setup) {
|
||||||
init_module();
|
init_module();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (direction != INPUT && direction != OUTPUT)
|
||||||
|
{
|
||||||
|
PyErr_SetString(PyExc_ValueError, "An invalid direction was passed to setup()");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (direction != INPUT && direction != OUTPUT)
|
// Force pud to be off if we're configured for output
|
||||||
{
|
if (direction == OUTPUT) {
|
||||||
PyErr_SetString(PyExc_ValueError, "An invalid direction was passed to setup()");
|
pud = PUD_OFF;
|
||||||
return NULL;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if (direction == OUTPUT)
|
if (pud != PUD_OFF && pud != PUD_DOWN && pud != PUD_UP)
|
||||||
pud = PUD_OFF;
|
{
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid value for pull_up_down - should be either PUD_OFF, PUD_UP or PUD_DOWN");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (pud != PUD_OFF && pud != PUD_DOWN && pud != PUD_UP)
|
if (get_gpio_number(channel, &gpio) < 0) {
|
||||||
{
|
char err[2000];
|
||||||
PyErr_SetString(PyExc_ValueError, "Invalid value for pull_up_down - should be either PUD_OFF, PUD_UP or PUD_DOWN");
|
snprintf(err, sizeof(err), "Invalid channel %s. (%s)", channel, get_error_msg());
|
||||||
return NULL;
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
}
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (get_gpio_number(channel, &gpio) < 0) {
|
if (gpio_export(gpio) < 0) {
|
||||||
char err[2000];
|
char err[2000];
|
||||||
snprintf(err, sizeof(err), "Invalid channel %s. (%s)", channel, get_error_msg());
|
snprintf(err, sizeof(err), "Error setting up channel %s, maybe already exported? (%s)", channel, get_error_msg());
|
||||||
PyErr_SetString(PyExc_ValueError, err);
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
if (gpio_set_direction(gpio, direction) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error setting direction %d on channel %s. (%s)", direction, channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (gpio_export(gpio) < 0) {
|
// Pull Up/Down
|
||||||
char err[2000];
|
// Only if the pin we want is able to use it (R8 Owned, no XIO)
|
||||||
snprintf(err, sizeof(err), "Error setting up channel %s, maybe already exported? (%s)", channel, get_error_msg());
|
int port, pin;
|
||||||
PyErr_SetString(PyExc_RuntimeError, err);
|
if (compute_port_pin(channel, gpio, &port, &pin) == 0) {
|
||||||
return NULL;
|
// Set the PUD
|
||||||
}
|
gpio_set_pud(port, pin, pud);
|
||||||
if (gpio_set_direction(gpio, direction) < 0) {
|
// Check it was set properly
|
||||||
char err[2000];
|
int pudr = gpio_get_pud(port, pin);
|
||||||
snprintf(err, sizeof(err), "Error setting direction %d on channel %s. (%s)", direction, channel, get_error_msg());
|
if (pudr != pud) {
|
||||||
PyErr_SetString(PyExc_RuntimeError, err);
|
char err[2000];
|
||||||
return NULL;
|
snprintf(err, sizeof(err), "Error setting pull up down %d on channel %s", pud, channel);
|
||||||
}
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
if (direction == OUTPUT) {
|
return NULL;
|
||||||
if (gpio_set_value(gpio, initial) < 0) {
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (direction == OUTPUT) {
|
||||||
|
if (gpio_set_value(gpio, initial) < 0) {
|
||||||
char err[2000];
|
char err[2000];
|
||||||
snprintf(err, sizeof(err), "Error setting initial value %d on channel %s. (%s)", initial, channel, get_error_msg());
|
snprintf(err, sizeof(err), "Error setting initial value %d on channel %s. (%s)", initial, channel, get_error_msg());
|
||||||
PyErr_SetString(PyExc_RuntimeError, err);
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
remember_gpio_direction(gpio, direction);
|
remember_gpio_direction(gpio, direction);
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
} /* py_setup_channel */
|
} /* py_setup_channel */
|
||||||
|
|
||||||
|
|
||||||
@ -225,7 +286,84 @@ static PyObject *py_input_gpio(PyObject *self, PyObject *args)
|
|||||||
return py_value;
|
return py_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void run_py_callbacks(int gpio)
|
//TODO: Come up with a way to merge py_read_byte_gpio and py_read_word_gpio
|
||||||
|
// python function value = read_byte(channel)
|
||||||
|
static PyObject *py_read_byte_gpio(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char *channel;
|
||||||
|
unsigned int value = 0;
|
||||||
|
PyObject *py_value;
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTuple(args, "s", &channel))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (get_gpio_number(channel, &gpio)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid channel");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check channel is set up as an input or output
|
||||||
|
if (!module_setup || (dyn_int_array_get(&gpio_direction, gpio, -1) == -1))
|
||||||
|
{
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, "You must setup() the GPIO channel first");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We only want to get a 8 bits here
|
||||||
|
if (gpio_get_more(gpio, 8, &value) < 0) {
|
||||||
|
char err[1024];
|
||||||
|
snprintf(err, sizeof(err), "Could not get 8 bits of data ('%s')", get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
py_value = Py_BuildValue("i", value);
|
||||||
|
|
||||||
|
return py_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python function value = read_word(channel)
|
||||||
|
static PyObject *py_read_word_gpio(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char *channel;
|
||||||
|
unsigned int value = 0;
|
||||||
|
PyObject *py_value;
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTuple(args, "s", &channel))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (get_gpio_number(channel, &gpio)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid channel");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check channel is set up as an input or output
|
||||||
|
if (!module_setup || (dyn_int_array_get(&gpio_direction, gpio, -1) == -1))
|
||||||
|
{
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, "You must setup() the GPIO channel first");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// We only want to get a 8 bits here
|
||||||
|
if (gpio_get_more(gpio, 16, &value) < 0) {
|
||||||
|
char err[1024];
|
||||||
|
snprintf(err, sizeof(err), "Could not get 16 bits of data ('%s')", get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
py_value = Py_BuildValue("i", value);
|
||||||
|
|
||||||
|
return py_value;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void run_py_callbacks(int gpio, void* data)
|
||||||
{
|
{
|
||||||
PyObject *result;
|
PyObject *result;
|
||||||
PyGILState_STATE gstate;
|
PyGILState_STATE gstate;
|
||||||
@ -294,7 +432,7 @@ static int add_py_callback(char *channel, int gpio, int edge, unsigned int bounc
|
|||||||
cb = cb->next;
|
cb = cb->next;
|
||||||
cb->next = new_py_cb;
|
cb->next = new_py_cb;
|
||||||
}
|
}
|
||||||
add_edge_callback(gpio, edge, run_py_callbacks);
|
add_edge_callback(gpio, edge, run_py_callbacks, NULL);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -717,10 +855,6 @@ static PyObject *py_selftest(PyObject *self, PyObject *args)
|
|||||||
ASSRT(0 == build_path("/home", "ip", fp, sizeof(fp)));
|
ASSRT(0 == build_path("/home", "ip", fp, sizeof(fp)));
|
||||||
ASSRT(0 == build_path("/NOTFOUND", "ch", fp, sizeof(fp)));
|
ASSRT(0 == build_path("/NOTFOUND", "ch", fp, sizeof(fp)));
|
||||||
|
|
||||||
printf("Testing get_spi_bus_path_number\n");
|
|
||||||
ASSRT(2 == get_spi_bus_path_number(0)); /* doesn't really work on CHIP */
|
|
||||||
ASSRT(2 == get_spi_bus_path_number(1)); /* doesn't really work on CHIP */
|
|
||||||
|
|
||||||
printf("Testing error message buffer\n");
|
printf("Testing error message buffer\n");
|
||||||
clear_error_msg();
|
clear_error_msg();
|
||||||
ASSRT(0 == strlen(get_error_msg()));
|
ASSRT(0 == strlen(get_error_msg()));
|
||||||
@ -749,11 +883,58 @@ static PyObject *py_selftest(PyObject *self, PyObject *args)
|
|||||||
|
|
||||||
static const char moduledocstring[] = "GPIO functionality of a CHIP using Python";
|
static const char moduledocstring[] = "GPIO functionality of a CHIP using Python";
|
||||||
|
|
||||||
|
/*
|
||||||
|
mine for changing pin directipn
|
||||||
|
*/
|
||||||
|
|
||||||
|
static PyObject *py_set_direction(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char *channel;
|
||||||
|
int direction;
|
||||||
|
static char *kwlist[] = { "channel", "direction", NULL };
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "si|ii", kwlist, &channel, &direction))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (!module_setup) {
|
||||||
|
init_module();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (direction != INPUT && direction != OUTPUT)
|
||||||
|
{
|
||||||
|
PyErr_SetString(PyExc_ValueError, "An invalid direction was passed to setup()");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (get_gpio_number(channel, &gpio) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Invalid channel %s. (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gpio_set_direction(gpio, direction) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error setting direction %d on channel %s. (%s)", direction, channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
remember_gpio_direction(gpio, direction);
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
PyMethodDef gpio_methods[] = {
|
PyMethodDef gpio_methods[] = {
|
||||||
{"setup", (PyCFunction)py_setup_channel, METH_VARARGS | METH_KEYWORDS, "Set up the GPIO channel, direction and (optional) pull/up down control\nchannel - Either: CHIP board pin number (not R8 GPIO 00..nn number). Pins start from 1\n or : CHIP GPIO name\ndirection - INPUT or OUTPUT\n[pull_up_down] - PUD_OFF (default), PUD_UP or PUD_DOWN\n[initial] - Initial value for an output channel"},
|
{"setup", (PyCFunction)py_setup_channel, METH_VARARGS | METH_KEYWORDS, "Set up the GPIO channel, direction and (optional) pull/up down control\nchannel - Either: CHIP board pin number (not R8 GPIO 00..nn number). Pins start from 1\n or : CHIP GPIO name\ndirection - INPUT or OUTPUT\n[pull_up_down] - PUD_OFF (default), PUD_UP or PUD_DOWN\n[initial] - Initial value for an output channel"},
|
||||||
{"cleanup", py_cleanup, METH_VARARGS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
{"cleanup", (PyCFunction)py_cleanup, METH_VARARGS | METH_KEYWORDS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
||||||
{"output", py_output_gpio, METH_VARARGS, "Output to a GPIO channel\ngpio - gpio channel\nvalue - 0/1 or False/True or LOW/HIGH"},
|
{"output", py_output_gpio, METH_VARARGS, "Output to a GPIO channel\ngpio - gpio channel\nvalue - 0/1 or False/True or LOW/HIGH"},
|
||||||
{"input", py_input_gpio, METH_VARARGS, "Input from a GPIO channel. Returns HIGH=1=True or LOW=0=False\ngpio - gpio channel"},
|
{"input", py_input_gpio, METH_VARARGS, "Input from a GPIO channel. Returns HIGH=1=True or LOW=0=False\ngpio - gpio channel"},
|
||||||
|
{"read_byte", py_read_byte_gpio, METH_VARARGS, "Read a byte (8 bits) from a set of GPIO channels. Returns 8-bits of integer data\ngpio - gpio channel."},
|
||||||
|
{"read_word", py_read_word_gpio, METH_VARARGS, "Read a word (16 bits) from a set of GPIO channels. Returns 16-bits of integer data\ngpio - gpio channel."},
|
||||||
{"add_event_detect", (PyCFunction)py_add_event_detect, METH_VARARGS | METH_KEYWORDS, "Enable edge detection events for a particular GPIO channel.\nchannel - either board pin number or BCM number depending on which mode is set.\nedge - RISING, FALLING or BOTH\n[callback] - A callback function for the event (optional)\n[bouncetime] - Switch bounce timeout in ms for callback"},
|
{"add_event_detect", (PyCFunction)py_add_event_detect, METH_VARARGS | METH_KEYWORDS, "Enable edge detection events for a particular GPIO channel.\nchannel - either board pin number or BCM number depending on which mode is set.\nedge - RISING, FALLING or BOTH\n[callback] - A callback function for the event (optional)\n[bouncetime] - Switch bounce timeout in ms for callback"},
|
||||||
{"remove_event_detect", py_remove_event_detect, METH_VARARGS, "Remove edge detection for a particular GPIO channel\ngpio - gpio channel"},
|
{"remove_event_detect", py_remove_event_detect, METH_VARARGS, "Remove edge detection for a particular GPIO channel\ngpio - gpio channel"},
|
||||||
{"event_detected", py_event_detected, METH_VARARGS, "Returns True if an edge has occured on a given GPIO. You need to enable edge detection using add_event_detect() first.\ngpio - gpio channel"},
|
{"event_detected", py_event_detected, METH_VARARGS, "Returns True if an edge has occured on a given GPIO. You need to enable edge detection using add_event_detect() first.\ngpio - gpio channel"},
|
||||||
@ -763,11 +944,15 @@ PyMethodDef gpio_methods[] = {
|
|||||||
{"setwarnings", py_setwarnings, METH_VARARGS, "Enable or disable warning messages"},
|
{"setwarnings", py_setwarnings, METH_VARARGS, "Enable or disable warning messages"},
|
||||||
{"get_gpio_base", py_gpio_base, METH_VARARGS, "Get the XIO base number for sysfs"},
|
{"get_gpio_base", py_gpio_base, METH_VARARGS, "Get the XIO base number for sysfs"},
|
||||||
{"selftest", py_selftest, METH_VARARGS, "Internal unit tests"},
|
{"selftest", py_selftest, METH_VARARGS, "Internal unit tests"},
|
||||||
|
{"direction", (PyCFunction)py_set_direction, METH_VARARGS | METH_KEYWORDS, "Change direction of gpio channel. Either INPUT or OUTPUT\n" },
|
||||||
|
{"setmode", (PyCFunction)py_setmode, METH_VARARGS, "Dummy function that does nothing but maintain compatibility with RPi.GPIO\n" },
|
||||||
|
{"toggle_debug", py_toggle_debug, METH_VARARGS, "Toggles the enabling/disabling of Debug print output"},
|
||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#if PY_MAJOR_VERSION > 2
|
#if PY_MAJOR_VERSION > 2
|
||||||
static struct PyModuleDef rpigpiomodule = {
|
static struct PyModuleDef chipgpiomodule = {
|
||||||
PyModuleDef_HEAD_INIT,
|
PyModuleDef_HEAD_INIT,
|
||||||
"GPIO", // name of module
|
"GPIO", // name of module
|
||||||
moduledocstring, // module documentation, may be NULL
|
moduledocstring, // module documentation, may be NULL
|
||||||
@ -787,7 +972,7 @@ PyMODINIT_FUNC initGPIO(void)
|
|||||||
clear_error_msg();
|
clear_error_msg();
|
||||||
|
|
||||||
#if PY_MAJOR_VERSION > 2
|
#if PY_MAJOR_VERSION > 2
|
||||||
if ((module = PyModule_Create(&rpigpiomodule)) == NULL)
|
if ((module = PyModule_Create(&chipgpiomodule)) == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
#else
|
#else
|
||||||
if ((module = Py_InitModule3("GPIO", gpio_methods, moduledocstring)) == NULL)
|
if ((module = Py_InitModule3("GPIO", gpio_methods, moduledocstring)) == NULL)
|
||||||
|
133
source/py_pwm.c
133
source/py_pwm.c
@ -43,6 +43,15 @@ static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
|||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// python function toggle_debug()
|
||||||
|
static PyObject *py_toggle_debug(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
// toggle debug printing
|
||||||
|
toggle_debug();
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
// python function start(channel, duty_cycle, freq)
|
// python function start(channel, duty_cycle, freq)
|
||||||
static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
{
|
{
|
||||||
@ -53,6 +62,8 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
int polarity = 0;
|
int polarity = 0;
|
||||||
static char *kwlist[] = {"channel", "duty_cycle", "frequency", "polarity", NULL};
|
static char *kwlist[] = {"channel", "duty_cycle", "frequency", "polarity", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ffi", kwlist, &channel, &duty_cycle, &frequency, &polarity)) {
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ffi", kwlist, &channel, &duty_cycle, &frequency, &polarity)) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -62,14 +73,12 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (duty_cycle < 0.0 || duty_cycle > 100.0)
|
if (duty_cycle < 0.0 || duty_cycle > 100.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frequency <= 0.0)
|
if (frequency <= 0.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -79,8 +88,12 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!pwm_start(key, duty_cycle, frequency, polarity))
|
if (pwm_start(key, duty_cycle, frequency, polarity) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Unable to start PWM: %s (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
@ -91,6 +104,8 @@ static PyObject *py_stop_channel(PyObject *self, PyObject *args, PyObject *kwarg
|
|||||||
char key[8];
|
char key[8];
|
||||||
char *channel;
|
char *channel;
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTuple(args, "s", &channel))
|
if (!PyArg_ParseTuple(args, "s", &channel))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@ -99,7 +114,12 @@ static PyObject *py_stop_channel(PyObject *self, PyObject *args, PyObject *kwarg
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
pwm_disable(key);
|
if (pwm_disable(key) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "PWM: %s issue: (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
@ -112,11 +132,12 @@ static PyObject *py_set_duty_cycle(PyObject *self, PyObject *args, PyObject *kwa
|
|||||||
float duty_cycle = 0.0;
|
float duty_cycle = 0.0;
|
||||||
static char *kwlist[] = {"channel", "duty_cycle", NULL};
|
static char *kwlist[] = {"channel", "duty_cycle", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &duty_cycle))
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &duty_cycle))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (duty_cycle < 0.0 || duty_cycle > 100.0)
|
if (duty_cycle < 0.0 || duty_cycle > 100.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -127,7 +148,50 @@ static PyObject *py_set_duty_cycle(PyObject *self, PyObject *args, PyObject *kwa
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pwm_set_duty_cycle(key, duty_cycle) == -1) {
|
if (pwm_set_duty_cycle(key, duty_cycle) == -1) {
|
||||||
PyErr_SetString(PyExc_RuntimeError, "You must start() the PWM channel first");
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "PWM: %s issue: (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python method PWM.set_pulse_width(channel, pulse_width_ns)
|
||||||
|
static PyObject *py_set_pulse_width_ns(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
char key[8];
|
||||||
|
char *channel;
|
||||||
|
unsigned long pulse_width_ns = 0.0;
|
||||||
|
unsigned long period_ns;
|
||||||
|
static char *kwlist[] = {"channel", "pulse_width_ns", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|k", kwlist, &channel, &pulse_width_ns))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (!get_pwm_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get the period out of the data struct
|
||||||
|
int rtn = pwm_get_period_ns(key, &period_ns);
|
||||||
|
if (rtn == -1) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "period unable to be obtained");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pulse_width_ns < 0.0 || pulse_width_ns > period_ns) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "pulse width must have a value from 0 to period");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwm_set_pulse_width_ns(key, pulse_width_ns) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "PWM: %s issue: (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -142,11 +206,12 @@ static PyObject *py_set_frequency(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
float frequency = 1.0;
|
float frequency = 1.0;
|
||||||
static char *kwlist[] = {"channel", "frequency", NULL};
|
static char *kwlist[] = {"channel", "frequency", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &frequency))
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &frequency))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (frequency <= 0.0)
|
if (frequency <= 0.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -156,24 +221,60 @@ static PyObject *py_set_frequency(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pwm_set_frequency(key, frequency) == -1) {
|
if (pwm_set_frequency(key, frequency) < 0) {
|
||||||
PyErr_SetString(PyExc_RuntimeError, "You must start() the PWM channel first");
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "PWM: %s issue: (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// python method PWM.set_period_ns(channel, period_ns)
|
||||||
|
static PyObject *py_set_period_ns(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
char key[8];
|
||||||
|
char *channel;
|
||||||
|
unsigned long period_ns = 2e6;
|
||||||
|
static char *kwlist[] = {"channel", "period_ns", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|k", kwlist, &channel, &period_ns))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (period_ns <= 0) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "period must be greater than 0ns");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!get_pwm_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwm_set_period_ns(key, period_ns) < 0) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "PWM: %s issue: (%s)", channel, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_ValueError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
static const char moduledocstring[] = "Hardware PWM functionality of a CHIP using Python";
|
static const char moduledocstring[] = "Hardware PWM functionality of a CHIP using Python";
|
||||||
|
|
||||||
PyMethodDef pwm_methods[] = {
|
PyMethodDef pwm_methods[] = {
|
||||||
{"start", (PyCFunction)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the PWM channel. channel can be in the form of 'PWM0', or 'U13_18'"},
|
{"start", (PyCFunction)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the PWM channel. channel can be in the form of 'PWM0', or 'U13_18'"},
|
||||||
{"stop", (PyCFunction)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the PWM channel. channel can be in the form of 'PWM0', or 'U13_18'"},
|
{"stop", (PyCFunction)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the PWM channel. channel can be in the form of 'PWM0', or 'U13_18'"},
|
||||||
{ "set_duty_cycle", (PyCFunction)py_set_duty_cycle, METH_VARARGS, "Change the duty cycle\ndutycycle - between 0.0 and 100.0" },
|
{"set_duty_cycle", (PyCFunction)py_set_duty_cycle, METH_VARARGS, "Change the duty cycle\ndutycycle - between 0.0 and 100.0" },
|
||||||
{ "set_frequency", (PyCFunction)py_set_frequency, METH_VARARGS, "Change the frequency\nfrequency - frequency in Hz (freq > 0.0)" },
|
{"set_frequency", (PyCFunction)py_set_frequency, METH_VARARGS, "Change the frequency\nfrequency - frequency in Hz (freq > 0.0)" },
|
||||||
|
{"set_period_ns", (PyCFunction)py_set_period_ns, METH_VARARGS, "Change the period\nperiod_ns - period in nanoseconds" },
|
||||||
|
{"set_pulse_width_ns", (PyCFunction)py_set_pulse_width_ns, METH_VARARGS, "Change the period\npulse_width_ns - pulse width in nanoseconds" },
|
||||||
{"cleanup", py_cleanup, METH_VARARGS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
{"cleanup", py_cleanup, METH_VARARGS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
||||||
//{"setwarnings", py_setwarnings, METH_VARARGS, "Enable or disable warning messages"},
|
{"toggle_debug", py_toggle_debug, METH_VARARGS, "Toggles the enabling/disabling of Debug print output"},
|
||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
258
source/py_servo.c
Normal file
258
source/py_servo.c
Normal file
@ -0,0 +1,258 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2017 Robert Wolterman
|
||||||
|
|
||||||
|
Using CHIP_IO servo code from Brady Hurlburt as a basis for the servo code
|
||||||
|
|
||||||
|
Copyright (c) 2016 Brady Hurlburt
|
||||||
|
|
||||||
|
Original BBIO Author Justin Cooper
|
||||||
|
Modified for CHIP_IO Author Brady Hurlburt
|
||||||
|
|
||||||
|
This file incorporates work covered by the following copyright and
|
||||||
|
permission notice, all modified code adopts the original license:
|
||||||
|
|
||||||
|
Copyright (c) 2013 Adafruit
|
||||||
|
Author: Justin Cooper
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||||
|
of the Software, and to permit persons to whom the Software is furnished to do
|
||||||
|
so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "Python.h"
|
||||||
|
#include "constants.h"
|
||||||
|
#include "common.h"
|
||||||
|
#include "c_softservo.h"
|
||||||
|
|
||||||
|
// python function toggle_debug()
|
||||||
|
static PyObject *py_toggle_debug(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
// toggle debug printing
|
||||||
|
toggle_debug();
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python function cleanup()
|
||||||
|
static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
// unexport the Servo
|
||||||
|
servo_cleanup();
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python function start(channel, angle, range)
|
||||||
|
static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char key[8];
|
||||||
|
char *channel = NULL;
|
||||||
|
float angle = 0.0;
|
||||||
|
float range = 180.0;
|
||||||
|
static char *kwlist[] = {"channel", "angle", "range", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ff", kwlist, &channel, &angle, &range)) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
ASSRT(channel != NULL);
|
||||||
|
|
||||||
|
if (!get_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid Servo key or name.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check to ensure gpio is one of the allowed pins
|
||||||
|
// Not protecting the call as if the get_key() fails, we won't make it here
|
||||||
|
get_gpio_number(channel, &gpio);
|
||||||
|
if ((gpio >= lookup_gpio_by_name("XIO-P0") && gpio <= lookup_gpio_by_name("XIO-P7"))) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Servo currently not available on XIO-P0 to XIO-P7");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (servo_start(key, angle, range) < 0) {
|
||||||
|
printf("servo_start failed");
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error starting servo on pin %s (%s)", key, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python function stop(channel)
|
||||||
|
static PyObject *py_stop_channel(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char key[8];
|
||||||
|
char *channel;
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTuple(args, "s", &channel))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (!get_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid key or name");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check to ensure gpio is one of the allowed pins
|
||||||
|
// Not protecting the call as if the get_key() fails, we won't make it here
|
||||||
|
get_gpio_number(channel, &gpio);
|
||||||
|
if ((gpio >= lookup_gpio_by_name("XIO-P0") && gpio <= lookup_gpio_by_name("XIO-P7"))) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Servo currently not available on XIO-P0 to XIO-P7");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
servo_disable(key);
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python method SERVO.set_range(channel, duty_cycle)
|
||||||
|
static PyObject *py_set_range(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char key[8];
|
||||||
|
char *channel;
|
||||||
|
float range = 180.0;
|
||||||
|
static char *kwlist[] = {"channel", "range", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &range))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (range > 360.0) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "range can not be greater than 360.0");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!get_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid key or name.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check to ensure gpio is one of the allowed pins
|
||||||
|
// Not protecting the call as if the get_key() fails, we won't make it here
|
||||||
|
get_gpio_number(channel, &gpio);
|
||||||
|
if ((gpio >= lookup_gpio_by_name("XIO-P0") && gpio <= lookup_gpio_by_name("XIO-P7"))) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Servo currently not available on XIO-P0 to XIO-P7");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (servo_set_range(key, range) == -1) {
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, "You must start() the Servo channel first");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// python method SERVO.set_angle(channel, duty_cycle)
|
||||||
|
static PyObject *py_set_angle(PyObject *self, PyObject *args, PyObject *kwargs)
|
||||||
|
{
|
||||||
|
int gpio;
|
||||||
|
char key[8];
|
||||||
|
char *channel;
|
||||||
|
float angle = 0.0;
|
||||||
|
static char *kwlist[] = {"channel", "angle", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &angle))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
//if (range > 360.0) {
|
||||||
|
// PyErr_SetString(PyExc_ValueError, "range can not be greater than 360.0");
|
||||||
|
// return NULL;
|
||||||
|
//}
|
||||||
|
|
||||||
|
if (!get_key(channel, key)) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Invalid key or name.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// check to ensure gpio is one of the allowed pins
|
||||||
|
// Not protecting the call as if the get_key() fails, we won't make it here
|
||||||
|
get_gpio_number(channel, &gpio);
|
||||||
|
if ((gpio >= lookup_gpio_by_name("XIO-P0") && gpio <= lookup_gpio_by_name("XIO-P7"))) {
|
||||||
|
PyErr_SetString(PyExc_ValueError, "Servo currently not available on XIO-P0 to XIO-P7");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (servo_set_angle(key, angle) == -1) {
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error setting servo angle on pin %s (%s)", key, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const char moduledocstring[] = "Software Servo functionality of a CHIP using Python";
|
||||||
|
|
||||||
|
PyMethodDef servo_methods[] = {
|
||||||
|
{"start", (PyCFunction)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the Servo. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
||||||
|
{"stop", (PyCFunction)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the Servo. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
||||||
|
{"set_range", (PyCFunction)py_set_range, METH_VARARGS, "Change the servo range\nrange - max angular range of the servo" },
|
||||||
|
{"set_angle", (PyCFunction)py_set_angle, METH_VARARGS, "Change the servo angle\nangle - angle of the servo between +/-(range/2)" },
|
||||||
|
{"cleanup", (PyCFunction)py_cleanup, METH_VARARGS, "Clean up by resetting All or one Servo that have been used by this program."},
|
||||||
|
{"toggle_debug", py_toggle_debug, METH_VARARGS, "Toggles the enabling/disabling of Debug print output"},
|
||||||
|
{NULL, NULL, 0, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
#if PY_MAJOR_VERSION > 2
|
||||||
|
static struct PyModuleDef chipservomodule = {
|
||||||
|
PyModuleDef_HEAD_INIT,
|
||||||
|
"SERVO", // name of module
|
||||||
|
moduledocstring, // module documentation, may be NULL
|
||||||
|
-1, // size of per-interpreter state of the module, or -1 if the module keeps state in global variables.
|
||||||
|
servo_methods
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if PY_MAJOR_VERSION > 2
|
||||||
|
PyMODINIT_FUNC PyInit_SERVO(void)
|
||||||
|
#else
|
||||||
|
PyMODINIT_FUNC initSERVO(void)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
PyObject *module = NULL;
|
||||||
|
|
||||||
|
#if PY_MAJOR_VERSION > 2
|
||||||
|
if ((module = PyModule_Create(&chipservomodule)) == NULL)
|
||||||
|
return NULL;
|
||||||
|
#else
|
||||||
|
if ((module = Py_InitModule3("SERVO", servo_methods, moduledocstring)) == NULL)
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
define_constants(module);
|
||||||
|
|
||||||
|
|
||||||
|
#if PY_MAJOR_VERSION > 2
|
||||||
|
return module;
|
||||||
|
#else
|
||||||
|
return;
|
||||||
|
#endif
|
||||||
|
}
|
@ -34,6 +34,15 @@ SOFTWARE.
|
|||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "c_softpwm.h"
|
#include "c_softpwm.h"
|
||||||
|
|
||||||
|
// python function toggle_debug()
|
||||||
|
static PyObject *py_toggle_debug(PyObject *self, PyObject *args)
|
||||||
|
{
|
||||||
|
// toggle debug printing
|
||||||
|
toggle_debug();
|
||||||
|
|
||||||
|
Py_RETURN_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
// python function cleanup()
|
// python function cleanup()
|
||||||
static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
static PyObject *py_cleanup(PyObject *self, PyObject *args)
|
||||||
{
|
{
|
||||||
@ -53,6 +62,8 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
int polarity = 0;
|
int polarity = 0;
|
||||||
static char *kwlist[] = {"channel", "duty_cycle", "frequency", "polarity", NULL};
|
static char *kwlist[] = {"channel", "duty_cycle", "frequency", "polarity", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ffi", kwlist, &channel, &duty_cycle, &frequency, &polarity)) {
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ffi", kwlist, &channel, &duty_cycle, &frequency, &polarity)) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -63,14 +74,12 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (duty_cycle < 0.0 || duty_cycle > 100.0)
|
if (duty_cycle < 0.0 || duty_cycle > 100.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frequency <= 0.0)
|
if (frequency <= 0.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -80,8 +89,13 @@ static PyObject *py_start_channel(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!softpwm_start(key, duty_cycle, frequency, polarity))
|
if (softpwm_start(key, duty_cycle, frequency, polarity) < 0) {
|
||||||
return NULL;
|
printf("softpwm_start failed");
|
||||||
|
char err[2000];
|
||||||
|
snprintf(err, sizeof(err), "Error starting softpwm on pin %s (%s)", key, get_error_msg());
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, err);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
@ -92,6 +106,8 @@ static PyObject *py_stop_channel(PyObject *self, PyObject *args, PyObject *kwarg
|
|||||||
char key[8];
|
char key[8];
|
||||||
char *channel;
|
char *channel;
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTuple(args, "s", &channel))
|
if (!PyArg_ParseTuple(args, "s", &channel))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
@ -113,11 +129,12 @@ static PyObject *py_set_duty_cycle(PyObject *self, PyObject *args, PyObject *kwa
|
|||||||
float duty_cycle = 0.0;
|
float duty_cycle = 0.0;
|
||||||
static char *kwlist[] = {"channel", "duty_cycle", NULL};
|
static char *kwlist[] = {"channel", "duty_cycle", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &duty_cycle))
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &duty_cycle))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (duty_cycle < 0.0 || duty_cycle > 100.0)
|
if (duty_cycle < 0.0 || duty_cycle > 100.0) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
PyErr_SetString(PyExc_ValueError, "duty_cycle must have a value from 0.0 to 100.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -143,11 +160,12 @@ static PyObject *py_set_frequency(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
float frequency = 1.0;
|
float frequency = 1.0;
|
||||||
static char *kwlist[] = {"channel", "frequency", NULL};
|
static char *kwlist[] = {"channel", "frequency", NULL};
|
||||||
|
|
||||||
|
clear_error_msg();
|
||||||
|
|
||||||
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &frequency))
|
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &frequency))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if ((frequency <= 0.0) || (frequency > 10000.0))
|
if ((frequency <= 0.0) || (frequency > 10000.0)) {
|
||||||
{
|
|
||||||
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0 and less than 10000.0");
|
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0 and less than 10000.0");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -165,21 +183,20 @@ static PyObject *py_set_frequency(PyObject *self, PyObject *args, PyObject *kwar
|
|||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static const char moduledocstring[] = "Software PWM functionality of a CHIP using Python";
|
static const char moduledocstring[] = "Software PWM functionality of a CHIP using Python";
|
||||||
|
|
||||||
PyMethodDef pwm_methods[] = {
|
PyMethodDef pwm_methods[] = {
|
||||||
{"start", (PyCFunction)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the PWM channel. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
{"start", (PyCFunction)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the PWM channel. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
||||||
{"stop", (PyCFunction)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the PWM channel. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
{"stop", (PyCFunction)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the PWM channel. channel can be in the form of 'XIO-P0', or 'U14_13'"},
|
||||||
{ "set_duty_cycle", (PyCFunction)py_set_duty_cycle, METH_VARARGS, "Change the duty cycle\ndutycycle - between 0.0 and 100.0" },
|
{"set_duty_cycle", (PyCFunction)py_set_duty_cycle, METH_VARARGS, "Change the duty cycle\ndutycycle - between 0.0 and 100.0" },
|
||||||
{ "set_frequency", (PyCFunction)py_set_frequency, METH_VARARGS, "Change the frequency\nfrequency - frequency in Hz (freq > 0.0)" },
|
{"set_frequency", (PyCFunction)py_set_frequency, METH_VARARGS, "Change the frequency\nfrequency - frequency in Hz (freq > 0.0)" },
|
||||||
{"cleanup", py_cleanup, METH_VARARGS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
{"cleanup", (PyCFunction)py_cleanup, METH_VARARGS, "Clean up by resetting all GPIO channels that have been used by this program to INPUT with no pullup/pulldown and no event detection"},
|
||||||
//{"setwarnings", py_setwarnings, METH_VARARGS, "Enable or disable warning messages"},
|
{"toggle_debug", py_toggle_debug, METH_VARARGS, "Toggles the enabling/disabling of Debug print output"},
|
||||||
{NULL, NULL, 0, NULL}
|
{NULL, NULL, 0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
#if PY_MAJOR_VERSION > 2
|
#if PY_MAJOR_VERSION > 2
|
||||||
static struct PyModuleDef chippwmmodule = {
|
static struct PyModuleDef chipspwmmodule = {
|
||||||
PyModuleDef_HEAD_INIT,
|
PyModuleDef_HEAD_INIT,
|
||||||
"SOFTPWM", // name of module
|
"SOFTPWM", // name of module
|
||||||
moduledocstring, // module documentation, may be NULL
|
moduledocstring, // module documentation, may be NULL
|
||||||
@ -197,7 +214,7 @@ PyMODINIT_FUNC initSOFTPWM(void)
|
|||||||
PyObject *module = NULL;
|
PyObject *module = NULL;
|
||||||
|
|
||||||
#if PY_MAJOR_VERSION > 2
|
#if PY_MAJOR_VERSION > 2
|
||||||
if ((module = PyModule_Create(&chippwmmodule)) == NULL)
|
if ((module = PyModule_Create(&chipspwmmodule)) == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
#else
|
#else
|
||||||
if ((module = Py_InitModule3("SOFTPWM", pwm_methods, moduledocstring)) == NULL)
|
if ((module = Py_InitModule3("SOFTPWM", pwm_methods, moduledocstring)) == NULL)
|
||||||
|
@ -1,96 +0,0 @@
|
|||||||
# The default ``config.py``
|
|
||||||
|
|
||||||
|
|
||||||
def set_prefs(prefs):
|
|
||||||
"""This function is called before opening the project"""
|
|
||||||
|
|
||||||
# Specify which files and folders to ignore in the project.
|
|
||||||
# Changes to ignored resources are not added to the history and
|
|
||||||
# VCSs. Also they are not returned in `Project.get_files()`.
|
|
||||||
# Note that ``?`` and ``*`` match all characters but slashes.
|
|
||||||
# '*.pyc': matches 'test.pyc' and 'pkg/test.pyc'
|
|
||||||
# 'mod*.pyc': matches 'test/mod1.pyc' but not 'mod/1.pyc'
|
|
||||||
# '.svn': matches 'pkg/.svn' and all of its children
|
|
||||||
# 'build/*.o': matches 'build/lib.o' but not 'build/sub/lib.o'
|
|
||||||
# 'build//*.o': matches 'build/lib.o' and 'build/sub/lib.o'
|
|
||||||
prefs['ignored_resources'] = [
|
|
||||||
'*.pyc', '*~', '.ropeproject', '.hg', '.svn', '_svn', '.git',
|
|
||||||
'.tox', '.env', 'node_modules', 'bower_components']
|
|
||||||
|
|
||||||
# Specifies which files should be considered python files. It is
|
|
||||||
# useful when you have scripts inside your project. Only files
|
|
||||||
# ending with ``.py`` are considered to be python files by
|
|
||||||
# default.
|
|
||||||
#prefs['python_files'] = ['*.py']
|
|
||||||
|
|
||||||
# Custom source folders: By default rope searches the project
|
|
||||||
# for finding source folders (folders that should be searched
|
|
||||||
# for finding modules). You can add paths to that list. Note
|
|
||||||
# that rope guesses project source folders correctly most of the
|
|
||||||
# time; use this if you have any problems.
|
|
||||||
# The folders should be relative to project root and use '/' for
|
|
||||||
# separating folders regardless of the platform rope is running on.
|
|
||||||
# 'src/my_source_folder' for instance.
|
|
||||||
#prefs.add('source_folders', 'src')
|
|
||||||
|
|
||||||
# You can extend python path for looking up modules
|
|
||||||
#prefs.add('python_path', '~/python/')
|
|
||||||
|
|
||||||
# Should rope save object information or not.
|
|
||||||
prefs['save_objectdb'] = True
|
|
||||||
prefs['compress_objectdb'] = False
|
|
||||||
|
|
||||||
# If `True`, rope analyzes each module when it is being saved.
|
|
||||||
prefs['automatic_soa'] = True
|
|
||||||
# The depth of calls to follow in static object analysis
|
|
||||||
prefs['soa_followed_calls'] = 0
|
|
||||||
|
|
||||||
# If `False` when running modules or unit tests "dynamic object
|
|
||||||
# analysis" is turned off. This makes them much faster.
|
|
||||||
prefs['perform_doa'] = True
|
|
||||||
|
|
||||||
# Rope can check the validity of its object DB when running.
|
|
||||||
prefs['validate_objectdb'] = True
|
|
||||||
|
|
||||||
# How many undos to hold?
|
|
||||||
prefs['max_history_items'] = 32
|
|
||||||
|
|
||||||
# Shows whether to save history across sessions.
|
|
||||||
prefs['save_history'] = True
|
|
||||||
prefs['compress_history'] = False
|
|
||||||
|
|
||||||
# Set the number spaces used for indenting. According to
|
|
||||||
# :PEP:`8`, it is best to use 4 spaces. Since most of rope's
|
|
||||||
# unit-tests use 4 spaces it is more reliable, too.
|
|
||||||
prefs['indent_size'] = 4
|
|
||||||
|
|
||||||
# Builtin and c-extension modules that are allowed to be imported
|
|
||||||
# and inspected by rope.
|
|
||||||
prefs['extension_modules'] = []
|
|
||||||
|
|
||||||
# Add all standard c-extensions to extension_modules list.
|
|
||||||
prefs['import_dynload_stdmods'] = True
|
|
||||||
|
|
||||||
# If `True` modules with syntax errors are considered to be empty.
|
|
||||||
# The default value is `False`; When `False` syntax errors raise
|
|
||||||
# `rope.base.exceptions.ModuleSyntaxError` exception.
|
|
||||||
prefs['ignore_syntax_errors'] = False
|
|
||||||
|
|
||||||
# If `True`, rope ignores unresolvable imports. Otherwise, they
|
|
||||||
# appear in the importing namespace.
|
|
||||||
prefs['ignore_bad_imports'] = False
|
|
||||||
|
|
||||||
# If `True`, rope will transform a comma list of imports into
|
|
||||||
# multiple separate import statements when organizing
|
|
||||||
# imports.
|
|
||||||
prefs['split_imports'] = False
|
|
||||||
|
|
||||||
# If `True`, rope will sort imports alphabetically by module name
|
|
||||||
# instead of alphabetically by import statement, with from imports
|
|
||||||
# after normal imports.
|
|
||||||
prefs['sort_imports_alphabetically'] = False
|
|
||||||
|
|
||||||
|
|
||||||
def project_opened(project):
|
|
||||||
"""This function is called after opening the project"""
|
|
||||||
# Do whatever you like here!
|
|
@ -1,2 +0,0 @@
|
|||||||
<EFBFBD>}q(Utest_softpwm_setup]q(Uteardown_moduleqUTestSoftpwmSetupqeUtest_gpio_output]q(hUTestGPIOOutputqeUtest_pwm_setup]q(hUTestPwmSetupqeUtest_gpio_setup]q (hU TestSetupq
|
|
||||||
eUtest_gpio_input]q(hU
|
|
@ -1 +0,0 @@
|
|||||||
<EFBFBD>]q(]q]qe.
|
|
@ -1 +0,0 @@
|
|||||||
<EFBFBD>}q.
|
|
0
test/gptest.py
Executable file → Normal file
0
test/gptest.py
Executable file → Normal file
65
test/lradctest.py
Normal file
65
test/lradctest.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
import CHIP_IO.LRADC as ADC
|
||||||
|
|
||||||
|
# == ENABLE DEBUG ==
|
||||||
|
print("ENABLING LRADC DEBUG OUTPUT")
|
||||||
|
ADC.toggle_debug()
|
||||||
|
|
||||||
|
# == SETUP ==
|
||||||
|
print("LRADC SETUP WITH SAMPLE RATE OF 125")
|
||||||
|
ADC.setup(125)
|
||||||
|
|
||||||
|
# == SCALE FACTOR ==
|
||||||
|
print("GETTING SCALE FACTOR")
|
||||||
|
scalefactor = ADC.get_scale_factor()
|
||||||
|
print(scalefactor)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == ALLOWABLE SAMPLING RATES ==
|
||||||
|
print("GETTING ALLOWABLE SAMPLE RATES")
|
||||||
|
rates = ADC.get_allowable_sample_rates()
|
||||||
|
print(rates)
|
||||||
|
print("IS 32.25 IN RATE TUPLE")
|
||||||
|
print(ADC.SAMPLE_RATE_32P25 in rates)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == CURRENT SAMPLE RATE ==
|
||||||
|
print("CURRENT SAMPLING RATE")
|
||||||
|
crate = ADC.get_sample_rate()
|
||||||
|
print(crate)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == SET SAMPLE RATE ==
|
||||||
|
print("SETTING SAMPLE RATE TO 62.5")
|
||||||
|
ADC.set_sample_rate(62.5)
|
||||||
|
crate = ADC.get_sample_rate()
|
||||||
|
print(crate)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == CHAN 0 RAW ==
|
||||||
|
print("READING LRADC CHAN0 RAW")
|
||||||
|
raw0 = ADC.get_chan0_raw()
|
||||||
|
print(raw0)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == CHAN 1 RAW ==
|
||||||
|
print("READING LRADC CHAN1 RAW")
|
||||||
|
raw1 = ADC.get_chan1_raw()
|
||||||
|
print(raw1)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == CHAN 0 ==
|
||||||
|
print("READING LRADC CHAN0 WITH SCALE APPLIED")
|
||||||
|
full0 = ADC.get_chan0()
|
||||||
|
print(full0)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == CHAN 1 ==
|
||||||
|
print("READING LRADC CHAN1 WITH SCALE APPLIED")
|
||||||
|
full1 = ADC.get_chan1()
|
||||||
|
print(full1)
|
||||||
|
print("")
|
||||||
|
|
||||||
|
# == RESET ==
|
||||||
|
print("RESETING SAMPLE RATE TO 250")
|
||||||
|
ADC.set_sample_rate(250)
|
||||||
|
|
15
test/omtest.py
Executable file → Normal file
15
test/omtest.py
Executable file → Normal file
@ -5,7 +5,7 @@ import os
|
|||||||
|
|
||||||
# ENABLE DEBUG
|
# ENABLE DEBUG
|
||||||
print("ENABLING OVERLAY MANAGER DEBUG")
|
print("ENABLING OVERLAY MANAGER DEBUG")
|
||||||
OM.enable_debug()
|
OM.toggle_debug()
|
||||||
|
|
||||||
# **************** PWM *******************
|
# **************** PWM *******************
|
||||||
print("\nIS PWM ENABLED: {0}".format(OM.get_pwm_loaded()))
|
print("\nIS PWM ENABLED: {0}".format(OM.get_pwm_loaded()))
|
||||||
@ -20,19 +20,6 @@ print("UNLOADING PWM0")
|
|||||||
OM.unload("PWM0")
|
OM.unload("PWM0")
|
||||||
print("IS PWM ENABLED: {0}".format(OM.get_pwm_loaded()))
|
print("IS PWM ENABLED: {0}".format(OM.get_pwm_loaded()))
|
||||||
|
|
||||||
# **************** I2C-1 *******************
|
|
||||||
print("\nIS I2C ENABLED: {0}".format(OM.get_i2c_loaded()))
|
|
||||||
OM.load("I2C1")
|
|
||||||
print("IS I2C ENABLED: {0}".format(OM.get_i2c_loaded()))
|
|
||||||
# VERIFY I2C-1 EXISTS
|
|
||||||
if os.path.exists('/sys/class/i2c-dev/i2c-1'):
|
|
||||||
print("I2C1 DEVICE EXISTS")
|
|
||||||
else:
|
|
||||||
print("I2C1 DEVICE DID NOT LOAD PROPERLY")
|
|
||||||
print("UNLOADING I2C1")
|
|
||||||
OM.unload("I2C1")
|
|
||||||
print("IS I2C ENABLED: {0}".format(OM.get_i2c_loaded()))
|
|
||||||
|
|
||||||
# **************** SPI2 *******************
|
# **************** SPI2 *******************
|
||||||
print("\nIS SPI ENABLED: {0}".format(OM.get_spi_loaded()))
|
print("\nIS SPI ENABLED: {0}".format(OM.get_spi_loaded()))
|
||||||
OM.load("SPI2")
|
OM.load("SPI2")
|
||||||
|
99
test/pwmtest.py
Normal file
99
test/pwmtest.py
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
import CHIP_IO.PWM as PWM
|
||||||
|
import CHIP_IO.GPIO as GPIO
|
||||||
|
import CHIP_IO.OverlayManager as OM
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
import threading
|
||||||
|
|
||||||
|
class PWMReceiver(threading.Thread):
|
||||||
|
def __init__(self,gpio,key,maxcount=20,sleeptime=0.5):
|
||||||
|
self.gpio = gpio
|
||||||
|
self.key = key
|
||||||
|
self.counter = 0
|
||||||
|
self.maxcount = maxcount
|
||||||
|
self.sleeptime = sleeptime
|
||||||
|
threading.Thread.__init__(self)
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
print("SETTING UP RECEIVER GPIO")
|
||||||
|
self.gpio.cleanup()
|
||||||
|
self.gpio.setup(self.key, self.gpio.IN)
|
||||||
|
print("STARTING RECEIVE LOOP")
|
||||||
|
try:
|
||||||
|
while self.counter < self.maxcount:
|
||||||
|
pwmval = self.gpio.input(self.key)
|
||||||
|
print("PWM VALUE: {0} @ {1}".format(pwmval, datetime.datetime.now()))
|
||||||
|
time.sleep(self.sleeptime)
|
||||||
|
self.counter += 1
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
self.gpio.cleanup(self.key)
|
||||||
|
|
||||||
|
def PrintPwmData():
|
||||||
|
print("PRINTING PWM SYSFS DATA")
|
||||||
|
f = open("/sys/class/pwm/pwmchip0/pwm0/enable")
|
||||||
|
print("PWM0 ENABLE:\t{}".format(f.readline()))
|
||||||
|
f.close()
|
||||||
|
f = open("/sys/class/pwm/pwmchip0/pwm0/period")
|
||||||
|
print("PWM0 PERIOD:\t{}".format(f.readline()))
|
||||||
|
f.close()
|
||||||
|
f = open("/sys/class/pwm/pwmchip0/pwm0/duty_cycle")
|
||||||
|
print("PWM0 DUTY CYCLE:\t{}".format(f.readline()))
|
||||||
|
f.close()
|
||||||
|
f = open("/sys/class/pwm/pwmchip0/pwm0/polarity")
|
||||||
|
print("PWM0 POLARITY:\t{}".format(f.readline()))
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# SETUP VARIABLES
|
||||||
|
PWMGPIO = "PWM0"
|
||||||
|
RECEIVERGPIO = "CSID0"
|
||||||
|
COUNT = 150
|
||||||
|
SLEEPTIME = 0.01
|
||||||
|
|
||||||
|
# LOAD THE PWM OVERLAY
|
||||||
|
print("LOADING PWM OVERLAY")
|
||||||
|
OM.load("PWM0")
|
||||||
|
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
# CLEANUP THE GPIO
|
||||||
|
#GPIO.cleanup()
|
||||||
|
#PWM.cleanup()
|
||||||
|
|
||||||
|
# SETUP PWM
|
||||||
|
try:
|
||||||
|
print("PWM START")
|
||||||
|
PWM.toggle_debug()
|
||||||
|
PWM.start(PWMGPIO, 15, 50, 1)
|
||||||
|
PrintPwmData()
|
||||||
|
|
||||||
|
# UNCOMMENT FOR CRASH
|
||||||
|
#print("PWM SET FREQUENCY")
|
||||||
|
#PWM.set_frequency(PWMGPIO, 200)
|
||||||
|
#PrintPwmData()
|
||||||
|
|
||||||
|
# UNCOMMENT FOR CRASH
|
||||||
|
#print("PWM SET DUTY CYCLE")
|
||||||
|
#PWM.set_duty_cycle(PWMGPIO, 25)
|
||||||
|
#PrintPwmData()
|
||||||
|
|
||||||
|
# SETUP PWM RECEIVER
|
||||||
|
#rcvr = PWMReceiver(GPIO, RECEIVERGPIO, COUNT, SLEEPTIME)
|
||||||
|
#rcvr.start()
|
||||||
|
|
||||||
|
#time.sleep(COUNT*SLEEPTIME + 1)
|
||||||
|
raw_input("PRESS ENTER WHEN DONE")
|
||||||
|
|
||||||
|
except:
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
# CLEANUP
|
||||||
|
print("CLEANUP")
|
||||||
|
PWM.stop(PWMGPIO)
|
||||||
|
PWM.cleanup()
|
||||||
|
#OM.unload("PWM0")
|
||||||
|
#GPIO.cleanup()
|
||||||
|
|
||||||
|
|
71
test/servotest.py
Normal file
71
test/servotest.py
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
import CHIP_IO.SERVO as SERVO
|
||||||
|
import CHIP_IO.GPIO as GPIO
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
import threading
|
||||||
|
|
||||||
|
class ServoTestReceiver(threading.Thread):
|
||||||
|
def __init__(self,gpio,key,maxcount=20,sleeptime=0.005):
|
||||||
|
self.gpio = gpio
|
||||||
|
self.key = key
|
||||||
|
self.counter = 0
|
||||||
|
self.maxcount = maxcount
|
||||||
|
self.sleeptime = sleeptime
|
||||||
|
self.dead = False
|
||||||
|
threading.Thread.__init__(self)
|
||||||
|
|
||||||
|
def kill(self):
|
||||||
|
self.dead = True
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
print("SETTING UP RECEIVER GPIO")
|
||||||
|
self.gpio.cleanup()
|
||||||
|
self.gpio.setup(self.key, self.gpio.IN)
|
||||||
|
print("STARTING RECEIVE LOOP")
|
||||||
|
try:
|
||||||
|
#while self.counter < self.maxcount:
|
||||||
|
while not self.dead:
|
||||||
|
pwmval = self.gpio.input(self.key)
|
||||||
|
print("SERVO VALUE: {0} @ {1}".format(pwmval, datetime.datetime.now()))
|
||||||
|
time.sleep(self.sleeptime)
|
||||||
|
self.counter += 1
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
self.gpio.cleanup(self.key)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# SETUP VARIABLES
|
||||||
|
SERVOGPIO = "CSID1" #"XIO-P7"
|
||||||
|
RECEIVERGPIO = "CSID7"
|
||||||
|
COUNT = 120
|
||||||
|
SLEEPTIME = 0.0001
|
||||||
|
RANGE = 180
|
||||||
|
|
||||||
|
# SETUP PWM
|
||||||
|
try:
|
||||||
|
print("SERVO START")
|
||||||
|
SERVO.toggle_debug()
|
||||||
|
SERVO.start(SERVOGPIO, 0, RANGE)
|
||||||
|
|
||||||
|
# SETUP SERVO RECEIVER
|
||||||
|
#rcvr = ServoTestReceiver(GPIO, RECEIVERGPIO, COUNT, SLEEPTIME)
|
||||||
|
#rcvr.start()
|
||||||
|
|
||||||
|
# LOOP THROUGH RANGE
|
||||||
|
for i in range(-(RANGE/2),(RANGE/2),5):
|
||||||
|
print("SETTING ANGLE: {0}".format(i))
|
||||||
|
SERVO.set_angle(SERVOGPIO, i)
|
||||||
|
time.sleep(1)
|
||||||
|
|
||||||
|
#rcvr.kill()
|
||||||
|
raw_input("PRESS ENTER WHEN DONE")
|
||||||
|
|
||||||
|
except:
|
||||||
|
raise
|
||||||
|
finally:
|
||||||
|
# CLEANUP
|
||||||
|
print("CLEANUP")
|
||||||
|
SERVO.stop(SERVOGPIO)
|
||||||
|
SERVO.cleanup(SERVOGPIO)
|
||||||
|
|
||||||
|
|
11
test/spwmtest.py
Executable file → Normal file
11
test/spwmtest.py
Executable file → Normal file
@ -40,7 +40,18 @@ if __name__ == "__main__":
|
|||||||
GPIO.cleanup()
|
GPIO.cleanup()
|
||||||
SPWM.cleanup()
|
SPWM.cleanup()
|
||||||
|
|
||||||
|
# ISSUE #16 VERIFICATION
|
||||||
|
try:
|
||||||
|
print("VERIFYING FIX FOR ISSUE #16, GPIO CONFIGURED THAT SPWM WANTS TO USE")
|
||||||
|
GPIO.setup(SPWMGPIO, GPIO.OUT)
|
||||||
|
SPWM.start(SPWMGPIO, 50, 1)
|
||||||
|
except Exception as e:
|
||||||
|
print("EXCEPTION: {}".format(e))
|
||||||
|
print("GPIO CLEANUP")
|
||||||
|
GPIO.cleanup()
|
||||||
|
|
||||||
# SETUP SOFTPWM
|
# SETUP SOFTPWM
|
||||||
|
print("STARTING SOFTPWM TEST")
|
||||||
SPWM.start(SPWMGPIO, 50, 1)
|
SPWM.start(SPWMGPIO, 50, 1)
|
||||||
SPWM.set_frequency(SPWMGPIO, 2)
|
SPWM.set_frequency(SPWMGPIO, 2)
|
||||||
|
|
||||||
|
0
test/test_gpio_input.py
Executable file → Normal file
0
test/test_gpio_input.py
Executable file → Normal file
@ -1,65 +1,84 @@
|
|||||||
import pytest
|
import pytest
|
||||||
import os
|
import os
|
||||||
|
import time
|
||||||
|
|
||||||
import CHIP_IO.PWM as PWM
|
import CHIP_IO.PWM as PWM
|
||||||
|
import CHIP_IO.OverlayManager as OM
|
||||||
|
|
||||||
|
def setup_module(module):
|
||||||
|
OM.load("PWM0")
|
||||||
|
|
||||||
def teardown_module(module):
|
def teardown_module(module):
|
||||||
PWM.cleanup()
|
PWM.cleanup()
|
||||||
|
OM.unload("PWM0")
|
||||||
|
|
||||||
class TestPwmSetup:
|
class TestPwmSetup:
|
||||||
|
|
||||||
|
def setup_method(self, test_method):
|
||||||
|
time.sleep(0.5)
|
||||||
|
|
||||||
|
#def teardown_method(self, test_method):
|
||||||
|
# PWM.cleanup()
|
||||||
|
#OM.unload("PWM0")
|
||||||
|
|
||||||
|
#def setup_module(self, module):
|
||||||
|
# OM.load("PWM0")
|
||||||
|
|
||||||
|
#def teardown_module(self, module):
|
||||||
|
# OM.unload("PWM0")
|
||||||
|
|
||||||
def test_start_pwm(self):
|
def test_start_pwm(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
|
|
||||||
pwm_test = '/sys/class/pwm/pwmchip0/pwm0'
|
pwm_test = '/sys/class/pwm/pwmchip0/pwm0/'
|
||||||
|
|
||||||
assert os.path.exists(pwm_test)
|
assert os.path.exists(pwm_test) == True
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
assert int(duty) == 0
|
assert int(duty) == 0
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="pwm cleanup is doing weirdness for this test")
|
||||||
def test_start_pwm_with_polarity_one(self):
|
def test_start_pwm_with_polarity_one(self):
|
||||||
PWM.start("PWM0", 0, 2000, 1)
|
PWM.start("PWM0", 0, 2000, 1)
|
||||||
|
|
||||||
pwm_test = '/sys/class/pwm/pwmchip0/pwm0'
|
pwm_test = '/sys/class/pwm/pwmchip0/pwm0/'
|
||||||
|
|
||||||
assert os.path.exists(pwm_test)
|
#assert os.path.exists(pwm_test) == True
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
polarity = open(pwm_test + '/polarity').readline().strip()
|
polarity = open(pwm_test + 'polarity').readline().strip()
|
||||||
assert int(duty) == 0
|
assert int(duty) == 0
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
assert str(polarity) == "inverted"
|
assert str(polarity) == "inverted"
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="pwm cleanup is doing weirdness for this test")
|
||||||
def test_start_pwm_with_polarity_default(self):
|
def test_start_pwm_with_polarity_default(self):
|
||||||
PWM.start("PWM0", 0, 2000, 0)
|
PWM.start("PWM0", 0, 2000, 0)
|
||||||
|
|
||||||
pwm_test = '/sys/class/pwm/pwmchip0/pwm0'
|
pwm_test = '/sys/class/pwm/pwmchip0/pwm0/'
|
||||||
|
|
||||||
assert os.path.exists(pwm_test)
|
#assert os.path.exists(pwm_test) == True
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
polarity = open(pwm_test + '/polarity').readline().strip()
|
polarity = open(pwm_test + 'polarity').readline().strip()
|
||||||
assert int(duty) == 0
|
assert int(duty) == 0
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
assert str(polarity) == "normal"
|
assert str(polarity) == "normal"
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="pwm cleanup is doing weirdness for this test")
|
||||||
def test_start_pwm_with_polarity_zero(self):
|
def test_start_pwm_with_polarity_zero(self):
|
||||||
PWM.start("PWM0", 0, 2000, 0)
|
PWM.start("PWM0", 0, 2000, 0)
|
||||||
|
|
||||||
pwm_test = '/sys/class/pwm/pwmchip0/pwm0'
|
pwm_test = '/sys/class/pwm/pwmchip0/pwm0/'
|
||||||
|
|
||||||
assert os.path.exists(pwm_test)
|
#assert os.path.exists(pwm_test) == True
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
polarity = open(pwm_test + '/polarity').readline().strip()
|
polarity = open(pwm_test + 'polarity').readline().strip()
|
||||||
assert int(duty) == 0
|
assert int(duty) == 0
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
assert str(polarity) == "normal"
|
assert str(polarity) == "normal"
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_start_invalid_pwm_key(self):
|
def test_pwm_start_invalid_pwm_key(self):
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
@ -72,12 +91,10 @@ class TestPwmSetup:
|
|||||||
def test_pwm_start_valid_duty_cycle_min(self):
|
def test_pwm_start_valid_duty_cycle_min(self):
|
||||||
#testing an exception isn't thrown
|
#testing an exception isn't thrown
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_start_valid_duty_cycle_max(self):
|
def test_pwm_start_valid_duty_cycle_max(self):
|
||||||
#testing an exception isn't thrown
|
#testing an exception isn't thrown
|
||||||
PWM.start("PWM0", 100)
|
PWM.start("PWM0", 100)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_start_invalid_duty_cycle_high(self):
|
def test_pwm_start_invalid_duty_cycle_high(self):
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
@ -107,79 +124,62 @@ class TestPwmSetup:
|
|||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
PWM.start("PWM0", 0, 100, "1")
|
PWM.start("PWM0", 0, 100, "1")
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="pwm cleanup is doing weirdness for this test")
|
||||||
def test_pwm_duty_modified(self):
|
def test_pwm_duty_modified(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
|
|
||||||
pwm_test = '/sys/class/pwm/pwmchip0/pwm0'
|
pwm_test = '/sys/class/pwm/pwmchip0/pwm0/'
|
||||||
|
|
||||||
assert os.path.exists(pwm_test)
|
assert os.path.exists(pwm_test) == True
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
assert int(duty) == 0
|
assert int(duty) == 0
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
|
|
||||||
PWM.set_duty_cycle("PWM0", 100)
|
PWM.set_duty_cycle("PWM0", 100)
|
||||||
duty = open(pwm_test + '/duty_cycle').readline().strip()
|
duty = open(pwm_test + 'duty_cycle').readline().strip()
|
||||||
period = open(pwm_test + '/period').readline().strip()
|
period = open(pwm_test + 'period').readline().strip()
|
||||||
assert int(duty) == 500000
|
assert int(duty) == 500000
|
||||||
assert int(period) == 500000
|
assert int(period) == 500000
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_duty_cycle_non_setup_key(self):
|
def test_pwm_duty_cycle_non_setup_key(self):
|
||||||
with pytest.raises(RuntimeError):
|
with pytest.raises(RuntimeError):
|
||||||
PWM.set_duty_cycle("PWM0", 100)
|
PWM.set_duty_cycle("PWM0", 100)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_duty_cycle_invalid_key(self):
|
def test_pwm_duty_cycle_invalid_key(self):
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
PWM.set_duty_cycle("P9_15", 100)
|
PWM.set_duty_cycle("P9_15", 100)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_duty_cycle_invalid_value_high(self):
|
def test_pwm_duty_cycle_invalid_value_high(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
PWM.set_duty_cycle("PWM0", 101)
|
PWM.set_duty_cycle("PWM0", 101)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_duty_cycle_invalid_value_negative(self):
|
def test_pwm_duty_cycle_invalid_value_negative(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
PWM.set_duty_cycle("PWM0", -1)
|
PWM.set_duty_cycle("PWM0", -1)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_duty_cycle_invalid_value_string(self):
|
def test_pwm_duty_cycle_invalid_value_string(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
PWM.set_duty_cycle("PWM0", "a")
|
PWM.set_duty_cycle("PWM0", "a")
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_frequency_invalid_value_negative(self):
|
def test_pwm_frequency_invalid_value_negative(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
PWM.set_frequency("PWM0", -1)
|
PWM.set_frequency("PWM0", -1)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_frequency_invalid_value_string(self):
|
def test_pwm_frequency_invalid_value_string(self):
|
||||||
PWM.start("PWM0", 0)
|
PWM.start("PWM0", 0)
|
||||||
with pytest.raises(TypeError):
|
with pytest.raises(TypeError):
|
||||||
PWM.set_frequency("PWM0", "11")
|
PWM.set_frequency("PWM0", "11")
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_freq_non_setup_key(self):
|
def test_pwm_freq_non_setup_key(self):
|
||||||
with pytest.raises(RuntimeError):
|
with pytest.raises(RuntimeError):
|
||||||
PWM.set_frequency("PWM0", 100)
|
PWM.set_frequency("PWM0", 100)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_pwm_freq_non_setup_key(self):
|
def test_pwm_freq_non_setup_key(self):
|
||||||
with pytest.raises(ValueError):
|
with pytest.raises(ValueError):
|
||||||
PWM.set_frequency("P9_15", 100)
|
PWM.set_frequency("P9_15", 100)
|
||||||
PWM.cleanup()
|
|
||||||
|
|
||||||
def test_stop_pwm(self):
|
|
||||||
pass
|
|
||||||
#PWM.start("PWM0", 1)
|
|
||||||
#PWM.stop("PWM0")
|
|
||||||
#assert os.path.exists('/sys/class/gpio/gpio68')
|
|
||||||
#direction = open('/sys/class/gpio/gpio68/direction').readline().strip()
|
|
||||||
#assert direction == 'out\n'
|
|
||||||
#PWM.cleanup()
|
|
||||||
|
@ -10,6 +10,10 @@ def teardown_module(module):
|
|||||||
|
|
||||||
|
|
||||||
class TestSoftpwmSetup:
|
class TestSoftpwmSetup:
|
||||||
|
|
||||||
|
def setup_method(self, test_method):
|
||||||
|
PWM.cleanup()
|
||||||
|
|
||||||
def test_start_pwm(self):
|
def test_start_pwm(self):
|
||||||
PWM.start("XIO-P7", 50, 10)
|
PWM.start("XIO-P7", 50, 10)
|
||||||
base = GPIO.get_gpio_base() + 7
|
base = GPIO.get_gpio_base() + 7
|
||||||
|
Reference in New Issue
Block a user