⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 avrcore.h

📁 国外牛人公开的AVR代码
💻 H
字号:
/*! \file avrcore.h \brief AVR-Core Board Driver Functions. */
//*****************************************************************************
//
// File Name	: 'avrcore.h'
// Title		: AVR-Core Board Driver Functions
// Author		: Pascal Stang - Copyright (C) 2004
// Created		: 2004.10.01
// Revised		: 2005.10.24
// Version		: 0.1
// Target MCU	: Atmel AVR series
// Editor Tabs	: 4
//
// This code is distributed under the GNU Public License
//		which can be found at http://www.gnu.org/licenses/gpl.txt
//
//*****************************************************************************

#ifndef AVRCORE_H
#define AVRCORE_H

// defines and typedefs
#define AVRCORELATCH	(*((unsigned char*)0x4000))
#define AVRCORELATCH_ADDRMASK	0x0F
#define AVRCORELATCH_LEDMASK	0xF0

// SAT-MB serial port control
// CTS is an output signal
#define AVRCORE_SER_CTS_PORT		PORTB
#define AVRCORE_SER_CTS_DDR			DDRB
#define AVRCORE_SER_CTS_PORTIN		PINB
#define AVRCORE_SER_CTS_PIN			PB5
// RTS is an input signal
#define AVRCORE_SER_RTS_PORT		PORTB
#define AVRCORE_SER_RTS_DDR			DDRB
#define AVRCORE_SER_RTS_PORTIN		PINB
#define AVRCORE_SER_RTS_PIN			PB6

// functions

//! Initialize AVRCore hardware
void avrcoreInit(void);

//! Set the current external RAM page
//  The AVRCore on-board external RAM is typically 512KBytes.
//  The RAM is memory-mapped into the 32KByte address space from
//  0x8000-0xFFFF, and must therefore be accessed in pages (32KB chunks).
//  Use this function to select which of the 16 (0-15) 32KByte pages
//  you wish to access.
void avrcoreSetRamPage(u08 page);

//! Set the state of the four LEDs on AVRCore
//  leds bit0 => LED1 (0=off, 1=on)
//  leds bit1 => LED2 (0=off, 1=on)
//  leds bit2 => LED3 (0=off, 1=on)
//  leds bit3 => LED4 (0=off, 1=on)
void avrcoreSetLeds(u08 leds);

//! Turn on selected LEDs
//  '0' bit = no change
//  '1' bit = turn on
void avrcoreSetLedsOn(u08 leds);

//! Turn off selected LEDs
//  '0' bit = no change
//  '1' bit = turn off
void avrcoreSetLedsOff(u08 leds);

//! Set on/off power setting of AVRCore serial port
//  (0=off, 1=on)
void avrcoreSetSerialPortPower(u08 on);

#endif

⌨️ 快捷键说明

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