2021-06-20 03:02:12 -03:00
|
|
|
/*
|
|
|
|
This program 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "GCS_MAVLink.h"
|
2022-02-21 00:40:40 -04:00
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
2021-06-20 03:02:12 -03:00
|
|
|
#include "AP_Periph.h"
|
2022-02-21 05:32:40 -04:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
|
|
|
|
#include <hal.h>
|
|
|
|
#endif
|
2021-06-20 03:02:12 -03:00
|
|
|
|
2021-08-18 08:42:18 -03:00
|
|
|
#if HAL_GCS_ENABLED
|
2021-06-20 03:02:12 -03:00
|
|
|
|
|
|
|
static const ap_message STREAM_RAW_SENSORS_msgs[] = {
|
|
|
|
MSG_RAW_IMU
|
|
|
|
};
|
|
|
|
static const ap_message STREAM_EXTENDED_STATUS_msgs[] = {
|
|
|
|
MSG_SYS_STATUS,
|
|
|
|
MSG_POWER_STATUS,
|
2023-11-07 19:14:35 -04:00
|
|
|
#if HAL_WITH_MCU_MONITORING
|
2021-08-23 01:56:22 -03:00
|
|
|
MSG_MCU_STATUS,
|
2023-11-07 19:14:35 -04:00
|
|
|
#endif
|
2021-06-20 03:02:12 -03:00
|
|
|
MSG_MEMINFO,
|
|
|
|
MSG_GPS_RAW,
|
|
|
|
MSG_GPS_RTK,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const ap_message STREAM_POSITION_msgs[] = {
|
2023-06-20 03:28:14 -03:00
|
|
|
#if AP_AHRS_ENABLED
|
2021-06-20 03:02:12 -03:00
|
|
|
MSG_LOCATION,
|
|
|
|
MSG_LOCAL_POSITION
|
2021-07-11 03:38:42 -03:00
|
|
|
#endif
|
2021-06-20 03:02:12 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
static const ap_message STREAM_PARAMS_msgs[] = {
|
|
|
|
MSG_NEXT_PARAM
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct GCS_MAVLINK::stream_entries GCS_MAVLINK::all_stream_entries[] = {
|
|
|
|
MAV_STREAM_ENTRY(STREAM_RAW_SENSORS),
|
|
|
|
MAV_STREAM_ENTRY(STREAM_POSITION),
|
|
|
|
MAV_STREAM_ENTRY(STREAM_EXTENDED_STATUS),
|
|
|
|
MAV_STREAM_ENTRY(STREAM_PARAMS),
|
|
|
|
MAV_STREAM_TERMINATOR // must have this at end of stream_entries
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct AP_Param::GroupInfo GCS_MAVLINK_Parameters::var_info[] = {
|
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t GCS_MAVLINK_Periph::sysid_my_gcs() const
|
|
|
|
{
|
|
|
|
return periph.g.sysid_this_mav;
|
|
|
|
}
|
2021-07-11 03:38:42 -03:00
|
|
|
|
|
|
|
uint8_t GCS_Periph::sysid_this_mav() const
|
|
|
|
{
|
|
|
|
return periph.g.sysid_this_mav;
|
|
|
|
}
|
|
|
|
|
2023-09-13 06:01:31 -03:00
|
|
|
MAV_RESULT GCS_MAVLINK_Periph::handle_preflight_reboot(const mavlink_command_int_t &packet, const mavlink_message_t &msg)
|
2021-07-11 03:38:42 -03:00
|
|
|
{
|
|
|
|
hal.scheduler->delay(10);
|
|
|
|
periph.prepare_reboot();
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_CHIBIOS
|
|
|
|
NVIC_SystemReset();
|
|
|
|
#elif CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
|
|
|
HAL_SITL::actually_reboot();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-08-18 08:42:18 -03:00
|
|
|
#endif // #if HAL_GCS_ENABLED
|