?? basic.c
字號:
//============================================================================
// Include
//============================================================================
#include <stdio.h>
#include <cyg/io/lcd/fie702x_lcd.h>
#include "LCDSystem.h"
#include "FontSystem.h"
//============================================================================
// Global Variables
//============================================================================
cyg_io_handle_t lcd_handle;
int main (void)
{
int err;
err = cyg_io_lookup( "/dev/lcd", &lcd_handle );
if (ENOERR != err)
{
printf("Can't open '%s'\n", "/dev/lcd");
}
API_LCD_init();
API_LCD_start(lcd_handle);
API_LCD_draw_AllFrame_8x8(lcd_handle, "Faraday!!!\n", 120, 16);
return 0;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -