mirror of
https://github.com/OpenEtherCATsociety/SOEM.git
synced 2026-02-06 00:53:00 +08:00
Fix some headers that were missed in previous commits. Change-Id: Ifa08fedf9199ba8c8a0766293bc7933e7f7475f2
29 lines
583 B
C
29 lines
583 B
C
/*
|
|
* This software is dual-licensed under GPLv3 and a commercial
|
|
* license. See the file LICENSE.md distributed with this software for
|
|
* full license information.
|
|
*/
|
|
|
|
/** \file
|
|
* \brief
|
|
* SOEM main include file
|
|
*/
|
|
|
|
#ifndef _SOEM_H
|
|
#define _SOEM_H
|
|
|
|
#include "soem/ec_options.h"
|
|
#include "soem/ec_type.h"
|
|
#include "nicdrv.h"
|
|
#include "soem/ec_base.h"
|
|
#include "soem/ec_main.h"
|
|
#include "soem/ec_dc.h"
|
|
#include "soem/ec_coe.h"
|
|
#include "soem/ec_foe.h"
|
|
#include "soem/ec_soe.h"
|
|
#include "soem/ec_eoe.h"
|
|
#include "soem/ec_config.h"
|
|
#include "soem/ec_print.h"
|
|
|
|
#endif /* _SOEM_H */
|