INSERT GRAPHIC HERE (include hyperlink in image)
Subtitle or Short Description Goes Here
| diff --git a/rtems/config/4.11/net/soem.bset b/rtems/config/4.11/net/soem.bset | |
| new file mode 100644 | |
| index 0000000..6934991 | |
| --- /dev/null | |
| +++ b/rtems/config/4.11/net/soem.bset | |
| @@ -0,0 +1,20 @@ | |
| +# | |
| +# Build set for EtherCAT SOEM | |
| +# | |
| + |
| #include <iostream> | |
| #include <string> | |
| enum Errors {ErrorA=0, ErrorB, ErrorC}; | |
| std::ostream& operator<<(std::ostream& out, const Errors value){ | |
| const char* s = 0; | |
| #define PROCESS_VAL(p) case(p): s = #p; break; | |
| switch(value){ | |
| PROCESS_VAL(ErrorA); |