123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * Copyright 2024 NXP
- * NXP 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.
- */
- /*********************
- * INCLUDES
- *********************/
- #include <stdio.h>
- #include "lvgl.h"
- #include "custom.h"
- /*********************
- * DEFINES
- *********************/
- /**********************
- * TYPEDEFS
- **********************/
- /**********************
- * STATIC PROTOTYPES
- **********************/
- /**********************
- * STATIC VARIABLES
- **********************/
- /**
- * Create a demo application
- */
- void custom_init(lv_ui *ui)
- {
- /* Add your codes here */
- }
|