An open API service indexing awesome lists of open source software.

https://github.com/ernanej/real-time-systems

Codes, experiments and possible annotations conducted during the Real-Time Systems study.
https://github.com/ernanej/real-time-systems

dca0125 real-time-systems str

Last synced: about 1 year ago
JSON representation

Codes, experiments and possible annotations conducted during the Real-Time Systems study.

Awesome Lists containing this project

README

          

# Real-Time Systems Experiments 🕒

Repository with codes, experiments and possible annotations conducted during the Real-Time Systems study.

## Running the Program Using the `bin/run` Script 🚀

```bash
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"
```

## Manual Execution Programs Using CMake 🛠️

```bash
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
```

### VENV

```
python3 -m venv venv
deactivate
source venv/bin/activate
pip freeze > requirements.txt
pip install -r requirements.txt
```