/* ************************************************************** */ /* * Module BSCANPARAM * This module contains functions to assist in parameter handling * for the BSCAN module. * * Zachary Wolf * 11/22/02 */ /* ************************************************************** */ /* INCLUDES */ #include #include "bscan.h" /* ************************************************************** */ /* PUBLIC FUNCTIONS */ /* ************************************************************** */ /* * bscanparam_fill_param_struct * This function fills the parameter structure using # defined * parameters. * * Zachary Wolf * 11/22/02 */ void bscanparam_fill_param_struct(struct bscan_param_struct* bscan_param) { /* Include parameter definitions */ #include "param.h" /* Set the BSCAN parameters */ strcpy(bscan_param->probe_name, BSCAN_PROBE_NAME); strcpy(bscan_param->probe_calib_file, BSCAN_PROBE_CALIB_FILE); bscan_param->show_ui = BSCAN_SHOW_UI; /* Done */ return; }