# STM32F407DriverLib **Repository Path**: duoduobingo/STM32F407DriverLib ## Basic Information - **Project Name**: STM32F407DriverLib - **Description**: Easier way to program on ARM Cortex™-M4F STM32F407 in C++ - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2019-03-14 - **Last Updated**: 2021-11-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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 ```cpp # include "USART.h" USART com(1,115200); void main() { com<<"test string\r\n"; } ```