l3_sdram.c

来自「BlackFin LCD 显示, 简单GUI图形显示」· C语言 代码 · 共 14 行

C
14
字号
#include <services/services.h>
#include "image.h"

#define Frame_Size 640 * 480

// Define the DMA buffers for each frame.
// Because of SDRAM performance, each frame must be in a different bank.
// The placement in different banks is obtained through RESOLVE() statements in the LDF.
section("sdram0") char PingFrame[Frame_Size];
section("sdram0") char PongFrame[Frame_Size];



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?