Make it work

This commit is contained in:
Attila Body 2025-06-10 21:57:59 +02:00
parent 8e9b69b87a
commit 4e1f01c4d4
Signed by: abody
GPG key ID: BD0C6214E68FB5CF
25 changed files with 772 additions and 180 deletions

View file

@ -0,0 +1,26 @@
/*
* ll_testbed.cpp
*
* Created on: Oct 28, 2019
* Author: abody
*/
#include "stm32f4xx_hal.h"
#include "stm32f4xx_ll_gpio.h"
#include <main.h>
#include <f4ll/console_handler.h>
#include <stdlib.h>
#include <string.h>
#include <app.h>
void app_main()
{
f4ll::console_handler &con = f4ll::console_handler::init(USART2, DMA1, LL_DMA_STREAM_5, LL_DMA_STREAM_6);
while (true) {
con.print("Hello woooooooooooooooooooooooooooooooorld!\n");
HAL_Delay(500);
LL_GPIO_TogglePin(LD2_GPIO_Port, LD2_Pin);
}
}