0ae35d11ff
Add a FileWriter-compatible per-source binary recorder: native-type encode and TypeDescriptor mapping, FileWriter header serialization, subset/quantized/ ACCUMULATE row serialization, and push-thread double-buffer flush with size-cap rotation, keep-N pruning, fdatasync cadence, disk-free and staging-overflow guards. Covered by 12 GTests; full suite (83) green. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
2.0 KiB
Makefile
55 lines
2.0 KiB
Makefile
#############################################################
|
|
#
|
|
# Copyright 2015 F4E | European Joint Undertaking for ITER
|
|
# and the Development of Fusion Energy ('Fusion for Energy')
|
|
#
|
|
# Licensed under the EUPL, Version 1.1 or - as soon they
|
|
# will be approved by the European Commission - subsequent
|
|
# versions of the EUPL (the "Licence");
|
|
# You may not use this work except in compliance with the
|
|
# Licence.
|
|
# You may obtain a copy of the Licence at:
|
|
#
|
|
# http://ec.europa.eu/idabc/eupl
|
|
#
|
|
# Unless required by applicable law or agreed to in
|
|
# writing, software distributed under the Licence is
|
|
# distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
|
# express or implied.
|
|
# See the Licence for the specific language governing
|
|
# permissions and limitations under the Licence.
|
|
#
|
|
#############################################################
|
|
|
|
OBJSX = TriggerEngineSrc.x BinaryRecorderSrc.x SignalRingBufferGTest.x TriggerEngineGTest.x LTTBGTest.x BinaryRecorderGTest.x
|
|
|
|
PACKAGE=Applications
|
|
ROOT_DIR=../../..
|
|
MAKEDEFAULTDIR=$(MARTe2_DIR)/MakeDefaults
|
|
|
|
include $(MAKEDEFAULTDIR)/MakeStdLibDefs.$(TARGET)
|
|
|
|
INCLUDES += -I.
|
|
INCLUDES += -I$(ROOT_DIR)/Source/Applications/StreamHub
|
|
INCLUDES += -I$(ROOT_DIR)/Common/UDP
|
|
INCLUDES += -I$(ROOT_DIR)/Source/Components/Interfaces/UDPStream
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/BareMetal/L0Types
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/BareMetal/L1Portability
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/BareMetal/L2Objects
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/BareMetal/L3Streams
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/BareMetal/L4Configuration
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/Scheduler/L1Portability
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/Scheduler/L3Services
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/FileSystem/L1Portability
|
|
INCLUDES += -I$(MARTe2_DIR)/Source/Core/FileSystem/L3Streams
|
|
INCLUDES += -I$(MARTe2_DIR)/Lib/gtest-1.7.0/include
|
|
|
|
all: $(OBJS) \
|
|
$(BUILD_DIR)/StreamHubTest$(LIBEXT)
|
|
echo $(OBJS)
|
|
|
|
include depends.$(TARGET)
|
|
|
|
include $(MAKEDEFAULTDIR)/MakeStdLibRules.$(TARGET)
|