armku / STM32F407DriverLibCopyNew

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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";
}

About


Languages

Language:C 74.9%Language:C++ 24.2%Language:Assembly 0.8%Language:Objective-C 0.1%Language:Batchfile 0.0%