📄 memory.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -