protos.h

来自「MMC interface and FAT File system」· C头文件 代码 · 共 37 行

H
37
字号
//#########################################################################
// File: PROTOS.H
//
// Declare function prototypes and external variables
//
//#########################################################################
// Last change: 21.04.2003
//#########################################################################
// holger.klabunde@t-online.de
// http://home.t-online.de/home/holger.klabunde/homepage.htm
//#########################################################################
// Compiler: AVR-GCC 3.2
//#########################################################################

#ifndef PROTOS_H
#define PROTOS_H

#include <pgmspace.h>
#include "printf.h"

extern unsigned char bmode; //send sectors binary 0=off
extern unsigned char echo; //echo back serial input 0=off

extern void HelpScreen(void);
extern void Delay1ms(unsigned int);
extern void Delay100us(unsigned char);

extern char line[];     //Zeichenpuffer

//sprintf.c
extern int sprintf(unsigned char *buf, unsigned char *format, ...);

//dumpsect.c
extern void DumpSector(unsigned char *buf);

#endif

⌨️ 快捷键说明

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