embedded_bootloader.h

来自「利用MC13213做的基于SMAC的接受并发送到串口的程序.可作为点对点实验中的」· C头文件 代码 · 共 37 行

H
37
字号
/************************************************************************************
* This module contains the Embedded Bootloader interface description.
*
* Note! This module contains function pointers to function accessable in Embedded Bootloader
*       This file contains absolute address (See system memory map) - BE CAREFULL.
*
*       This version of the Embedded Bootloader interface file MUST be used with the
*       Embedded Bootloader firmware version 5.00 and above.
*       Use the Freeloader_inf.h for Embedded Bootloader (Freeloader) versions below 5.00.
*
* Author(s):  Michael V. Christensen
*
* (c) Copyright 2004, Freescale, Inc.  All rights reserved.
*
* Freescale Confidential Proprietary
* Digianswer Confidential
*
* No part of this document must be reproduced in any form - including copied,
* transcribed, printed or by any electronic means - without specific written
* permission from Freescale.
*
* Last Inspected: 29-03-01
* Last Tested:
************************************************************************************/

#ifndef _EMBEDDED_BOOTLOADER_H_
#define _EMBEDDED_BOOTLOADER_H_
#include "app_config.h"
#if (EMBEDDED_BOOTLOADER == TRUE) // Make sure that no defines etc. is available without define.

#include "DigiType.h"

// **************************************************************************

// Embedded BootLoader control flags:
#define NO_BIT_ENABLED                ((uint8_t)0x00) // Note! The option description values is inverted.
#define ERASE_FLASH                    ((uint8_t)0x01) // Option: 'Skip flash erase', Enabled = 

⌨️ 快捷键说明

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