25 lines
215 B
C
25 lines
215 B
C
#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
|