Skip to content

Commit

Permalink
[release] v5.0.1 stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
flixr committed Aug 19, 2013
1 parent eb88d3d commit 5249932
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
Paparazzi 5.0.1_stable
======================

Maintenance release

General
-------

- joystick hat support for input2ivy
[#460] (https://github.com/paparazzi/paparazzi/pull/460)
- high speed logger: fix mag channels
- math: fix ecef_of_[ned|enu]_i
- fix google maps version download parsing

Rotorcraft/Fixedwing firmwares
------------------------------

- rotorcraft: add MODE_STARTUP
[#467] (https://github.com/paparazzi/paparazzi/pull/467)
- ARDrone2: GPS satellite informaton
[#474] (https://github.com/paparazzi/paparazzi/pull/474)
- fixedwing: init state interface before sensors and ins
- fixedwing: don't overwrite yaw command with trim

Simulator
---------

- NPS: explicitly add pcre lib
- NPS: make radio_control tpye datalink work
- don't try to use ADC_CHANNEL_CURRENT in SITL

Drivers and architecture specific
---------------------------------

- fixes for imu_drotek_10dof_v2
- init spi_slave_hs for imu_chimu
- mpu60x0_i2c: only copy ext data if i2c_bypass is false
- aspirin_v2.2: unselect baro at startup
- aspirin_2_spi: default AHRS_PROPAGATE_FREQUENCY is 512
- STM32F4: fix ppm input timer frequency for TIM2
- add i2c3 initialization


Paparazzi 5.0.0_stable
======================

Expand Down
10 changes: 8 additions & 2 deletions paparazzi_version
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
#!/bin/sh

DEF_VER=v5.0.0_stable
DEF_VER=v5.0.1_stable

# First try git describe (if running on a git repo),
# then use default version from above (for release tarballs).
if test -d .git -o -f .git
then
VN=$(git describe --match "v[0-9].[0-9]*" --dirty --always --long)
GIT_VN=$(git describe --match "v[0-9].[0-9]*" --dirty --always --long)
if echo "$GIT_VN" | grep -Eq "^v[0-9].[0-9]"
then
VN="$GIT_VN"
else
VN="$DEF_VER"-none-g"$GIT_VN"
fi
else
VN="$DEF_VER"
fi
Expand Down

0 comments on commit 5249932

Please sign in to comment.