Thu, 24 Jan 2019 13:53:01 +0100Adding -fPIC isn't necessary of xeno-config is set correctly. Backed out changeset b9f1fcda7d30 default tip
Edouard Tisserant [Thu, 24 Jan 2019 13:53:01 +0100] rev 808
Adding -fPIC isn't necessary of xeno-config is set correctly. Backed out changeset b9f1fcda7d30

Thu, 24 Jan 2019 13:49:40 +0100Rewrite of timer_xeno.c to use POSIX API instead of Alchemy.
Edouard Tisserant [Thu, 24 Jan 2019 13:49:40 +0100] rev 807
Rewrite of timer_xeno.c to use POSIX API instead of Alchemy.

Wed, 09 May 2018 13:16:00 +0200Force -fPIC in CFLAGS for xenomai targets.
Edouard Tisserant [Wed, 09 May 2018 13:16:00 +0200] rev 806
Force -fPIC in CFLAGS for xenomai targets.

Mon, 23 Apr 2018 12:32:03 +0200Workaround Alchemy task not beeing waken up when closing file descriptor it is waiting on, sequel of Xenomai3 all posix file ops
Edouard Tisserant [Mon, 23 Apr 2018 12:32:03 +0200] rev 805
Workaround Alchemy task not beeing waken up when closing file descriptor it is waiting on, sequel of Xenomai3 all posix file ops

Fri, 20 Apr 2018 15:00:04 +0200Removed legacy dead code from ex-rtdm rt-socketcan API, added shutdown() call to force recv() to unblock on CanClose()
Edouard Tisserant [Fri, 20 Apr 2018 15:00:04 +0200] rev 804
Removed legacy dead code from ex-rtdm rt-socketcan API, added shutdown() call to force recv() to unblock on CanClose()

Fri, 23 Mar 2018 15:45:52 +0100Fixed trailing -lrtdm added by configure with Xenomai
Edouard Tisserant [Fri, 23 Mar 2018 15:45:52 +0100] rev 803
Fixed trailing -lrtdm added by configure with Xenomai

Fri, 23 Mar 2018 15:15:18 +0100Quick fix for new RTDM interface in Xemomai 3, now posix
Edouard Tisserant [Fri, 23 Mar 2018 15:15:18 +0100] rev 802
Quick fix for new RTDM interface in Xemomai 3, now posix

Wed, 21 Mar 2018 13:33:43 +0100Rename timer.h into timers.h to avoid clash with Xenomai includes.
Edouard Tisserant [Wed, 21 Mar 2018 13:33:43 +0100] rev 801
Rename timer.h into timers.h to avoid clash with Xenomai includes.

Tue, 20 Mar 2018 16:04:52 +0100Update call to xeno-config in configure to Xenomai 3
Edouard Tisserant [Tue, 20 Mar 2018 16:04:52 +0100] rev 800
Update call to xeno-config in configure to Xenomai 3

Thu, 08 Mar 2018 15:09:22 +0100Update can_socket.c to Xenomai 3 API
Edouard Tisserant [Thu, 08 Mar 2018 15:09:22 +0100] rev 799
Update can_socket.c to Xenomai 3 API

Thu, 08 Mar 2018 15:03:04 +0100Update timers_xeno/timerscfg.h to Xenomai 3 API
Edouard Tisserant [Thu, 08 Mar 2018 15:03:04 +0100] rev 798
Update timers_xeno/timerscfg.h to Xenomai 3 API

Thu, 08 Mar 2018 14:55:01 +0100Update timers_xeno.c to Xenomai 3 API
Edouard Tisserant [Thu, 08 Mar 2018 14:55:01 +0100] rev 797
Update timers_xeno.c to Xenomai 3 API

Fri, 24 Mar 2017 10:52:38 +0100Send timeout is set to 10 ms. Without timeout PLC can be blocked by CAN driver: if CAN bus is not connected to controller CAN driver never returns and therfore PLC application halts. This is a temporary solution.
bmakuc <blaz.makuc@smarteh.si> [Fri, 24 Mar 2017 10:52:38 +0100] rev 796
Send timeout is set to 10 ms. Without timeout PLC can be blocked by CAN driver: if CAN bus is not connected to controller CAN driver never returns and therfore PLC application halts. This is a temporary solution.

Fri, 27 Nov 2015 16:27:46 +0100fixed static link of can driver
Edouard Tisserant [Fri, 27 Nov 2015 16:27:46 +0100] rev 795
fixed static link of can driver

Mon, 03 Aug 2015 18:01:58 +0200merged
Edouard Tisserant [Mon, 03 Aug 2015 18:01:58 +0200] rev 794
merged

