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

redo conversion between DBD and pvData #96

Merged
merged 46 commits into from
Jul 17, 2018
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
99d20ae
get and monitor: only report fields that have changed
mrkraimer Feb 16, 2018
c45ad0b
Merge branch 'master' of https://github.com/mrkraimer/pvAccessCPP
mrkraimer Feb 16, 2018
9d234c6
make sure pvCopy has some field order as pvStructure
mrkraimer Feb 19, 2018
2c5abf1
remove volatile from firstTime
mrkraimer Feb 21, 2018
3592b2d
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer Feb 28, 2018
2f29aee
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer Mar 14, 2018
7130306
redo conversion between DBD and pvData
mrkraimer Mar 31, 2018
32c51c8
all null request; remove some debug statements
mrkraimer Apr 2, 2018
596bc22
do not use c++11 initialization
mrkraimer Apr 3, 2018
5c809e0
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer Apr 3, 2018
46c1cc3
add #include <alarmString.h>
mrkraimer Apr 3, 2018
1e5f44d
major changes to dbdToPv
mrkraimer Apr 13, 2018
3c4679a
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer May 3, 2018
eafe902
add tests for provider ca
mrkraimer May 7, 2018
90a75d9
moved ca tests from testApp to testCa
mrkraimer May 9, 2018
0558972
added more tests; added path for softIoc;
mrkraimer May 10, 2018
911108a
attempt to make RTEMS work
mrkraimer May 11, 2018
ded28bb
try to get more travis build to work
mrkraimer May 11, 2018
00c56ed
another attempt to get RTEMS to build
mrkraimer May 11, 2018
5bc1231
more info if ioc not started
mrkraimer May 12, 2018
9b305e5
try to make travis BRBASE builds succeed
mrkraimer May 15, 2018
08290b4
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer May 23, 2018
d155487
testCa: Remove extraneous bi record, fix bo.OUT link
anjohnson May 26, 2018
3e0748d
testCa: Adjust test output
anjohnson May 26, 2018
872004f
testCa: Run IOC using dbUnitTest API where possible
anjohnson May 27, 2018
db15689
testCa: Use the softIoc's built-in exit subrecord
anjohnson May 27, 2018
c57b135
testCa: Configure CA to search localhost only
anjohnson May 27, 2018
2cddd33
testCa: Replace duplicated test code with a subroutine
anjohnson May 27, 2018
bbb2ad3
Merge pull request #1 from anjohnson/master
mrkraimer May 27, 2018
eacfbee
Building testCa requires src/ca
anjohnson May 27, 2018
206d080
testCa: Fix version check for Base-3.14 builds
anjohnson May 27, 2018
6681bdc
testCa: Embedded IOCs need Base-3.16.2 or higher
anjohnson May 27, 2018
7bf4049
testCa: Move IOC environment checks & configuration from run() to sta…
anjohnson May 27, 2018
4f3d037
Merge pull request #2 from anjohnson/master
mrkraimer May 28, 2018
720335e
testCa: export EPICS_HOST_ARCH unconditionally
anjohnson May 28, 2018
30fcce2
testCa: Add missing source file to embedded builds
anjohnson May 28, 2018
673edb2
Merge pull request #3 from anjohnson/master
mrkraimer May 29, 2018
fe8184c
added aux thread to call ca_clear_subscription
mrkraimer Jun 8, 2018
c377d35
StopMonitorThread addNoEventsCallback replaces waitForNoEvent
mrkraimer Jun 10, 2018
43111a2
Merge https://github.com/epics-base/pvAccessCPP
mrkraimer Jun 10, 2018
184e92b
delete stopMonitorThread; add monitorEventThread
mrkraimer Jun 19, 2018
b871b2d
caProvider.md is documentation for provider ca
mrkraimer Jun 25, 2018
98a019a
fix document title
mrkraimer Jun 25, 2018
02cf890
fix spaces in headers
mrkraimer Jun 25, 2018
f83c6c8
remove warnings andrew saw while building testCaProvider.cpp
mrkraimer Jun 26, 2018
df45c70
add putDoneThread and getDoneThread; fix issue 114
mrkraimer Jul 14, 2018
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
3 changes: 1 addition & 2 deletions src/ca/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ SHRLIB_VERSION ?= $(EPICS_PVA_MAJOR_VERSION).$(EPICS_PVA_MINOR_VERSION).$(EPICS_
LIB_SYS_LIBS_WIN32 += ws2_32

INC += pv/caProvider.h
INC += pv/caStatus.h

pvAccessCA_SRCS += caProvider.cpp
pvAccessCA_SRCS += caChannel.cpp
pvAccessCA_SRCS += caStatus.cpp
pvAccessCA_SRCS += dbdToPv.cpp

include $(TOP)/configure/RULES
Loading