We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb4a32 commit 2b53713Copy full SHA for 2b53713
1 file changed
README.md
@@ -11,7 +11,7 @@ for UART/RS232 or UDP/IP.
11
12
## Install
13
14
-Packages are coming soon...
+ pip install compost_rpc
15
16
## Documentation
17
@@ -77,11 +77,25 @@ Simplified functionality diagram:
77
78
You just need Python and a C compiler like GCC to run our single PC example.
79
80
+Clone the repository and enter the directory with the example:
81
+
82
git clone https://github.com/STMicroelectronics/compost-rpc.git
83
cd compost-rpc/examples/pc_to_pc
84
85
+Generate C code from the protocol definition:
86
87
python protocol_def.py
88
89
+Compile the server:
90
91
+On Linux or macOS:
92
93
gcc -o server main.c compost.c
94
95
+On Windows:
96
97
+ gcc -o server main.c compost.c -lws2_32
98
99
In one terminal run the C server:
100
101
./server
0 commit comments