H2S stm32F407ZET stm32F407ZGT
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
H2S/Code/base/Inc/base.h

54 lines
784 B

2 years ago
#ifndef __407_BASE_H
#define __407_BASE_H
#ifdef __cplusplus
extern "C" {
#endif
#include "FreeRTOS.h"
#include "task.h"
#include "main.h"
#include "cmsis_os.h"
#include "usart.h"
#include "stm32f4xx.h"
#include "tim.h"
2 years ago
#include "myrtos.h"
2 years ago
#include "led.h"
#include "ds1302.h"
2 years ago
#include "eeprom.h"
2 years ago
#include "i2c_ads1115.h"
2 years ago
#include "pH.h"
// #include "usbd_storage_if.h"
2 years ago
// #include "sensor.h"
// #include "ILI93xx.h"
// #include "touch.h"
// #include "lv_port_disp.h"
// #include "lvgl.h"
// #include "ui.h"
#include "elog.h"
// osThreadId_t elogHandle;
// const osThreadAttr_t elog_attributes = {
// .name = "elog",
// .stack_size = 512,
// .priority = (osPriority_t) osPriorityLow,
// };
void SD_Test();
void timer_callback();
#ifdef __cplusplus
}
#endif
#endif