Repository with codes, experiments and possible annotations conducted during the Real-Time Systems study.
cd path/this/repo # Navigate to the repository directory
chmod +x bin/run # Ensure that the script has the necessary execute permissions
bin/run time # use -b to force build the program before executing "bin/run time -b"
cd path/this/repo
cp template/CMakeLists.txt.example src/project/CMakeLists.txt # copy and configure/edit CMakeLists.txt file
cd src/project
mkdir build
cd build
cmake ..
make
./main
python3 -m venv venv
deactivate
source venv/bin/activate
pip freeze > requirements.txt
pip install -r requirements.txt