12126|10

2113

帖子

0

TA的资源

裸片初长成(初级)

楼主
 

tBoolean" is undefined要在程序中怎么添加 [复制链接]

C:\Keil\ARM\INC\Luminary\uart.h(146): error:  #20: identifier "tBoolean" is undefined

 

应该怎么定义

最新回复

应该是没把头文件包括进去,你看看CCS的debug选项里把头文件添加进去。  详情 回复 发表于 2013-10-12 11:05
 
点赞 关注

回复
举报

2751

帖子

0

TA的资源

裸片初长成(初级)

沙发
 

原帖由 heningbo 于 2011-5-25 09:50 发表 C:\Keil\ARM\INC\Luminary\uart.h(146): error:  #20: identifier "tBoolean" is undefined   应该怎么定义

 

在hw_types.h里定义的,把它包含进来就行,在inc文件夹里。

 

#ifndef __HW_TYPES_H__
#define __HW_TYPES_H__

//*****************************************************************************
//
// Define a boolean type, and values for true and false.
//
//*****************************************************************************
typedef unsigned char tBoolean;

#ifndef true
#define true 1
#endif

#ifndef false
#define false 0
#endif

 
 

回复

2113

帖子

0

TA的资源

裸片初长成(初级)

板凳
 
我是添加了hw_types.h文件了,,为什么还报错啊
 
 
 

回复

2751

帖子

0

TA的资源

裸片初长成(初级)

4
 
在main.c里的#include "inc/hw_types.h"放在其他include "xxxx.h"前面。
 
 
 

回复

2751

帖子

0

TA的资源

裸片初长成(初级)

5
 

原帖由 David_Lee 于 2011-5-25 12:11 发表 在main.c里的#include "inc/hw_types.h"放在其他include "xxxx.h"前面。

 

e.g.

//头文件
#include "inc/hw_types.h"
#include "inc/hw_memmap.h"
#include "inc/hw_ints.h"
#include "driverlib/sysctl.h"
#include "driverlib/gpio.h"
#include "driverlib/uart.h"
#include "driverlib/interrupt.h"
#include "driverlib/timer.h"
#include "driverlib/pwm.h"

 
 
 

回复

2

帖子

0

TA的资源

一粒金砂(中级)

6
 

在 Interrupt.h文件里的“extern tBoolean IntMasterEnable(void)”行代码前加一下一条语句:

typedef unsigned char tBoolean;
 
 
 

回复

36

帖子

0

TA的资源

一粒金砂(中级)

7
 
thanks very much to david lee,you've help me a lot.
 
 
 

回复

25

帖子

0

TA的资源

一粒金砂(中级)

8
 

不能生产.out文件

#include "inc/hw_types.h"
#include "inc/hw_memmap.h"
#include "inc/hw_ints.h"
#include "driverlib/sysctl.h"
#include "driverlib/gpio.h"
#include "driverlib/uart.h"
#include "driverlib/interrupt.h"
#include "driverlib/timer.h"
#include "driverlib/pwm.h"

int main(void)
{

        SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOG);
        GPIOPinWrite(GPIO_PORTG_BASE,GPIO_PIN_4,0x1);
        return 0;
}
新手自己写的试试,一直编译就出现Description        Resource        Path        Location        Type
[?]  unresolved symbols remain        LAB4                         C/C++ Problem
errors encountered during linking; "LAB4.out" not built        LAB4                         C/C++ Problem
我用的是CCSV5  求指导

点评

应该是没把头文件包括进去,你看看CCS的debug选项里把头文件添加进去。  详情 回复 发表于 2013-10-12 11:05
你没配置时钟  详情 回复 发表于 2013-10-7 14:33
 
 
 

回复

6

帖子

0

TA的资源

一粒金砂(初级)

9
 
你没配置时钟啊
 
 
 

回复

6

帖子

0

TA的资源

一粒金砂(初级)

10
 

回复 8楼479358469 的帖子

你没配置时钟
 
 
 

回复

16

帖子

0

TA的资源

一粒金砂(中级)

11
 

回复 8楼479358469 的帖子

应该是没把头文件包括进去,你看看CCS的debug选项里把头文件添加进去。
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表