initial commit

This commit is contained in:
2025-05-01 23:36:28 +03:00
parent 44e729cd41
commit 62052a4058
3 changed files with 28 additions and 1 deletions

25
Inc/DS_ILI3941.h Normal file
View File

@@ -0,0 +1,25 @@
#ifndef DS_ILI3941_H
#define DS_ILI3941_H
#include <stdbool.h>
#ifdef STM32G030xx
#include "stm32g0xx_hal.h"
#endif
#ifdef STM32F030xx
#include "stm32f0xx_hal.h"
#endif
#endif //DS_ILI3941_H

View File

@@ -1,2 +1,2 @@
# ILI9341 # DS_ILI9341

2
Src/DS_ILI3941.c Normal file
View File

@@ -0,0 +1,2 @@
#include "../inc/DS_ILI3941.h"