亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? bl_config.h

?? ARM-CORTEX LM3S系列遠程下載更新程序
?? H
字號:
//*****************************************************************************
//
// bl_config.h - The configurable parameters of the boot loader.
//
// Copyright (c) 2006-2007 Luminary Micro, Inc.  All rights reserved.
// 
// Software License Agreement
// 
// Luminary Micro, Inc. (LMI) is supplying this software for use solely and
// exclusively on LMI's microcontroller products.
// 
// The software is owned by LMI and/or its suppliers, and is protected under
// applicable copyright laws.  All rights are reserved.  You may not combine
// this software with "viral" open-source software in order to form a larger
// program.  Any use in violation of the foregoing restrictions may subject
// the user to criminal sanctions under applicable laws, as well as to civil
// liability for the breach of the terms and conditions of this license.
// 
// THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED
// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
// LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
// CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
// 
// This is part of revision 1928 of the Stellaris Peripheral Driver Library.
//
//*****************************************************************************

#ifndef __BL_CONFIG_H__
#define __BL_CONFIG_H__

//*****************************************************************************
//
// The following defines are used to configure the operation of the boot
// loader.  For each define, its interactions with other defines are described.
// First is the dependencies (i.e. the defines that must also be defined if it
// is defined), next are the exclusives (i.e. the defines that can not be
// defined if it is defined), and finally are the requirements (i.e. the
// defines that must be defined if it is defined).
//
// The following defines must be defined in order for the boot loader to
// operate:
//
//     One of ENET_ENABLE_UPDATE, I2C_ENABLE_UPDATE, SSI_ENABLE_UPDATE, or
//         UART_ENABLE_UPDATE
//     APP_START_ADDRESS
//     STACK_SIZE
//     BUFFER_SIZE
//
//*****************************************************************************

//*****************************************************************************
//
// This defines the crystal frequency used by the microcontroller running the
// boot loader.  If this is unknown at the time of production, then use the
// UART_AUTOBAUD feature to properly configure the UART.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define CRYSTAL_FREQ            6000000

//*****************************************************************************
//
// This enables the boosting of the LDO voltage to 2.75V.  For boot loader
// configurations that enable the PLL (i.e. using the Ethernet port) on a part
// that has the PLL errata, this should be enabled.  This applies to revision
// A2 of Fury-class devices.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define BOOST_LDO_VOLTAGE

//*****************************************************************************
//
// The starting address of the application.  This must be a multiple of 1024
// bytes (making it aligned to a page boundary).  A vector table is expected at
// this location, and the perceived validity of the vector table (stack located
// in SRAM, reset vector located in flash) is used as an indication of the
// validity of the application image.
//
// The flash image of the boot loader must not be larger than this value.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define APP_START_ADDRESS       0x00000800

//*****************************************************************************
//
// The amount of space at the end of flash to reserved.  This must be a
// multiple of 1024 bytes (making it aligned to a page boundary).  This
// reserved space is not erased when the application is updated, providing
// non-volatile storage that can be used for parameters.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define FLASH_RSVD_SPACE        0x00000400

//*****************************************************************************
//
// The number of words of stack space to reserve for the boot loader.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define STACK_SIZE              48

//*****************************************************************************
//
// The number of words in the data buffer used for receiving packets.  This
// value must be at least 3.  If using autobauding on the UART, this must be at
// least 20.  The maximum usable value is 65 (larger values will result in
// unused space in the buffer).
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define BUFFER_SIZE             20

//*****************************************************************************
//
// Enables updates to the boot loader.  Updating the boot loader is an unsafe
// operation since it is not fully fault tolerant (losing power to the device
// part way though could result in the boot loader no longer being present in
// flash).
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define ENABLE_BL_UPDATE

//*****************************************************************************
//
// This definition will cause the the boot loader to erase the entire flash on
// updates to the boot loader or to erase the entire application area when the
// application is updated.  This erases any unused sections in the flash before
// the firmware is updated.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define FLASH_CODE_PROTECTION

//*****************************************************************************
//
// Enables the call to decrypt the downloaded data before writing it into
// flash.  The decryption routine is empty in the reference boot loader source,
// which simply provides a placeholder for adding an actual decrypter.
//
// Depends on: None
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define ENABLE_DECRYPTION

