Adopt SHELL_HELP macro for pwm_shell Signed-off-by: Benjamin Cabé <benjamin@zephyrproject.org>
165 lines
3.7 KiB
C
165 lines
3.7 KiB
C
/*
|
|
* Copyright (c) 2019 Vestas Wind Systems A/S
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief PWM shell commands.
|
|
*/
|
|
|
|
#include <zephyr/shell/shell.h>
|
|
#include <zephyr/drivers/pwm.h>
|
|
#include <stdlib.h>
|
|
|
|
struct args_index {
|
|
uint8_t device;
|
|
uint8_t channel;
|
|
uint8_t period;
|
|
uint8_t pulse;
|
|
uint8_t flags;
|
|
};
|
|
|
|
static const struct args_index args_indx = {
|
|
.device = 1,
|
|
.channel = 2,
|
|
.period = 3,
|
|
.pulse = 4,
|
|
.flags = 5,
|
|
};
|
|
|
|
static int cmd_cycles(const struct shell *sh, size_t argc, char **argv)
|
|
{
|
|
pwm_flags_t flags = 0;
|
|
const struct device *dev;
|
|
uint32_t period;
|
|
uint32_t pulse;
|
|
uint32_t channel;
|
|
int err;
|
|
|
|
dev = shell_device_get_binding(argv[args_indx.device]);
|
|
if (!dev) {
|
|
shell_error(sh, "PWM device not found");
|
|
return -EINVAL;
|
|
}
|
|
|
|
channel = strtoul(argv[args_indx.channel], NULL, 0);
|
|
period = strtoul(argv[args_indx.period], NULL, 0);
|
|
pulse = strtoul(argv[args_indx.pulse], NULL, 0);
|
|
|
|
if (argc == (args_indx.flags + 1)) {
|
|
flags = strtoul(argv[args_indx.flags], NULL, 0);
|
|
}
|
|
|
|
err = pwm_set_cycles(dev, channel, period, pulse, flags);
|
|
if (err) {
|
|
shell_error(sh, "failed to setup PWM (err %d)",
|
|
err);
|
|
return err;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int cmd_usec(const struct shell *sh, size_t argc, char **argv)
|
|
{
|
|
pwm_flags_t flags = 0;
|
|
const struct device *dev;
|
|
uint32_t period;
|
|
uint32_t pulse;
|
|
uint32_t channel;
|
|
int err;
|
|
|
|
dev = shell_device_get_binding(argv[args_indx.device]);
|
|
if (!dev) {
|
|
shell_error(sh, "PWM device not found");
|
|
return -EINVAL;
|
|
}
|
|
|
|
channel = strtoul(argv[args_indx.channel], NULL, 0);
|
|
period = strtoul(argv[args_indx.period], NULL, 0);
|
|
pulse = strtoul(argv[args_indx.pulse], NULL, 0);
|
|
|
|
if (argc == (args_indx.flags + 1)) {
|
|
flags = strtoul(argv[args_indx.flags], NULL, 0);
|
|
}
|
|
|
|
err = pwm_set(dev, channel, PWM_USEC(period), PWM_USEC(pulse), flags);
|
|
if (err) {
|
|
shell_error(sh, "failed to setup PWM (err %d)", err);
|
|
return err;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int cmd_nsec(const struct shell *sh, size_t argc, char **argv)
|
|
{
|
|
pwm_flags_t flags = 0;
|
|
const struct device *dev;
|
|
uint32_t period;
|
|
uint32_t pulse;
|
|
uint32_t channel;
|
|
int err;
|
|
|
|
dev = shell_device_get_binding(argv[args_indx.device]);
|
|
if (!dev) {
|
|
shell_error(sh, "PWM device not found");
|
|
return -EINVAL;
|
|
}
|
|
|
|
channel = strtoul(argv[args_indx.channel], NULL, 0);
|
|
period = strtoul(argv[args_indx.period], NULL, 0);
|
|
pulse = strtoul(argv[args_indx.pulse], NULL, 0);
|
|
|
|
if (argc == (args_indx.flags + 1)) {
|
|
flags = strtoul(argv[args_indx.flags], NULL, 0);
|
|
}
|
|
|
|
err = pwm_set(dev, channel, period, pulse, flags);
|
|
if (err) {
|
|
shell_error(sh, "failed to setup PWM (err %d)", err);
|
|
return err;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static bool device_is_pwm(const struct device *dev)
|
|
{
|
|
return DEVICE_API_IS(pwm, dev);
|
|
}
|
|
|
|
static void device_name_get(size_t idx, struct shell_static_entry *entry)
|
|
{
|
|
const struct device *dev = shell_device_filter(idx, device_is_pwm);
|
|
|
|
entry->syntax = (dev != NULL) ? dev->name : NULL;
|
|
entry->handler = NULL;
|
|
entry->help = NULL;
|
|
entry->subcmd = NULL;
|
|
}
|
|
|
|
SHELL_DYNAMIC_CMD_CREATE(dsub_device_name, device_name_get);
|
|
|
|
SHELL_STATIC_SUBCMD_SET_CREATE(pwm_cmds,
|
|
SHELL_CMD_ARG(
|
|
cycles, &dsub_device_name,
|
|
SHELL_HELP("Set PWM period and pulse width in cycles.",
|
|
"<device> <channel> <period> <pulse width> [flags]"),
|
|
cmd_cycles, 5, 1),
|
|
SHELL_CMD_ARG(
|
|
usec, &dsub_device_name,
|
|
SHELL_HELP("Set PWM period and pulse width in microseconds.",
|
|
"<device> <channel> <period> <pulse width> [flags]"),
|
|
cmd_usec, 5, 1),
|
|
SHELL_CMD_ARG(
|
|
nsec, &dsub_device_name,
|
|
SHELL_HELP("Set PWM period and pulse width in nanoseconds.",
|
|
"<device> <channel> <period> <pulse width> [flags]"),
|
|
cmd_nsec, 5, 1),
|
|
SHELL_SUBCMD_SET_END
|
|
);
|
|
|
|
SHELL_CMD_REGISTER(pwm, &pwm_cmds, "PWM shell commands", NULL);
|