📄 user_info.c
字号:
/*************************************************************
%
% Filename : User_Info.h
% Project name : Flash Mp3 Project of Hyctron
%
% Copyright 2003-2004 Hyctron Electronic Design House,
% "Hyctron Electronic Design House" Shanghai, China.
% All rights are reserved. Reproduction in whole or in part is prohibited
% without the prior written consent of the copyright owner.
%
% Rev Date Author Comments
% (yymmdd)
% -------------------------------------------------------------
% 001 060819 周洁 初始版本
% -------------------------------------------------------------
%
% 此源文件包括了产品的版本号,升级程序文件名,USB信息
****************************************************************/
#ifndef _USER_INFO_H_
#define _USER_INFO_H_
#ifdef __cplusplus
extern "C"
{
#endif
#include "interface.h"
//版本信息
const U8 * const SOFT_VERSION_INFO[]=
{
(U8 * const)"Hyctron",
(U8 * const)"F026",
(U8 * const)"V2.0.0.9",
(U8 * const)"20070625",
};
const U8 * const DISK_INFO[]=
{
(U8 * const)"Local Disk",
(U8 * const)"MINI SD ",
};
//SD、MMC卡检测GPIO,及有效电平
#define SD_MMC_CARD_DETECT GPIO_9
#define SD_MMC_CARD_DETECT_LEVEL 1 //1 表示低电平有效
//SD、MMC卡写保护检测GPIO,及有效电平
#define SD_MMC_CARD_WRITE_PROTECT 0
#define SD_MMC_CARD_WRITE_PROTECT_LEVEL 0 //0 表示低电平有效
const SdmmcStorageMedia_st SdmmcStorageMedia =
{
SD_MMC_CARD_DETECT,
SD_MMC_CARD_DETECT_LEVEL,
SD_MMC_CARD_WRITE_PROTECT,
SD_MMC_CARD_WRITE_PROTECT_LEVEL,
};
const unsigned char gScsiApplDeviceIdentification[36] =
{
0x00, 0x80, 0x00, 0x01, 0x1f, 0x00, 0x00, 0x00,\
'H', 'y', 'c', 't', 'r', 'o', 'n', ' ', \
'P', 'M', 'P', ' ', ' ', ' ', ' ', ' ', \
' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', \
' ', ' ', ' ', ' '
};
#ifdef __cplusplus
}
#endif
#endif
/*----------------------------------------------------------
Version 0.1 2006-08-19 HYCZJ
-----------------------------------------------------------*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -