加入星計(jì)劃,您可以享受以下權(quán)益:

  • 創(chuàng)作內(nèi)容快速變現(xiàn)
  • 行業(yè)影響力擴(kuò)散
  • 作品版權(quán)保護(hù)
  • 300W+ 專業(yè)用戶
  • 1.5W+ 優(yōu)質(zhì)創(chuàng)作者
  • 5000+ 長(zhǎng)期合作伙伴
立即加入
  • 正文
  • 推薦器件
  • 相關(guān)推薦
  • 電子產(chǎn)業(yè)圖譜
申請(qǐng)入駐 產(chǎn)業(yè)圖譜

如何在KEIL上基于LPC55S69上部署arm2D!

05/15 07:05
2789
閱讀需 8 分鐘
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點(diǎn)資訊討論

首先安裝下面2個(gè)KEIL PACK包。一個(gè)ARM2D,一個(gè)perf_counter。

其次以一個(gè)帶LCD的可以正常繪圖的例程為基礎(chǔ),開(kāi)始添加ARM2D。

如下圖添加ARM2D。

如下圖添加perf_counter。

再就是CMSIS包,需要添加DSP庫(kù)。

添加pack完成后的樣子。

下一步配置ARM2D的arm2d_cfg.h和disp lcd

下面lcd驅(qū)動(dòng)函數(shù)實(shí)現(xiàn)下圖的繪圖函數(shù)。

用戶應(yīng)用文件添加相關(guān)頭文件。

然后主函數(shù)添加初始化。

用戶文件添加時(shí)間測(cè)量函數(shù)

/*============================ IMPLEMENTATION ================================*/
static int64_t s_lTimestap;

__OVERRIDE_WEAK
void arm_2d_helper_perf_counter_start(void)
{
s_lTimestap = get_system_ticks();
}

__OVERRIDE_WEAK
int32_t arm_2d_helper_perf_counter_stop(void)
{
return (int32_t)(get_system_ticks() - s_lTimestap);
}

#include "stdio.h"
#include "fsl_device_registers.h"
#include "fsl_debug_console.h"
#include "pin_mux.h"
#include "clock_config.h"
#include "board.h"
#include "peripherals.h"
#include "fsl_power.h"

#include "lcd_driver.h"
#include "arm_2d.h"
#include "arm_2d_helper.h"
#include "perf_counter.h"
#include "arm_2d_disp_adapter_0.h"
/*******************************************************************************
* Definitions
******************************************************************************/

//static const uint8_t c_bmpClockFace[];

/*******************************************************************************
* Prototypes
******************************************************************************/
void SysTick_Handler(void)
{

}

int fputc(int ch,FILE *f)
{
return ch;
}
/*============================ IMPLEMENTATION ================================*/
static int64_t s_lTimestap;

__OVERRIDE_WEAK
void arm_2d_helper_perf_counter_start(void)
{
s_lTimestap = get_system_ticks();
}

__OVERRIDE_WEAK
int32_t arm_2d_helper_perf_counter_stop(void)
{
return (int32_t)(get_system_ticks() - s_lTimestap);
}

/*!
* @brief Main function
*/
int main(void)
{
char ch;
/* Init board hardware. */
/* set BOD VBAT level to 1.65V */
POWER_SetBodVbatLevel(kPOWER_BodVbatLevel1650mv, kPOWER_BodHystLevel50mv, false);
/* attach main clock divide to FLEXCOMM0 (debug console) */
CLOCK_AttachClk(BOARD_DEBUG_UART_CLK_ATTACH);

BOARD_InitBootPins();
BOARD_InitBootClocks();
BOARD_InitBootPeripherals();
BOARD_InitDebugConsole();

SysTick_Config(SystemCoreClock/1000);
init_cycle_counter(true); //初始化 perf_counter

lcd_init(); //LCD初始化
PRINTF("hello world.rn");
// Disp0_DrawBitmap(0,0,200,190,c_bmpClockFace); //測(cè)試LCD繪圖函數(shù)。

arm_irq_safe {
arm_2d_init(); // 初始化 arm-2d
}
// 初始化 Display Adapter 0
disp_adapter0_init();

while (1)
{
disp_adapter0_task();
// ch = GETCHAR();
// PUTCHAR(ch);
}
}

編譯,下載

下載 后的效果

推薦器件

更多器件
器件型號(hào) 數(shù)量 器件廠商 器件描述 數(shù)據(jù)手冊(cè) ECAD模型 風(fēng)險(xiǎn)等級(jí) 參考價(jià)格 更多信息
AFCT-5971ALZ 1 Agilent Technologies Inc Transceiver, Through Hole Mount,
暫無(wú)數(shù)據(jù) 查看
ABM3-10.000MHZ-D2Y-T 1 Abracon Corporation CRYSTAL 10.0000MHZ 18PF SMD

ECAD模型

下載ECAD模型
$1.1 查看
AFBR-2521CZ 1 Broadcom Limited Receiver, Through Hole Mount,

ECAD模型

下載ECAD模型
$16.81 查看

相關(guān)推薦

電子產(chǎn)業(yè)圖譜