/* ************************************************************** */ /* * Module BLWIREPARAM * This module contains functions to assist in parameter handling * for the BLWIRE module. * * Zachary Wolf * 12/7/99 */ /* ************************************************************** */ /* INCLUDES */ #include #include #include "blwire.h" /* ************************************************************** */ /* PUBLIC FUNCTIONS */ /* ************************************************************** */ /* * blwireparam_fill_param_struct * This function fills the parameter structure using # defined * parameters. * * Zachary Wolf * 12/7/99 */ void blwireparam_fill_param_struct(struct blwire_param_struct* blwire_param) { /* Include parameter definitions */ #include "param.h" /* Set the BL harmonics parameters */ blwire_param->num_turns_wire = BLWIRE_NUM_TURNS_WIRE; blwire_param->show_ui = BLWIRE_SHOW_UI; /* Done */ return; }