⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usb_main.c

📁 智原mp3 SDK 开发包 与巨力 有mp3 wma ogg decoder
💻 C
字号:
/******************
 *  usb_main.c
 *****************/

#include <string.h>
#include "api.h"
#include "lcd.h"
#include "common.h"
#include "display.h" 
#include "ap_common.h"
#include "res.h"
#include "res_show.h"
#include "gameblock.h"
#include "global_user.h"


static void gfx_usb_online(void)
{
	bResShowPic(UDISKBCK,0,0);
}

void screen_usb_init(void)
{
	playGame = 0;
	gfx_usb_online();
	screen_level = SCREEN_LEVEL_USB_ON;
}

extern void event_init_startup();
extern void api_vLeaveUSB();
void screen_usb(UINT8 key)
{
	if(key == KEY_PLAY)
	{	
		api_vLeaveUSB();
		usb_plug = 1;
		event_init_startup();
	}	
}
void usb_online(void)
{
}

⌨️ 快捷键说明

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