STM32F407DriverLib icon indicating copy to clipboard operation
STM32F407DriverLib copied to clipboard

Easier way to program on ARM Cortex™-M4F STM32F407 in C++

STM32F407DriverLib

Easier way to program on STM32F407 in C++

To make program on STM32 more easier, we packet every peripheral and module as a C++ class, mask operation steps instead of function-oriented interface.

eg: How to use USART to send data

# include "USART.h"
USART com(1,115200);
void main()
{
    com<<"test string\r\n";
}