📄 led1.c
字号:
/** ###################################################################
** THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
** Filename : LED1.C
** Project : BLDC_sensor
** Processor : 56F8013VFAE
** Beantype : Led
** Version : Bean 01.006, Driver 01.05, CPU db: 2.87.068
** Compiler : Metrowerks DSP C Compiler
** Date/Time : 2006-07-24, 16:32
** Abstract :
** This bean provide methods for driving of LED device.
** Methods On, Off, Set and Toggle (or only initialization code)
** could be used to drive it. Output value, defined by Init.
** value property, is used for initialization implicitly.
** It is not necessary to use any method explicitly in start up.
** Method Status return current status of the LED device.
** LED drivers without output inverter are supported
** via Inverted value property.
** Settings :
** Output PIN :GPIOA2_PWM2
** Initialize Value :Off
** Inverted Value :no
** Contents :
** On - void LED1_On(void);
** Off - void LED1_Off(void);
** Toggle - void LED1_Toggle(void);
** Set - void LED1_Set(bool Output);
** Status - bool LED1_Status(void);
**
** (c) Copyright UNIS, spol. s r.o. 1997-2004
** UNIS, spol. s r.o.
** Jundrovska 33
** 624 00 Brno
** Czech Republic
** http : www.processorexpert.com
** mail : info@processorexpert.com
** ###################################################################*/
/* MODULE LED1. */
#include "LED1.h"
/*
** ===================================================================
** Method : LED1_On (bean Led)
**
** Description :
** Switch ON the LED device
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*
void LED1_On(void)
{
// This function is implemented as a macro
}
*/
/*
** ===================================================================
** Method : LED1_Off (bean Led)
**
** Description :
** Switch OFF the LED device
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*
void LED1_Off(void)
{
// This function is implemented as a macro
}
*/
/*
** ===================================================================
** Method : LED1_Toggle (bean Led)
**
** Description :
** Toggle the LED device value
** Parameters : None
** Returns : Nothing
** ===================================================================
*/
/*
void LED1_Toggle(void)
{
// This function is implemented as a macro
}
*/
/*
** ===================================================================
** Method : LED1_Set (bean Led)
**
** Description :
** Put the specified value to the LED
** Parameters :
** NAME - DESCRIPTION
** Output - Set LED status (ON/OFF) accordant
** with the 'Output' value
** TRUE - Turn the LED ON
** FALSE - Turn the LED OFF
** Returns : Nothing
** ===================================================================
*/
/*
void LED1_Set(bool Output)
{
// This function is implemented as a macro
}
*/
/*
** ===================================================================
** Method : LED1_Status (bean Led)
**
** Description :
** Return the last written value of the LED device
** Parameters : None
** Returns :
** --- - The last written value of the LED
** device.
** TRUE - The LED is ON
** FALSE - The LED is OFF
** ===================================================================
*/
/*
bool LED1_Status(void)
{
// This function is implemented as a macro
}
*/
/* END LED1. */
/*
** ###################################################################
**
** This file was created by UNIS Processor Expert 2.96 [03.65]
** for the Freescale 56800 series of microcontrollers.
**
** ###################################################################
*/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -