错误来源
.\ECAT\inc\STM32appl.h(38): error: #147: declaration is incompatible with "unsigned shortnPdInputSize" (declared at line 396 of ".\ECAT\inc\ecatslv.h")
extern UINT16 nPdInputSize;
.\ECAT\inc...
分类:
其他好文 时间:
2014-12-30 17:10:20
阅读次数:
1002
这是由于没有声明函数原型造成的。
在a.c中,
void main()
{
.....
delay();
....
}
在b.c中
void delay()
{
}
如果就只是这样的话,就会出现上面的worning的。
解决办法是在b.h中写 extern void delay();然后在a.c中include "b.h"就ok了。
再看程序,发现只包含了DSP281x...
分类:
其他好文 时间:
2014-12-30 17:04:41
阅读次数:
189
Module definitionsAngular modules can be declared in various ways, either stored in a variable or using the getter syntax. Use the getter syntax at al...
分类:
Web程序 时间:
2014-11-25 18:28:16
阅读次数:
128
这里列举的是一些我平时碰到的一些Java Grammar,日积月累。Class Variable vs Instance Variable:Instance variablesInstance variable is the variable declared inside a class, but...
分类:
编程语言 时间:
2014-11-22 13:11:35
阅读次数:
247
这是一个报错,是我在Android Studio上添加完Support-v4和v7包之后爆出的错误,百度了好久也没有百度到。当时我的项目有minSdkVersion 19。设置版本最小为L的时候也会出错,并且我的测试机是4.3,根本就无法安装。defaultConfig {.... ...
分类:
移动开发 时间:
2014-11-13 23:46:11
阅读次数:
269
在编译:qt-everywhere-opensource-src-4.8.1出现如下错误:
......................
明显,缺少IPV6_MULTICAST_XXXX等一系列定义,在src/network/socket/目录下创建ctags之后,发现这些宏定义在bits/in.h里面存在,我直接把头文件添加到里面,有显示重定义错误。...
分类:
其他好文 时间:
2014-11-10 12:12:14
阅读次数:
429
初学STM32,在RealView MDK 环境中使用STM32固件库建立工程时,初学者可能会遇到编译不通过的问题。出现如下警告或错误提示: warning: #223-D: function "assert_param" declared implicitly;assert_param(IS_G....
分类:
其他好文 时间:
2014-11-06 19:38:31
阅读次数:
275
JavaScript’s function scope means that all variables declared within a function are visi-ble throughout the body of the function. Curiously, this mean...
分类:
其他好文 时间:
2014-11-05 10:42:49
阅读次数:
150
Compile++ thumb : game_shared <= main.cppjni/hellocpp/main.cpp: In function 'void Java_org_cocos2dx_lib_Cocos2dxRenderer_nativeInit(JNIEnv*, jobject, ...
分类:
Web程序 时间:
2014-10-28 21:22:38
阅读次数:
216
Variables declared inside anifshort statement are also available inside any of theelseblocks.package main import ( "fmt" "math")func pow(x, n, ...
分类:
其他好文 时间:
2014-10-27 00:23:52
阅读次数:
165