Skip to content

Commit

Permalink
OpenVLBI release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Platone committed Sep 10, 2023
1 parent 9eb0b98 commit d1f2862
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Ilia"
orcid: "https://orcid.org/0000-0002-8527-4611"
title: "OpenVLBI"
version: 3.0.1
version: 3.0.2
doi: 10.5281/zenodo.5775142
date-released: 2021-12-24
url: "https://github.com/iliaplatone/OpenVLBI"
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set (CMAKE_CXX_STANDARD 11)
set (CMAKE_C_STANDARD 11)
set (VLBI_VERSION_MAJOR 3)
set (VLBI_VERSION_MINOR 0)
set (VLBI_VERSION_RELEASE 1)
set (VLBI_VERSION_RELEASE 2)
set (VLBI_VERSION_STRING "${VLBI_VERSION_MAJOR}.${VLBI_VERSION_MINOR}.${VLBI_VERSION_RELEASE}")
set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}")
set(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATADIR}")
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libopenvlbi (3.0.2) unstable; urgency=medium

* New upstream release

-- Ilia Platone <info@iliaplatone.com> Sun, 10 Sep 2023 00:00:00 +0200

libopenvlbi (3.0.1) unstable; urgency=medium

* New upstream release
Expand Down
12 changes: 12 additions & 0 deletions dsp/dsp.h.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,24 @@ extern "C" {
* \defgroup DSP_Defines DSP API defines
*/
/**\{*/
///max stars used in alignment
#define DSP_MAX_STARS 200
///libDSP base type
typedef double dsp_t;
///complex type
typedef double complex_t[2];
///max value in file conversion
#define dsp_t_max 255
///min value in file conversion
#define dsp_t_min -dsp_t_max
///Size of strings
#define DSP_NAME_SIZE 128
///Hypercomplex type
typedef struct {
double real;
double *imaginary;
int dims;
} hypercomplex_t;
/**
* \brief get/set the maximum number of threads allowed
* \param value if greater than 1, set a maximum number of threads allowed
Expand Down

0 comments on commit d1f2862

Please sign in to comment.