Commit 0ce38249 authored by Lucas Russo's avatar Lucas Russo

hal/sm_io/modules/*: add array containing all of the exported functions

parent 37455a0d
include hal/sm_io/modules/fmc130m_4ch/fmc130m_4ch.mk \
hal/sm_io/modules/acq/acq.mk \
hal/sm_io/modules/dsp/dsp.mk \
include hal/sm_io/modules/fmc130m_4ch/fmc130m_4ch.mk \
hal/sm_io/modules/acq/acq.mk \
hal/sm_io/modules/dsp/dsp.mk \
hal/sm_io/modules/swap/swap.mk
sm_io_modules_DIR = hal/sm_io/modules
sm_io_modules_OBJS = $(sm_io_modules_DIR)/sm_io_mod_dispatch.o \
$(sm_io_fmc130m_4ch_OBJS) \
$(sm_io_acq_OBJS) \
$(sm_io_dsp_OBJS) \
sm_io_modules_OBJS = $(sm_io_modules_DIR)/sm_io_mod_dispatch.o \
$(sm_io_modules_DIR)/sm_io_codes.o \
$(sm_io_fmc130m_4ch_OBJS) \
$(sm_io_acq_OBJS) \
$(sm_io_dsp_OBJS) \
$(sm_io_swap_OBJS)
sm_io_modules_INCLUDE_DIRS = $(sm_io_modules_DIR) \
$(sm_io_fmc130m_4ch_DIR) \
$(sm_io_acq_DIR) \
$(sm_io_dsp_DIR) \
$(sm_io_swap_DIR)
sm_io_modules_INCLUDE_DIRS = $(sm_io_modules_DIR) \
$(sm_io_fmc130m_4ch_DIR) \
$(sm_io_acq_DIR) \
$(sm_io_dsp_DIR) \
$(sm_io_swap_DIR)
/*
* Copyright (C) 2014 LNLS (www.lnls.br)
* Author: Lucas Russo <lucas.russo@lnls.br>
*
* Released according to the GNU LGPL, version 3 or any later version.
*/
#include "sm_io_codes.h"
const disp_op_t **smio_exp_ops [] = {
acq_exp_ops,
dsp_exp_ops,
fmc130m_4ch_exp_ops,
swap_exp_ops
};
......@@ -14,4 +14,13 @@
#include "sm_io_dsp_codes.h"
#include "sm_io_swap_codes.h"
/* Include all function descriptors */
#include "sm_io_fmc130m_4ch_exports.h"
#include "sm_io_acq_exports.h"
#include "sm_io_dsp_exports.h"
#include "sm_io_swap_exports.h"
/* Merge all function descriptors in a single structure */
extern const disp_op_t **smio_exp_ops [];
#endif
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