adafruit-beaglebone-io-python/source/py_pwm.c
Drew Fustini 3a5d23d01b Fix warning about casting incompatible function types #308
Debian 10 (Buster) has gcc 8.2 which warns about:

cast between incompatible function types from ‘PyObject * (*)(PyObject *, PyObject *, PyObject *)’

The solution is to cast to '(PyCFunction)(void *)'
2019-12-06 10:26:49 +00:00

262 lines
8.2 KiB
C

/*
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_pwm.h"
#include <syslog.h>
// python function cleanup()
static PyObject *py_cleanup(__attribute__ ((unused)) PyObject *self, __attribute__ ((unused)) PyObject *args)
{
// unexport the PWM
pwm_cleanup();
Py_RETURN_NONE;
}
// python function start(channel, duty_cycle, freq)
static PyObject *py_start_channel(__attribute__ ((unused)) PyObject *self, PyObject *args, PyObject *kwargs)
{
char key[8];
char *channel;
float frequency = 2000.0;
float duty_cycle = 0.0;
int polarity = 0;
BBIO_err err;
static char *kwlist[] = {"channel", "duty_cycle", "frequency", "polarity", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|ffi", kwlist, &channel, &duty_cycle, &frequency, &polarity)) {
return NULL;
}
err = get_pwm_key(channel, key);
if (err != BBIO_OK) {
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
return NULL;
}
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");
return NULL;
}
if (frequency <= 0.0)
{
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
return NULL;
}
if (polarity < 0 || polarity > 1) {
PyErr_SetString(PyExc_ValueError, "polarity must be either 0 or 1");
return NULL;
}
err = pwm_start(key, duty_cycle, frequency, polarity);
switch (err) {
case BBIO_OK:
break;
case BBIO_ACCESS:
PyErr_SetString(PyExc_IOError, "could not access a necessary file");
return NULL;
case BBIO_SYSFS:
PyErr_SetString(PyExc_RuntimeError, "Problem with a sysfs file");
return NULL;
case BBIO_CAPE:
PyErr_SetString(PyExc_RuntimeError, "Problem with the cape manager");
return NULL;
case BBIO_INVARG:
PyErr_SetString(PyExc_ValueError, "Invalid argument");
return NULL;
case BBIO_MEM:
PyErr_SetString(PyExc_RuntimeError, "Out of memory");
return NULL;
case BBIO_GEN:
PyErr_SetString(PyExc_RuntimeError, "Unknown error");
return NULL;
}
Py_RETURN_NONE;
}
// python function stop(channel)
static PyObject *py_stop_channel(__attribute__ ((unused)) PyObject *self, PyObject *args, __attribute__ ((unused)) PyObject *kwargs)
{
char key[8];
char *channel;
BBIO_err err;
if (!PyArg_ParseTuple(args, "s", &channel))
return NULL;
err = get_pwm_key(channel, key);
if (err == BBIO_INVARG) {
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
return NULL;
}
err = pwm_disable(key);
switch (err) {
case BBIO_OK:
Py_RETURN_NONE;
break;
case BBIO_SYSFS:
PyErr_SetString(PyExc_RuntimeError, "Problem with sysfs files");
return NULL;
default:
PyErr_SetString(PyExc_RuntimeError, "Unknown error");
return NULL;
}
}
// python method PWM.set_duty_cycle(channel, duty_cycle)
static PyObject *py_set_duty_cycle(__attribute__ ((unused)) PyObject *self, PyObject *args, PyObject *kwargs)
{
char key[8];
char *channel;
float duty_cycle = 0.0;
BBIO_err err;
static char *kwlist[] = {"channel", "duty_cycle", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &duty_cycle))
return NULL;
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");
return NULL;
}
err = get_pwm_key(channel, key);
if (err != BBIO_OK) {
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
return NULL;
}
err = pwm_set_duty_cycle(key, duty_cycle);
if (err != BBIO_OK) {
PyErr_SetString(PyExc_RuntimeError, "You must start() the PWM channel first");
return NULL;
}
Py_RETURN_NONE;
}
// python method PWM.set_frequency(channel, frequency)
static PyObject *py_set_frequency(__attribute__ ((unused)) PyObject *self, PyObject *args, PyObject *kwargs)
{
char key[8];
char *channel;
float frequency = 1.0;
static char *kwlist[] = {"channel", "frequency", NULL};
BBIO_err err;
if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s|f", kwlist, &channel, &frequency))
return NULL;
if (frequency <= 0.0)
{
PyErr_SetString(PyExc_ValueError, "frequency must be greater than 0.0");
return NULL;
}
err = get_pwm_key(channel, key);
if (err != BBIO_OK) {
PyErr_SetString(PyExc_ValueError, "Invalid PWM key or name.");
return NULL;
}
err = pwm_set_frequency(key, frequency);
if (err == BBIO_GEN) {
PyErr_SetString(PyExc_RuntimeError, "You must start() the PWM channel first.");
return NULL;
} else if (err == BBIO_SYSFS) {
PyErr_SetString(PyExc_RuntimeError, "Could not write to the frequency file");
return NULL;
} else if (err != BBIO_OK) {
PyErr_SetString(PyExc_RuntimeError, "Other error");
return NULL;
}
Py_RETURN_NONE;
}
static const char moduledocstring[] = "PWM functionality of a BeagleBone using Python";
PyMethodDef pwm_methods[] = {
{"start", (PyCFunction)(void *)py_start_channel, METH_VARARGS | METH_KEYWORDS, "Set up and start the PWM channel. channel can be in the form of 'P8_10', or 'EHRPWM2A'"},
{"stop", (PyCFunction)(void *)py_stop_channel, METH_VARARGS | METH_KEYWORDS, "Stop the PWM channel. channel can be in the form of 'P8_10', or 'EHRPWM2A'"},
{ "set_duty_cycle", (PyCFunction)(void *)py_set_duty_cycle, METH_VARARGS | METH_KEYWORDS, "Change the duty cycle\ndutycycle - between 0.0 and 100.0" },
{ "set_frequency", (PyCFunction)(void *)py_set_frequency, METH_VARARGS | METH_KEYWORDS, "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"},
//{"setwarnings", py_setwarnings, METH_VARARGS, "Enable or disable warning messages"},
{NULL, NULL, 0, NULL}
};
#if PY_MAJOR_VERSION > 2
static struct PyModuleDef bbpwmmodule = {
PyModuleDef_HEAD_INIT,
"PWM", // 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.
pwm_methods
};
#endif
#if PY_MAJOR_VERSION > 2
PyMODINIT_FUNC PyInit_PWM(void)
#else
PyMODINIT_FUNC initPWM(void)
#endif
{
PyObject *module = NULL;
#if PY_MAJOR_VERSION > 2
if ((module = PyModule_Create(&bbpwmmodule)) == NULL)
return NULL;
#else
if ((module = Py_InitModule3("PWM", pwm_methods, moduledocstring)) == NULL)
return;
#endif
define_constants(module);
initlog(LOG_INFO, NULL, BBIO_LOG_OPTION);
#if PY_MAJOR_VERSION > 2
return module;
#else
return;
#endif
}