edouard@3946: # eRPC Interface edouard@3946: edouard@3946: This directory contains the eRPC interface definition and Python generated code for RPC channel used in between IDE and PLC. edouard@3946: edouard@3946: ## Directory Structure edouard@3946: edouard@3946: - `erpc_PLCObject.erpc`: eRPC interface definition, subset of IDL language edouard@3946: - `erpc_PLCObject/`: This directory contains eRPC interface generated python code edouard@3946: - `__init__.py`: Useless and empty file also generated by `erpcgen` edouard@3946: edouard@3946: edouard@3946: ## eRPC Interface Definition edouard@3946: edouard@3946: The eRPC interface definition files define the communication protocol and message formats used by the project. These files are used to generate the necessary code for both the client and server sides. edouard@3946: edouard@3946: ## Generated Code edouard@3946: edouard@3946: The Python code generated from the eRPC interface definition provides the necessary functions and classes to interact with the eRPC server. This code is used to implement both sides of the communication. edouard@3946: edouard@3946: ```sh edouard@3946: erpcgen -g py erpc_PLCObject.erpc edouard@3946: ```