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

📄 display.h

📁 此程序为GPS接收机的源码
💻 H
字号:
// display.h: Header file for the display.c file// Copyright (C) 2005  Andrew Greenberg// Distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2 (June 1991).// See the "COPYING" file distributed with this software for more information.#ifndef __DISPLAY_H#define __DISPLAY_Htypedef enum {    DISPLAY_TRACKING    = 0,    DISPLAY_MESSAGES    = 1,    DISPLAY_EPHEMERIS   = 2,    DISPLAY_PSEUDORANGE = 3,    DISPLAY_POSITION    = 4,    DISPLAY_STOP        = 5,    DISPLAY_DEBUG       = 6,    DISPLAY_LOG         = 7,    DISPLAY_NOT_USED,       // Used to force clear screen on startup} display_t;void display_thread( CYG_ADDRWORD data);extern unsigned short display_command;#endif // __DISPLAY_H

⌨️ 快捷键说明

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