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

📄 params.c

📁 Coldfire MCF5282 DBug bootloader
💻 C
字号:
/*
 * File:		proj/m5282evb/src/params.c
 * Purpose:		Initial values for parameters stored in Flash
 *
 * Notes:
 *
 */

#include "src/include/dbug.h"
#include "proj/common/param.h"

/********************************************************************/
/* 
 * Factory Settings 
 */
#if 1
const PARAM params = 
{
	19200,
#ifdef DBUG_NETWORK
	{  0,  0,  0,  0},
	{  0,  0,  0,  0},
	{  0,  0,  0,  0},
	{255,255,255,  0},
	{0,0,UIF_DLIO_SREC,0},
	{0x00,0xCF,0x52,0x82,0xCF,0x01},
	"test.s19"
#endif
};

/********************************************************************/
/* 
 * Alternate Parameters 
 */
#else
const PARAM params = 
{
	19200,
#ifdef DBUG_NETWORK
	{163, 10, 65, 85},
	{163, 10, 65, 84},
	{  0,  0,  0,  0},
	{255,255,255,  0},
	{0,0,UIF_DLIO_IMAGE,0},
	{0x00,0xCF,0x52,0x82,0xCF,0x01},
	"test.s19"
#endif
};

/********************************************************************/
#endif

⌨️ 快捷键说明

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