This repository contains the implementation and resources for an Advanced Driver Assistance System (ADAS) project, focused on the STM32 Blue Pill microcontroller.
ADAS/
├── STM32_drivers/
│ ├── inc/
│ │ ├── driver1.h
│ │ ├── driver2.h
│ │ └── ...
│ ├── src/
│ │ ├── driver1.c
│ │ ├── driver2.c
│ │ └── ...
│ └── ...
├── .gitignore
├── README.md
└── LICENSE
- inc/: Header files for the STM32 drivers.
- src/: Source files for the STM32 drivers.
Specifies files and directories to be ignored by Git.
Project documentation (this file).
License information for the project.
- STM32 Blue Pill microcontroller
- Required development tools (e.g., STM32CubeIDE, GCC, etc.)
- Clone the repository:
git clone https://github.com/elkhaligy/ADAS.git
- Navigate to the project directory:
cd ADAS
- Open the project in your preferred IDE.
- Build and flash the firmware onto the STM32 Blue Pill microcontroller.