Updated source code documentation.
This commit is contained in:
parent
906cde3e3a
commit
daa10ed44a
|
|
@ -120,7 +120,9 @@ void ecrt_master_run(ec_master_t *master);
|
|||
|
||||
ec_slave_t *ecrt_master_get_slave(const ec_master_t *, const char *);
|
||||
|
||||
/** \cond */
|
||||
int ecrt_master_state(const ec_master_t *master);
|
||||
/** \endcond */
|
||||
|
||||
/******************************************************************************
|
||||
* Domain Methods
|
||||
|
|
|
|||
|
|
@ -90,9 +90,12 @@ int ec_fsm_running(ec_fsm_t *);
|
|||
int ec_fsm_success(ec_fsm_t *);
|
||||
|
||||
// TODO: layout slave state machines
|
||||
|
||||
/** \cond */
|
||||
void ec_fsm_slaveconf_state_start(ec_fsm_t *);
|
||||
void ec_fsm_slave_state_end(ec_fsm_t *);
|
||||
void ec_fsm_slave_state_error(ec_fsm_t *);
|
||||
/** \endcond */
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
|
|
|
|||
|
|
@ -54,6 +54,8 @@ ssize_t ecxmldev_write(struct file *, const char __user *, size_t, loff_t *);
|
|||
|
||||
/*****************************************************************************/
|
||||
|
||||
/** \cond */
|
||||
|
||||
static struct file_operations fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.open = ecxmldev_open,
|
||||
|
|
@ -62,6 +64,8 @@ static struct file_operations fops = {
|
|||
.write = ecxmldev_write
|
||||
};
|
||||
|
||||
/** \endcond */
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue