mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
23 lines
431 B
C
23 lines
431 B
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2021-11-30 liang the first version
|
||
|
*/
|
||
|
|
||
|
#include <board.h>
|
||
|
|
||
|
#ifndef ARM2D_CONFIG_H_
|
||
|
#define ARM2D_CONFIG_H_
|
||
|
|
||
|
#define ARM2D_LCD_WIDTH LCD_WIDTH
|
||
|
#define ARM2D_LCD_HEIGHT LCD_HEIGHT
|
||
|
|
||
|
#define ARM2D_PFB_BLOCK_WIDTH LCD_WIDTH
|
||
|
#define ARM2D_PFB_BLOCK_HEIGHT 80
|
||
|
|
||
|
#endif
|