traffic.inc

来自「keilc pic的版本 才搞到的 希望对大家有帮助」· INC 代码 · 共 15 行

INC
15
字号

PORT3 &= ~0x0001;          /* set P3.0 to zero: Key Input */

/* define a debug function for the pedestrian push button */
signal void push_key (void)  {
  PORT3 |=  0x0001;         /* set P3.0       */
  twatch (`Clock*0.05);     /* wait 50 msec   */
  PORT3 &= ~0x0001;         /* reset P3.0     */
}

/* define a toolbar button to call push_key */
define button "Push for Walk", "push_key ()"

RADIX=10 // decimal output in watch window

⌨️ 快捷键说明

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