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

📄 traffic.inc

📁 keilc pic的版本 才搞到的 希望对大家有帮助
💻 INC
字号:

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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -