?? targetconfig.h
字號:
/*******************************************************************************
* Copyright 2004-2005 - Software Design Solutions, Inc. All rights reserved.
*
* Portions of this work have been provided under license with Texas
* Instruments Inc.
*
* Target specific initialization details
* C6416 DSK with 256K x 16 AMD Am29LV400B Flash at byte address 0x6400_0000
*
******************************************************************************/
#ifndef _TARGETCONFIG_H
#define _TARGETCONFIG_H
#include "type.h"
/*
* Empty definition for TARGET_INITIALIZE()
*/
#define TARGET_INITIALIZE()
#define EDITFLASHPERMIT 0 /* 1 - allow FBTC to edit individual flash
memory locations */
#define BYTESPERMAU 1 /* How many bytes in an addressable unit of
flash */
#define ERASEESTIMATE 7 /* Number of seconds to erase the entire
flash */
/**
* Type of data that the flash contains
* C6416 program memory is 8 bit bytes
*/
typedef u8 FLASH_DATA_TYPE;
/**
* Type of data that is contained in the FBTC message buffer
* C6416 expects the message buffer to contain 8 bit bytes of data
*/
typedef u8 MSG_DATA_TYPE;
/**
* An integer that is the same size as a pointer. Solely used for
* casting from larger ints to pointer without generating a warning.
* Use with caution.
*/
typedef u32 PTR_SIZED_INT;
/**
* FLASH ADDRESSING (byte Addresses)
* 0x6400_0000 - 0x6407_ffff
*/
#define FLBASE 0x64000000
#define FLSIZEBYTES 0x00080000
#endif // __TARGET_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -