Commit 8e5fea71 authored by Lucas Russo's avatar Lucas Russo

sm_io/*: add trigger mux module to build system

parent 076c4e7c
...@@ -7,7 +7,8 @@ include $(SRC_DIR)/sm_io/modules/fmc130m_4ch/fmc130m_4ch.mk \ ...@@ -7,7 +7,8 @@ include $(SRC_DIR)/sm_io/modules/fmc130m_4ch/fmc130m_4ch.mk \
$(SRC_DIR)/sm_io/modules/swap/swap.mk \ $(SRC_DIR)/sm_io/modules/swap/swap.mk \
$(SRC_DIR)/sm_io/modules/rffe/rffe.mk \ $(SRC_DIR)/sm_io/modules/rffe/rffe.mk \
$(SRC_DIR)/sm_io/modules/afc_diag/afc_diag.mk \ $(SRC_DIR)/sm_io/modules/afc_diag/afc_diag.mk \
$(SRC_DIR)/sm_io/modules/trigger_iface/trigger_iface.mk $(SRC_DIR)/sm_io/modules/trigger_iface/trigger_iface.mk \
$(SRC_DIR)/sm_io/modules/trigger_iface/trigger_mux.mk
sm_io_modules_DIR = $(SRC_DIR)/sm_io/modules sm_io_modules_DIR = $(SRC_DIR)/sm_io/modules
...@@ -21,4 +22,5 @@ sm_io_modules_OBJS = $(sm_io_modules_DIR)/sm_io_codes.o \ ...@@ -21,4 +22,5 @@ sm_io_modules_OBJS = $(sm_io_modules_DIR)/sm_io_codes.o \
$(sm_io_swap_OBJS) \ $(sm_io_swap_OBJS) \
$(sm_io_rffe_OBJS) \ $(sm_io_rffe_OBJS) \
$(sm_io_afc_diag_OBJS) \ $(sm_io_afc_diag_OBJS) \
$(sm_io_trigger_iface_OBJS) $(sm_io_trigger_iface_OBJS) \
$(sm_io_trigger_mux_OBJS)
...@@ -17,6 +17,8 @@ const disp_op_t **smio_exp_ops [] = { ...@@ -17,6 +17,8 @@ const disp_op_t **smio_exp_ops [] = {
swap_exp_ops, swap_exp_ops,
rffe_exp_ops, rffe_exp_ops,
afc_diag_exp_ops, afc_diag_exp_ops,
trigger_iface_exp_ops,
trigger_mux_exp_ops,
NULL NULL
}; };
...@@ -32,6 +32,7 @@ typedef struct _smio_rffe_version_t smio_rffe_version_t; ...@@ -32,6 +32,7 @@ typedef struct _smio_rffe_version_t smio_rffe_version_t;
#include "sm_io_rffe_codes.h" #include "sm_io_rffe_codes.h"
#include "sm_io_afc_diag_codes.h" #include "sm_io_afc_diag_codes.h"
#include "sm_io_trigger_iface_codes.h" #include "sm_io_trigger_iface_codes.h"
#include "sm_io_trigger_mux_codes.h"
/* Include all function descriptors */ /* Include all function descriptors */
#include "sm_io_fmc130m_4ch_exports.h" #include "sm_io_fmc130m_4ch_exports.h"
...@@ -44,6 +45,7 @@ typedef struct _smio_rffe_version_t smio_rffe_version_t; ...@@ -44,6 +45,7 @@ typedef struct _smio_rffe_version_t smio_rffe_version_t;
#include "sm_io_rffe_exports.h" #include "sm_io_rffe_exports.h"
#include "sm_io_afc_diag_exports.h" #include "sm_io_afc_diag_exports.h"
#include "sm_io_trigger_iface_exports.h" #include "sm_io_trigger_iface_exports.h"
#include "sm_io_trigger_mux_exports.h"
/* Merge all function descriptors in a single structure */ /* Merge all function descriptors in a single structure */
extern const disp_op_t **smio_exp_ops []; extern const disp_op_t **smio_exp_ops [];
......
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