example1.c

来自「《PIC单片机C语言开发入门》所有章节源程序」· C语言 代码 · 共 19 行

C
19
字号
/*
 * This is example 1 from "Getting Started with MPLAB C18".
 */

#include <p18cxxx.h>   /* for TRISB and PORTB declarations */

int counter;
void main (void)
{
    counter = 1;
    TRISB = 0;            /* configure PORTB for output */
    while (counter <= 15)
    {
       PORTB = counter;   /* display value of 'counter' on the LEDs */
       counter++;
    }
}

⌨️ 快捷键说明

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