Threads and Scheduling

docs: Update project README.md.

+32 -1
+32 -1
README.md
··· 1 + # tsched 1 2 3 + This project is the second assignment for CCOM4017. 2 4 5 + I am using a sockets library I developed myself on: 6 + - https://git.gay/sona/enchufe 7 + 8 + # Running 9 + 10 + You can simply execute: 11 + 12 + ```sh 13 + make run 14 + ``` 15 + 16 + This will run the cluster on address `127.0.0.1` on port `42069` and connect the 17 + embedded device to it. 18 + 19 + If you prefer to run each separately then you can run the program like in the 20 + following two sections. 21 + 22 + ## Cluster 23 + 24 + ```sh 25 + make cluster.py ADDRESS=<server address> PORT=<server port> 26 + ``` 27 + 28 + where `<server address>` is the IP address of the cluster, and `<server port>` 29 + is the port number of the cluster. 30 + 31 + ## Embedded device 3 32 4 33 Example of how to run the embedded device: 5 34 ··· 7 36 make edevice.py ADDRESS=<server address> PORT=<server port> 8 37 ``` 9 38 10 - 11 39 where `<server address>` is the IP address of the cluster, and `<server port>` 12 40 is the port number of the cluster. 41 + 42 + Example of how to run the cluster: 43 +