memory.h

来自「GCC source code for do it yoursel a avr 」· C头文件 代码 · 共 29 行

H
29
字号
// Memory Locations

//Change MCU in "Other Files"->makefile
//Then ensure you make clean before make all

#ifndef H_MEM
#define H_MEM


//#ifdef atmega16
//.arch atmega16#if #cpu (atmega16)
#include <avr/iom16.h>
#define ISPSTART	0x1780#define BOOTSTART	0x1C00
#define	UBRRSTART	0x1BD0
#endif

//#ifdef atmega32
//.arch atmega32#if #cpu (atmega32)
#include <avr/iom32.h>
#define ISPSTART	0x3380#define BOOTSTART	0x3800
#define	UBRRSTART	0x37D0
#endif

#endif

⌨️ 快捷键说明

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