Commit b077d94f authored by Federico Vaga's avatar Federico Vaga

Merge branch '8-do-the-6-0-3-release' into 'master'

Resolve "Do the 6.0.3 release"

Closes #8

See merge request be-cem-edl/fec/hardware-modules/fmc-adc-100m14b4cha!1
parents 3b816e09 dc450d61
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
Changelog Changelog
========= =========
6.0.3 - 2022-07-25
==================
Fixed
-----
- hdl: fix threshold logic that unders certain conditions was forcing a channel to 0
6.0.2 - 2022-04-05 6.0.2 - 2022-04-05
================== ==================
Changed Changed
......
...@@ -85,7 +85,7 @@ int fau_read_time(long time[3], enum fau_attribute first_attr) ...@@ -85,7 +85,7 @@ int fau_read_time(long time[3], enum fau_attribute first_attr)
return err; return err;
} }
void fau_print_time(long time1[3], long time2[3]) void fau_print_time(const long time1[3], const long time2[3])
{ {
long result[3]; long result[3];
......
...@@ -124,7 +124,7 @@ static long strtol_or_die(const char *arg) ...@@ -124,7 +124,7 @@ static long strtol_or_die(const char *arg)
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
/* default attribute */ /* default attribute */
static int attrdef[FAU_TRIG_NUM_ATTR] = {1, 0, 0, 0, 0, 0, 0, 0, 0 ,0}; const static int attrdef[FAU_TRIG_NUM_ATTR] = {1, 0, 0, 0, 0, 0, 0, 0, 0 ,0};
/* getop attribute */ /* getop attribute */
static int attrval[FAU_TRIG_NUM_ATTR] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; static int attrval[FAU_TRIG_NUM_ATTR] = {-1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
static int force = 0; static int force = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment