Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AP_Periph: release notes for 1.8.0 #28923

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion Tools/AP_Periph/ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@
Release 1.7.0 26th February 2023
Release 1.8.0 21st December 2024
--------------------------------

This is a major AP_Periph release with the following changes:

- Support RTCMv3 packets larger than 300 bytes
- Support for HiRes magnetometer data
- Fixed CAN Mirroring
- Support for two RangeFinders
- GPS Rover fixes
- Support for streaming dedicated RPM messages
- Added CAN multicast UDP network gateway support
- Various PPGW Web UI fixes and enhancements
- Support for ESC_RATE parameter
- Support for sending extended ESC status
- Support for publishing raw IMU data
- Support for simulation of DroneCAN servo status
- Various CubeNode fixes
- Various BotBlox DroneNet fixes and enhancements
- Add support for MatekG474-Periph
- Removed non-ublox GPSs from MatekL431-Periph

Release 1.7.0 26th February 2024
--------------------------------

This is a major AP_Periph release with the following key changes:
Expand Down
6 changes: 3 additions & 3 deletions Tools/AP_Periph/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "ap_version.h"
#include <AP_HAL/AP_HAL.h>

#define THISFIRMWARE "AP_Periph V1.8.0-dev"
#define THISFIRMWARE "AP_Periph V1.9.0-dev"

// defines needed due to lack of GCS includes
#ifndef HAVE_ENUM_FIRMWARE_VERSION_TYPE
Expand All @@ -17,10 +17,10 @@
#endif

// the following line is parsed by the autotest scripts
#define FIRMWARE_VERSION 1,8,0,FIRMWARE_VERSION_TYPE_DEV
#define FIRMWARE_VERSION 1,9,0,FIRMWARE_VERSION_TYPE_DEV

#define FW_MAJOR 1
#define FW_MINOR 8
#define FW_MINOR 9
#define FW_PATCH 0
#define FW_TYPE FIRMWARE_VERSION_TYPE_DEV

Expand Down