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

📄 params.c

📁 motorola 针对coldfire 5275 评估板的Dbug bootloader源程序
💻 C
字号:
/*
 * File:        proj/m5275evb/src/params.c
 * Purpose:     Initial values for parameters stored in Flash
 *
 * Notes:
 *
 */

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

/********************************************************************/
/* 
 * Factory Settings 
 */
#ifndef DEBUG
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,0x75,0xCF,0x01},
    "test.s19"
#endif
};

/********************************************************************/
/* 
 * Alternate Parameters 
 */

#else
const PARAM params = 
{
    19200,
#ifdef DBUG_NETWORK
    { 10, 81, 65,217},
    { 10, 81, 65,216},
    { 10, 81, 67,254},
    {255,255,252,  0},
    {0,0,UIF_DLIO_IMAGE,0},
    {0x00,0xCF,0x52,0x75,0xCF,0x01},
    "image.bin"
#endif
};

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

⌨️ 快捷键说明

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