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

📄 common.c

📁 一些典型的阿arm嵌入式应用程序集锦!
💻 C
字号:
/**********************************************************************************/
/*                                                                                */
/*    Copyright (C) 2002 Oki Electric Industry Co., LTD.                          */
/*                                                                                */
/*    System Name    :  uPLAT series                                              */
/*    Module Name    :  common module                                             */
/*    File   Name    :  common.c                                                  */
/*    Revision       :  01.00                                                     */
/*    Date           :  2002/2/14 initial version                                 */
/*                                                                                */
/**********************************************************************************/
#include "ML674000.h"
#include "common.h"

/****************************************************************************/
/*  LED on                                                                  */
/*  Function : led_on                                                       */
/*      Parameters                                                          */
/*          Input   :   led pattern (cf. commn.h)                           */
/*          Output  :   Nothing                                             */
/****************************************************************************/
void led_on(UHWORD pattern)
{
    put_hvalue(GPPOB, pattern);

	return;
}

⌨️ 快捷键说明

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