//*****************************************************************************
//
// Enables the pin-based forced update check.  When enabled, the boot loader
// will go into update mode instead of calling the application if a pin is read
// at a particular polarity, forcing an update operation.  In either case, the
// application is still able to return control to the boot loader in order to
// start an update.
//
// Depends on: None
// Exclusive of: None
// Requires: FORCED_UPDATE_PERIPH, FORCED_UPDATE_PORT, FORCED_UPDATE_PIN,
//           FORCED_UPDATE_POLARITY
//
//*****************************************************************************
//#define ENABLE_UPDATE_CHECK

//*****************************************************************************
//
// The GPIO module to enable in order to check for a forced update.  This will
// be one of the SYSCTL_RCGC2_GPIOx values, where "x" is replaced with the port
// name (such as B).  The value of "x" should match the value of "x" for
// FORCED_UPDATE_PORT.
//
// Depends on: ENABLE_UPDATE_CHECK
// Exclusive of: None
// Requries: None
//
//*****************************************************************************
//#define FORCED_UPDATE_PERIPH    SYSCTL_RCGC2_GPIOB

//*****************************************************************************
//
// The GPIO port to check for a forced update.  This will be one of the
// GPIO_PORTx_BASE values, where "x" is replaced with the port name (such as
// B).  The value of "x" should match the value of "x" for
// FORCED_UPDATE_PERIPH.
//
// Depends on: ENABLE_UPDATE_CHECK
// Exclusive of: None
// Requries: None
//
//*****************************************************************************
//#define FORCED_UPDATE_PORT      GPIO_PORTB_BASE

//*****************************************************************************
//
// The pin to check for a forced update.  This is a value between 0 and 7.
//
// Depends on: ENABLE_UPDATE_CHECK
// Exclusive of: None
// Requries: None
//
//*****************************************************************************
//#define FORCED_UPDATE_PIN       4

//*****************************************************************************
//
// The polarity of the GPIO pin that results in a forced update.  This value
// should be 0 if the pin should be low and 1 if the pin should be high.
//
// Depends on: ENABLE_UPDATE_CHECK
// Exclusive of: None
// Requries: None
//
//*****************************************************************************
//#define FORCED_UPDATE_POLARITY  0

//*****************************************************************************
//
// Selects the UART as the port for communicating with the boot loader.
//
// Depends on: None
// Exclusive of: ENET_ENABLE_UPDATE, I2C_ENABLE_UPDATE, SSI_ENABLE_UPDATE
// Requires: UART_AUTOBAUD or UART_FIXED_BAUDRATE
//
//*****************************************************************************
//#define UART_ENABLE_UPDATE

//*****************************************************************************
//
// Enables automatic baud rate detection.  This can be used if the crystal
// frequency is unknown, or if operation at different baud rates is desired.
//
// Depends on: UART_ENABLE_UPDATE
// Exclusive of: UART_FIXED_BAUDRATE
// Requires: None
//
//*****************************************************************************
//#define UART_AUTOBAUD

//*****************************************************************************
//
// Selects the baud rate to be used for the UART.
//
// Depends on: UART_ENABLE_UPDATE, CRYSTAL_FREQ
// Exclusive of: UART_AUTOBAUD
// Requires: None
//
//*****************************************************************************
//#define UART_FIXED_BAUDRATE     115200

//*****************************************************************************
//
// Selects the SSI port as the port for communicating with the boot loader.
//
// Depends on: None
// Exclusive of: ENET_ENABLE_UPDATE, I2C_ENABLE_UPDATE, UART_ENABLE_UPDATE
// Requires: None
//
//*****************************************************************************
//#define SSI_ENABLE_UPDATE

//*****************************************************************************
//
// Selects the I2C port as the port for communicating with the boot loader.
//
// Depends on: None
// Exclusive of: ENET_ENABLE_UPDATE, SSI_ENABLE_UPDATE, UART_ENABLE_UPDATE
// Requires: I2C_SLAVE_ADDR
//
//*****************************************************************************
//#define I2C_ENABLE_UPDATE

//*****************************************************************************
//
// Specifies the I2C address of the boot loader.
//
// Depends on: I2C_ENABLE_UPDATE
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define I2C_SLAVE_ADDR          0x42

//*****************************************************************************
//
// Selects Ethernet update via the BOOTP/TFTP protocol.
//
// Depends on: None
// Exclusive of: I2C_ENABLE_UPDATE, SSI_ENABLE_UPDATE, UART_ENABLE_UPDATE
// Requires: CRYSTAL_FREQ
//
//*****************************************************************************
//#define ENET_ENABLE_UPDATE

//*****************************************************************************
//
// Selects if the Ethernet LEDs should be enabled.
//
// Depends on: ENET_ENABLE_UPDATE
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define ENET_ENABLE_LEDS

//*****************************************************************************
//
// Selects the Ethernet MAC address.  If not specified, the MAC address is
// taken from the user registers.
//
// Depends on: ENET_ENABLE_UPDATE
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define ENET_MAC_ADDR0          0x00
//#define ENET_MAC_ADDR1          0x00
//#define ENET_MAC_ADDR2          0x00
//#define ENET_MAC_ADDR3          0x00
//#define ENET_MAC_ADDR4          0x00
//#define ENET_MAC_ADDR5          0x00

//*****************************************************************************
//
// Sets the name of the BOOTP server to use.  This can be used to request that
// a particular BOOTP server respond to our request; the value will be either
// the server's name, or a nickname used by that server.  If not defined then
// any BOOTP server is allowed to respond.
//
// Depends on: ENET_ENABLE_UPDATE
// Exclusive of: None
// Requires: None
//
//*****************************************************************************
//#define ENET_BOOTP_SERVER       "stellaris"

