STM32F0xx Standard Peripherals Firmware Library
|
STM32F0xx_StdPeriph_Examples/CEC/CEC_MultiAddress/main.h
Go to the documentation of this file.
00001 /** 00002 ****************************************************************************** 00003 * @file CEC/CEC_MultiAddress/main.h 00004 * @author MCD Application Team 00005 * @version V1.4.0 00006 * @date 24-July-2014 00007 * @brief Header for main.c module 00008 ****************************************************************************** 00009 * @attention 00010 * 00011 * <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2> 00012 * 00013 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License"); 00014 * You may not use this file except in compliance with the License. 00015 * You may obtain a copy of the License at: 00016 * 00017 * http://www.st.com/software_license_agreement_liberty_v2 00018 * 00019 * Unless required by applicable law or agreed to in writing, software 00020 * distributed under the License is distributed on an "AS IS" BASIS, 00021 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00022 * See the License for the specific language governing permissions and 00023 * limitations under the License. 00024 * 00025 ****************************************************************************** 00026 */ 00027 00028 /* Define to prevent recursive inclusion -------------------------------------*/ 00029 #ifndef __MAIN_H 00030 #define __MAIN_H 00031 00032 /* Includes ------------------------------------------------------------------*/ 00033 #include "stm32f0xx.h" 00034 #ifdef USE_STM320518_EVAL 00035 #include "stm320518_eval.h" 00036 #include "stm320518_eval_lcd.h" 00037 #else 00038 #include "stm32072b_eval.h" 00039 #include "stm32072b_eval_lcd.h" 00040 #endif /* USE_STM320518_EVAL */ 00041 00042 /* Exported types ------------------------------------------------------------*/ 00043 /* Exported constants --------------------------------------------------------*/ 00044 /* Uncomment the line below if you will use the CEC peripheral as a Device1 */ 00045 #define DEVICE_1 00046 /* Uncomment the line below if you will use the CEC peripheral as a Device2 */ 00047 //#define DEVICE_2 00048 00049 #define DEVICE_ADDRESS_1 0x01 /* CEC device 1 address */ 00050 #define DEVICE_ADDRESS_2 0x03 /* Tuner: CEC device 2 address */ 00051 #define DEVICE_ADDRESS_3 0x05 /* Audio System: CEC device 3 address */ 00052 00053 /* Uncomment the define to use LCD */ 00054 #define LCD_DISPLAY 00055 /* Exported macro ------------------------------------------------------------*/ 00056 /* Exported functions ------------------------------------------------------- */ 00057 00058 #endif /* __MAIN_H */ 00059 00060 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/