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

📄 includes.h

📁 uCOS-II example for MC9S12DPxxx
💻 H
字号:
#ifndef INCLUDES_H
#define INCLUDES_H

/*
*********************************************************************************************************
*                                           Master Include File
*
* File : includes.h
* By   : Eric Shufro
*********************************************************************************************************
*/

/*
*********************************************************************************************************
*                                           FILES TO INCLUDE
*********************************************************************************************************
*/

                                                                /* ---------------- STD INCLUDE FILES ----------------- */
#include  <string.h>                                            
#include  <stddef.h>

                                                                /* ---------------- CPU INCLUDE FILES ----------------- */
                                                                
#include  <hidef.h>                                             /* Processor / environment specifics.                   */
#include  <mc9s12dg256.h>

                                                                /* -------------- MICRIUM INCLUDE FILES --------------- */
                                                                
#include  <cpu_def.h>	                                        /* uC/CPU, processor specifics.                         */
#include  <cpu.h>

#include  <lib_def.h>                                           /* uC/LIB.                                              */
#include  <lib_str.h>
#include  <lib_mem.h>

#include  <ucos_ii.h>				                            /* uC/OS-II.         		                            */			  	   


#include  <bsp.h>                                               /* Board support.                                       */
#include  <keypad.h>
#include  <sevenSegment.h>
#include  <nvm.h>


#if (uC_LCD_MODULE > 0)
#include  <lcd.h>                                               /* uC/LCD.                                              */
#endif

                                                                
#if (uC_PROBE_OS_PLUGIN > 0)                                    /* uC/Probe.                                            */
#include  <os_probe.h>
#endif

#if (uC_PROBE_COM_MODULE > 0)
#include  <probe_com.h>

#if (PROBE_COM_METHOD_RS232 > 0)
#include  <probe_rs232.h>
#endif
#endif

                                                                /* ------------ APPLICATION INCLUDE FILES ------------- */

                                                                
#endif                                                          /* End of file.                                         */


⌨️ 快捷键说明

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