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

📄 prep.bat

📁 uC/GUI简介uC/GUI是Micrium公司开发的通用的嵌入式用户图形界面软件。它给任何使用图形LCD的应用程序提供独立于处理器和LCD控制器之外的有效的图形用户接口。
💻 BAT
字号:
@ECHO OFF
ECHO Prep.bat:            Preparing environment
goto Start

******************************************************************************
*
* File      : Prep.bat
* Parameters: None
* Purpose   : Sets path and other environment variables as required by tool chain
*
* This file as is uses the Microsoft Compiler MSVC 6.0 for x86 targets.
* It needs to be modified if a library for a target compiler is
* desired or if the compiler is installed in a different location.
*
******************************************************************************

:START

REM Next line avoids setting of path

IF "%_PREP_KEIL_%" == "_PREP_KEIL_" GOTO END

SET _PREP_KEIL_=_PREP_KEIL_
SET PATH=%PATH%;C:\PROGRAM FILES\KEIL\C51\BIN;

:END

⌨️ 快捷键说明

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