Skip to content
Snippets Groups Projects
Commit 03867392 authored by Florian Pose's avatar Florian Pose
Browse files

Updated source code documentation.

parent 400860cc
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
/*****************************************************************************/
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment