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.
- Host: GitHub
- URL: https://github.com/ernanej/real-time-systems
- Owner: ErnaneJ
- Created: 2024-09-26T00:27:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-08T04:41:23.000Z (over 1 year ago)
- Last Synced: 2025-03-28T07:13:02.640Z (about 1 year ago)
- Topics: dca0125, real-time-systems, str
- Language: C++
- Homepage:
- Size: 1.21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```