ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
Linda:
您好!
请问您使用的CCS是什么版本的?CCSv6.2下是可以顺利通过编译的。
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
shook xu:
回复 Linda:
非常感谢你的回答!
我使用的是ccsv7.0版本,您用这个版本的ccs试一下呢,看会不会编译报错?
我换成C:\ti\controlSUITE\device_support\F2837xD\v100\F2837xD_examples_Cpu1\sci_echoback(刚才报错的是v210版本)下面的例程就可以编译通过而且下载到我自己买的开发板(不是ti的开发板)上也能运行正常,但我还是有疑问,这个工程里面连cmd文件都没有怎么就能正常运行呢?
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
shook xu:
回复 Linda:
请帮忙解答一下,非常感谢!
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
shi shi:
回复 shook xu:
楼主能否具体说一下怎么操作
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
shi shi:
回复 shook xu:
这是我复制的官方的说法,可以解决问题
Hello, I apologize for the inconvenience, this is a bug in the CAN header file. We are currently in the process of fixing it. I recommend for now excluding the CAN bit field header includes, the two steps below should cover it. – In F2837xS_device.h, comment out "#include "F2837xS_can.h" – In F2837xS_GlobalVariableDefs.c, comment out the following: #ifdef __cplusplus #pragma DATA_SECTION("CanaRegsFile") #else #pragma DATA_SECTION(CanaRegs,"CanaRegsFile"); #endif volatile struct CAN_REGS CanaRegs; //—————————————- #ifdef __cplusplus #pragma DATA_SECTION("CanbRegsFile") #else #pragma DATA_SECTION(CanbRegs,"CanbRegsFile"); #endif volatile struct CAN_REGS CanbRegs; This should eliminate the build issue.
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
HeiHei:
目前最新的controlsuite已经将这个bug修复了
ti工程师:
新年好,我在使用controlsuit里面的器件库里面的示例程序做功能模块开发,具体程序地址如下:C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_examples_Cpu1\sci_echoback,现在的问题是我使用这个工程进行编译报错,具体错误为"C:\ti\controlSUITE\device_support\F2837xD\v210\F2837xD_headers\include\F2837xD_can.h", line 533: error #2638: The alignment of an array element is greater than the element size。双击该错误指示到F2837XD_can.h这个头文件中有一个bp_32类型的变量。
我的问题是:ti的例程怎么会编译不通过,需要修改什么才能通过编译,谢谢!
shi shi:
回复 HeiHei:
你好 我下载的就是3月4号的controlsuite
其中28377D的device support最高到v210
依然会报错 我还是照着上面修改的