EtherCAT.NET
A high-level SOEM-based EtherCAT master with ESI support for Windows and Linux.
File Explorer
Download Latest Version (.zip)- build.props
- build.targets
- Start-ArtifactDownload.ps1
- CMakeLists.txt
- stub.c
- virt_dev.h
- virt_dev_linux.c
- CMakeLists.txt
- exports.def
- serial.c
- serial.h
- soem_wrapper.c
- soem_wrapper.h
- CMakeLists.txt
- SOEM
- launchSettings.json
- Program.cs
- SampleMaster.csproj
- DistributedClocksExtension.cs
- DistributedClocksOpMode.cs
- DistributedClocksParameters.cs
- InitialSettingsExtension.cs
- DataDirection.cs
- DigitalIn.cs
- DigitalOut.cs
- ec_pdo_info_t.cs
- ec_slave_info_t.cs
- ec_variable_info_t.cs
- eoe_param_t.cs
- EtherCAT.NET.Types.csproj
- EthercatDataType.cs
- EtherCATInfo.cs
- EthercatType.cs
- SdoWriteRequest.cs
- SlaveExtension.cs
- SlaveInfo.cs
- SlaveInfoDynamicData.cs
- SlavePdo.cs
- SlaveVariable.cs
- ErrorMessage.Designer.cs
- ErrorMessage.resx
- EcMaster.cs
- EcSettings.cs
- EcUtilities.cs
- EsiUtilities.cs
- EtherCAT.NET.csproj
- EcBase.cs
- EcCoE.cs
- EcConfig.cs
- EcDc.cs
- EcEoE.cs
- EcFoE.cs
- EcHL.cs
- EcMain.cs
- EcPrint.cs
- EcShared.cs
- EcSoE.cs
- SyncManagerType.cs
- SOEM.PInvoke.csproj
- EtherCAT.NET.Tests.csproj
- PInvokeTests.cs
- OneDas.Extension.Ethercat.Types.d.ts
- OneDas.Types.d.ts
- .appveyor.yml
- .gitignore
- .gitmodules
- 3rd-party-licenses.md
- Directory.Build.props
- Directory.Build.targets
- EtherCAT.NET.sln
- global.json
- init_solution.ps1
- LICENSE.md
- NuGet.Config
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/XzuluX/EtherCAT.NET
Downloads the entire project code from GitHub to your computer.
cd EtherCAT.NET
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
cd native
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
3. .NET
MediumPrerequisites
dotnet build ./src/EtherCAT.NET/EtherCAT.NET.csproj
Type this command into your terminal and run it.
After dotnet run, check the message or address shown in the terminal.
Pulled directly from this repo's README.
// repository documentation
Was this content helpful?
(0 ratings)
