43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/*
|
|
* Copyright 2023 NXP
|
|
* NXP Confidential and Proprietary. This software is owned or controlled by NXP and may only be used strictly in
|
|
* accordance with the applicable license terms. By expressly accepting such terms or by downloading, installing,
|
|
* activating and/or otherwise using the software, you are agreeing that you have read, and that you agree to
|
|
* comply with and are bound by, such license terms. If you do not agree to be bound by the applicable license
|
|
* terms, then you may not retain, install, activate or otherwise use the software.
|
|
*/
|
|
|
|
#ifndef __CUSTOM_H_
|
|
#define __CUSTOM_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "gui_guider.h"
|
|
|
|
#include "ads1220.h"
|
|
#include "timer.h"
|
|
#include "adcs.h"
|
|
#include "lcd_init.h"
|
|
#include "lcd.h"
|
|
#include "linear.h"
|
|
#include "key.h"
|
|
#include "24cxx.h"
|
|
#include "ads1230.h"
|
|
|
|
void custom_init(lv_ui *ui);
|
|
|
|
void main_screen_updata_data_task_timer_cb(lv_timer_t *t);
|
|
void chart_screen_updata_data_task_timer_cb(lv_timer_t *t);
|
|
void history_screen_updata_data_task_timer_cb(lv_timer_t *t);
|
|
|
|
extern int history_num;
|
|
extern lv_chart_series_t* ser1;
|
|
extern lv_timer_t *updata_data_task;
|
|
extern int cnt_array[10];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* EVENT_CB_H_ */
|