mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-22 08:37:35 +08:00
226 lines
5.7 KiB
C++
226 lines
5.7 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2017 PX4 Development Team. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/**
|
|
* @file tune_control.cpp
|
|
*
|
|
* Command-line tool to control & test the (external) tunes.
|
|
* To use it make sure there's a driver running, which handles the tune_control uorb topic.
|
|
*/
|
|
|
|
#include <px4_getopt.h>
|
|
#include <px4_log.h>
|
|
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <lib/tunes/tunes.h>
|
|
#include <uORB/topics/tune_control.h>
|
|
|
|
#include <drivers/drv_hrt.h>
|
|
|
|
#define MAX_NOTE_ITERATION 50
|
|
|
|
static void usage(void);
|
|
|
|
static orb_advert_t tune_control_pub = nullptr;
|
|
|
|
extern "C" {
|
|
__EXPORT int tune_control_main(int argc, char *argv[]);
|
|
}
|
|
|
|
static void
|
|
usage()
|
|
{
|
|
PX4_INFO(
|
|
"External tune control for testing. Usage:\n"
|
|
"tune_control play [-t <default tunes>] [-f <frequency>] [-d <duration>] [-s <strength>] [-m < melody>]\n"
|
|
"\n"
|
|
"\t-t <defualt tunes>\tPlay the default (1...15) (default=1)\n"
|
|
"\t-f <frequency>\t\tFrequency from 0-20kHz\n"
|
|
"\t-d <duration>\t\tDuration of the tone in us\n"
|
|
"\t-s <strength>\t\tStrength of the tone between 0-100\n"
|
|
"\t-m <melody>\t\tMelody in a string form ex: \"MFT200e8a8a\"\n"
|
|
);
|
|
}
|
|
|
|
static void publish_tune_control(tune_control_s &tune_control)
|
|
{
|
|
tune_control.timestamp = hrt_absolute_time();
|
|
|
|
if (tune_control_pub == nullptr) {
|
|
tune_control_pub = orb_advertise(ORB_ID(tune_control), &tune_control);
|
|
|
|
} else {
|
|
orb_publish(ORB_ID(tune_control), tune_control_pub, &tune_control);
|
|
}
|
|
}
|
|
|
|
int
|
|
tune_control_main(int argc, char *argv[])
|
|
{
|
|
Tunes tunes;
|
|
bool string_input = false;
|
|
const char *tune_string = NULL;
|
|
int myoptind = 1;
|
|
int ch;
|
|
const char *myoptarg = NULL;
|
|
unsigned int value;
|
|
tune_control_s tune_control = {};
|
|
tune_control.tune_id = 0;
|
|
tune_control.strength = 40;
|
|
|
|
while ((ch = px4_getopt(argc, argv, "f:d:t:m:s:", &myoptind, &myoptarg)) != EOF) {
|
|
switch (ch) {
|
|
case 'f':
|
|
value = (uint16_t)(strtol(myoptarg, NULL, 0));
|
|
|
|
if (value > 0 && value < 22000) {
|
|
tune_control.frequency = value;
|
|
|
|
} else {
|
|
usage();
|
|
return 1;
|
|
}
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
tune_control.duration = (uint32_t)(strtol(myoptarg, NULL, 0));
|
|
break;
|
|
|
|
case 't':
|
|
value = (uint8_t)(strtol(myoptarg, NULL, 0));
|
|
|
|
if (value > 0 && value < tunes.get_default_tunes_size()) {
|
|
tune_control.tune_id = value;
|
|
|
|
} else {
|
|
usage();
|
|
return 1;
|
|
}
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
string_input = true;
|
|
tune_string = myoptarg;
|
|
|
|
// check if string is a valid melody string
|
|
if (tune_string[0] != 'M') {
|
|
usage();
|
|
return 1;
|
|
}
|
|
|
|
break;
|
|
|
|
case 's':
|
|
value = (uint16_t)(strtol(myoptarg, NULL, 0));
|
|
|
|
if (value > 0 && value < 100) {
|
|
tune_control.strength = value;
|
|
|
|
} else {
|
|
tune_control.strength = 40;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
usage();
|
|
return -1;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (myoptind >= argc) {
|
|
usage();
|
|
return 1;
|
|
}
|
|
|
|
unsigned frequency, duration, silence;
|
|
int exit_counter = 0;
|
|
|
|
if (!strcmp(argv[myoptind], "play")) {
|
|
if (string_input) {
|
|
PX4_INFO("Start playback...");
|
|
tunes.set_string(tune_string);
|
|
|
|
while (tunes.get_next_tune(frequency, duration, silence) > 0) {
|
|
tune_control.tune_id = 0;
|
|
tune_control.frequency = (uint16_t)frequency;
|
|
tune_control.duration = (uint32_t)duration;
|
|
tune_control.silence = (uint32_t)silence;
|
|
publish_tune_control(tune_control);
|
|
usleep(duration + silence);
|
|
exit_counter++;
|
|
|
|
// exit if the loop is doing more thatn 50 iteration
|
|
if (exit_counter > MAX_NOTE_ITERATION) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
PX4_INFO("Playback finished.");
|
|
|
|
} else {
|
|
if (tune_control.tune_id == 0) {
|
|
tune_control.tune_id = 1;
|
|
}
|
|
|
|
PX4_INFO("Publishing standard tune %d", tune_control.tune_id);
|
|
publish_tune_control(tune_control);
|
|
}
|
|
|
|
} else if (!strcmp(argv[myoptind], "libtest")) {
|
|
tunes.set_control(tune_control);
|
|
|
|
while (tunes.get_next_tune(frequency, duration, silence) > 0) {
|
|
PX4_INFO("frequency: %d, duration %d, silence %d", frequency, duration, silence);
|
|
usleep(500000);
|
|
exit_counter++;
|
|
|
|
// exit if the loop is doing more thatn 50 iteration
|
|
if (exit_counter > MAX_NOTE_ITERATION) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
usage();
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|