app_config.h
来自「采用MC13213做的在SMAC协议基础上的发送程序,可作为点对点实验中的END」· C头文件 代码 · 共 53 行
H
53 行
/*
* Copyright (c) 2006, Freescale Semiconductor
* Freescale Confidential Proprietary
*
*/
/*!
* \file app_config.h
*
* \brief Application and SMAC configuration file. This file permits select the profile
* of smac to be used
*
* \author $Author: rgd04c $
*
* \version 4.2
*
* \date $DATE:$
*
* \b Department : Freescale Commercial Wireless Operation
*
* \b Project: SMAC (Simple Media Access Controller)
*
* \b History:
* - 18/JULY/2006 File Creation
*/
/* Select the features you want to include within the SMAC */
#ifndef __SMAC_CONFIG_H__
#define __SMAC_CONFIG_H__
#include "pub_def.h"
#include "board_config.h"
/* SMAC features:
* To Enable a feature, just define it.
* To disbale a feature, just undef it */
#define EMBEDDED_BOOTLOADER FALSE
#define SMAC_FEATURE_OTAP FALSE
#define SMAC_FEATURE_SECURITY FALSE
#if (SMAC_FEATURE_OTAP == TRUE)
#include "SMAC_OTAP_API.h"
#endif /* SMAC_FEATURE_OTAP */
#if (SMAC_FEATURE_SECURITY == TRUE)
#include "SMAC_SECURITY_API.h"
#endif /* SMAC_FEATURE_SECURITY */
#define SMAC_PROMISCUOUS_MODE FALSE
#endif /* __SMAC_CONFIG_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?