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

📄 op.inc

📁 FreeRTOS 是一个源码公开的免费的嵌入式实时操作系统
💻 INC
字号:
// OPTIONS FILE
// included on command line:   cc8e <options> +op.inc <options>

-L80,60 -Vn       // spaces, TAB or linefeed separate each option
test\sample1.c    // source file

// the rest of the line after '//' is a comment in an "options file"

+opi.inc   // more options: 5 levels of nested files is allowed

// Adding a space behind the first '-' allows more spaces to be inserted
// to enhance readability. But, this requires that the next option is
// separated by a line feed.

- L 80, 60       // a space after first '-' allows more spaces to be inserted
- L 80, 60  -Vn  // this will NOT work!

- V n            // variable file, sorted by name
- A t 6+6+6
- pPIC18F242
- fINHX32
- D MM = (300 - 400)  // equivalent to  #define MM (300-400)


// String translation rules for options in a file:
//  1. Doublequotes " " allows spaces in the option, quotes are removed
//  2. Using \" means a single quote " in an option

-I"C:\Program Files\cc8e"     //  ==>  -IC:\Program Files\cc8e
-IC:"\Program Files"\cc8e     //  ==>  -IC:\Program Files\cc8e

-DMyString="\"Hello\n\""      //  ==>  -DMyString="Hello\n"
-DQuote='\\"'                 //  ==>  -DQuote='\"'

⌨️ 快捷键说明

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