Tue, 28 Jul 2015 16:36:55 +0200timers_unix: Fix termination problem of WaitReceiveTaskEnd
Robert Lehmann <robert.lehmann@sitec-systems.de> [Tue, 28 Jul 2015 16:36:55 +0200] rev 793
timers_unix: Fix termination problem of WaitReceiveTaskEnd

The function pthread_kill sends the Signal thread and to the own process.
If you use this construct than the application which calls uses the
canfestival api will terminate at the call of canClose. To avoid that
use pthread_cancel instead of pthread_kill. To use the pthread_cancel call
you need to set the cancel ability in the thread function. That means
you need to call pthread_setcancelstate and pthread_setcanceltype.
For the termination of the thread at any time it is important to set the
cancel type to PTHREAD_CANCEL_ASYNCHRONOUS.

Fri, 19 Jun 2015 20:16:07 +0200some fixes
Edouard Tisserant [Fri, 19 Jun 2015 20:16:07 +0200] rev 792
some fixes

Thu, 12 Jun 2014 14:07:16 +0200Fix : libcanfestival_unix.a not built if examples are not compiled
gabriele at naustech dot com [Thu, 12 Jun 2014 14:07:16 +0200] rev 791
Fix : libcanfestival_unix.a not built if examples are not compiled

Problem: when building Canfestival with unix timers 'libcanfestiva_unix.a'
is built only if you build examples too.

Test case:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

no errors but 'libcanfestival_unix.a' is not built:
$ find . -name "*.a"
./src/libcanfestival.a

Changing line 90 of 'drivers/unix/Makefile.in' to:
#driver: $(OBJS)
driver: libcanfestival_$(TARGET).a

solves the problem:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

$ find . -name "*.a"
./drivers/unix/libcanfestival_unix.a
./src/libcanfestival.a

Sun, 08 Jun 2014 17:42:47 +0200Honor DESTDIR in install rules
Samuel Martin <s.martin49@gmail.com> [Sun, 08 Jun 2014 17:42:47 +0200] rev 790
Honor DESTDIR in install rules

Signed-off-by: Samuel Martin <s.martin49@gmail.com>

Sat, 12 Oct 2013 09:14:38 +0900WxPython 2.9 support fix by J?rg H?bler
Edouard Tisserant [Sat, 12 Oct 2013 09:14:38 +0900] rev 789
WxPython 2.9 support fix by J?rg H?bler

Sat, 12 Oct 2013 09:09:04 +0900Merge changes from bitbucket.org/HMSFAE/canfestival_ixxat
Edouard Tisserant [Sat, 12 Oct 2013 09:09:04 +0900] rev 788
Merge changes from bitbucket.org/HMSFAE/canfestival_ixxat

Mon, 23 Sep 2013 10:20:07 -0400VCI3 driver added
Ian Tracy <iatr@hms.se> [Mon, 23 Sep 2013 10:20:07 -0400] rev 787
VCI3 driver added

Mon, 23 Sep 2013 00:27:39 +0200Fix bug when creating new node in newer version of wxPython (>=2.9)
Laurent Bessard [Mon, 23 Sep 2013 00:27:39 +0200] rev 786
Fix bug when creating new node in newer version of wxPython (>=2.9)

Tue, 14 May 2013 20:22:06 +0200Fixed SplitterWindows sash position at creation when subindextable is used in notebook tab
Laurent Bessard [Tue, 14 May 2013 20:22:06 +0200] rev 785
Fixed SplitterWindows sash position at creation when subindextable is used in notebook tab

Wed, 08 May 2013 09:14:59 +0200Fixed set usage in eds_utils
Laurent Bessard [Wed, 08 May 2013 09:14:59 +0200] rev 784
Fixed set usage in eds_utils

Fri, 03 May 2013 10:18:35 +0200Updated DS301 standard node entries definition
Laurent Bessard [Fri, 03 May 2013 10:18:35 +0200] rev 783
Updated DS301 standard node entries definition

Thu, 02 May 2013 09:42:37 +0200Removed call of deprecated function on wxSplitterWindow
Laurent Bessard [Thu, 02 May 2013 09:42:37 +0200] rev 782
Removed call of deprecated function on wxSplitterWindow

Wed, 24 Apr 2013 17:28:06 +0200Fixed Save As... function in Beremiz
Laurent Bessard [Wed, 24 Apr 2013 17:28:06 +0200] rev 781
Fixed Save As... function in Beremiz

Sat, 06 Apr 2013 11:57:26 +0200Fixed bug when importing NodeEditorTemplate
Laurent Bessard [Sat, 06 Apr 2013 11:57:26 +0200] rev 780
Fixed bug when importing NodeEditorTemplate

Wed, 27 Mar 2013 09:32:05 +0900Merge
Edouard Tisserant [Wed, 27 Mar 2013 09:32:05 +0900] rev 779
Merge