#endif // __BL_CONFIG_H__

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲网友自拍偷拍| 亚洲婷婷综合久久一本伊一区| 亚洲成av人**亚洲成av**| 亚洲欧洲日韩综合一区二区| 久久综合九色综合97婷婷女人| 日韩欧美国产一区二区在线播放| 91精品国产一区二区三区蜜臀| 日韩写真欧美这视频| 日韩欧美一区在线| 精品福利一区二区三区| 久久久99精品免费观看| 国产欧美在线观看一区| 国产精品美日韩| 亚洲欧美激情在线| 亚洲国产日日夜夜| 秋霞电影网一区二区| 激情综合色播激情啊| 国产成人福利片| 日本道精品一区二区三区| 欧美色网站导航| 欧美va亚洲va在线观看蝴蝶网| 欧美极品另类videosde| 夜夜夜精品看看| 蜜桃视频在线观看一区二区| 国内成人免费视频| 成人午夜免费视频| 欧美日韩一区三区四区| 精品国产91洋老外米糕| 亚洲视频一区二区在线| 日本不卡视频在线| 国产成人av在线影院| 欧美日韩国产高清一区二区| 久久久一区二区三区| 有坂深雪av一区二区精品| 激情亚洲综合在线| 色婷婷一区二区三区四区| 欧美成va人片在线观看| 亚洲精品成人a在线观看| 捆绑调教美女网站视频一区| 91丨porny丨最新| 久久亚洲捆绑美女| 一区二区三区精密机械公司| 国产精品自产自拍| 欧美美女直播网站| 国产婷婷一区二区| 日本va欧美va精品| 在线精品视频一区二区三四| 久久久久久久久99精品| 三级在线观看一区二区| 色吊一区二区三区| 久久久国产一区二区三区四区小说| 亚洲成人免费在线| 91免费观看国产| 国产日产欧美一区二区视频| 麻豆高清免费国产一区| 欧美日韩三级在线| 亚洲免费视频中文字幕| 成人午夜私人影院| 久久精品在线观看| 久久精品国产一区二区三区免费看| 欧美在线一区二区| 亚洲精品视频自拍| 色呦呦国产精品| 中文字幕一区二区三区不卡 | 亚洲国产一区在线观看| 成人高清免费观看| 国产欧美一区二区精品忘忧草 | |精品福利一区二区三区| 日本亚洲免费观看| 色屁屁一区二区| 日韩理论片中文av| 成人动漫精品一区二区| 日本一区免费视频| 国产91丝袜在线播放| 久久精品视频在线免费观看| 国产一区二区福利| 久久久久久99久久久精品网站| 激情欧美一区二区| 久久精品在线观看| av电影在线观看一区| 1024精品合集| 欧美午夜精品久久久久久孕妇 | 久久国产精品第一页| 日韩三级在线免费观看| 久久精品国产99国产| 久久久久久97三级| av男人天堂一区| 亚洲在线成人精品| 宅男噜噜噜66一区二区66| 男男gaygay亚洲| 国产亚洲成av人在线观看导航| 成人午夜碰碰视频| 亚洲自拍偷拍图区| 日韩精品专区在线影院观看 | 成人精品一区二区三区中文字幕| 中文字幕一区二区三区精华液| 色视频欧美一区二区三区| 日韩精品亚洲一区二区三区免费| 欧美一区二区精品| 成人精品视频一区二区三区 | 久久精品人人做人人综合 | 天天做天天摸天天爽国产一区 | 亚洲欧洲一区二区在线播放| 欧美在线不卡视频| 久久精品国产亚洲aⅴ| 国产精品美女久久久久久久久 | 国产乱人伦偷精品视频免下载| 国产精品天美传媒| 欧美日韩国产免费| 国产成人精品亚洲午夜麻豆| 一片黄亚洲嫩模| 久久人人超碰精品| 欧美中文字幕一区二区三区 | 色狠狠av一区二区三区| 日韩av不卡一区二区| 中文在线资源观看网站视频免费不卡| 色噜噜久久综合| 国产精品亚洲а∨天堂免在线| 亚洲自拍偷拍综合| 国产精品久久久久三级| 欧美一区二区在线免费播放| jizz一区二区| 精品一二线国产| 亚洲地区一二三色| 中文字幕一区二区不卡| 精品va天堂亚洲国产| 欧美日韩国产综合视频在线观看 | 91精品国产丝袜白色高跟鞋| caoporm超碰国产精品| 免费成人av资源网| 亚洲国产精品一区二区www | 色综合久久88色综合天天| 国产综合色在线| 欧美aaaaaa午夜精品| 亚洲午夜一区二区| 亚洲天堂av老司机| 中文乱码免费一区二区| 精品国产乱码久久久久久影片| 欧美日韩精品一区二区三区 | 91麻豆精品国产91久久久久久 | 日韩成人一区二区| 夜夜揉揉日日人人青青一国产精品| 国产偷v国产偷v亚洲高清| 日韩视频在线一区二区| 欧美裸体一区二区三区| 91日韩精品一区| av在线播放不卡| eeuss鲁片一区二区三区在线观看| 国产精品原创巨作av| 久久99九九99精品| 极品销魂美女一区二区三区| 日本在线播放一区二区三区| 国产一区二区0| 免费看黄色91| 老鸭窝一区二区久久精品| 日韩va亚洲va欧美va久久| 无吗不卡中文字幕| 日韩精品电影一区亚洲| 日韩精品欧美精品| 免费人成精品欧美精品| 国产真实乱对白精彩久久| 久久精品国产999大香线蕉| 国产在线视频精品一区| 国产成人无遮挡在线视频| 豆国产96在线|亚洲| 99久久精品免费看国产免费软件| 91亚洲精品久久久蜜桃网站| 色视频成人在线观看免| 91精品国产美女浴室洗澡无遮挡| 欧美成人aa大片| 欧美极品少妇xxxxⅹ高跟鞋| 亚洲免费观看高清在线观看| 亚洲一区在线观看网站| 蜜臀av一区二区在线观看| 精品一区二区久久| 91玉足脚交白嫩脚丫在线播放| 色天天综合色天天久久| 日韩女优制服丝袜电影| 国产精品久久久久久久第一福利| 亚洲免费av高清| 美国三级日本三级久久99 | www.久久精品| 欧美日韩一区高清| 久久久精品一品道一区| 亚洲男人的天堂在线aⅴ视频| 日韩精品久久理论片| 国产成人av电影在线| 欧美亚洲国产一区二区三区va| 欧美一区二区三区公司| 国产精品污www在线观看| 调教+趴+乳夹+国产+精品| 成人午夜视频在线观看| 欧美日韩国产影片| 国产精品丝袜91| 日本欧美一区二区三区| 99re热视频这里只精品| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 免费成人小视频| 91影院在线免费观看| 欧美mv日韩mv|