我得到了"部分类型冲突"如果我在内联函数中调用一个宏。 在WWW中没有任何关于此错误的信息。
宏的目的是提供一个宏来处理为Arduino保存在flash中的字符串(只是一个侧面信息)。 如果函数没有内联,一切都很好。可能是什么原因?
#undef PROGMEM
#define PROGMEM __attribute__(( section(".progmem.data") ))
#undef PSTR
/* need to define prog_char in avr-gcc 4.7 */
#if __AVR__ && __GNUC__ == 4 && __GNUC_MINOR__ > 6
typedef char prog_char;
#endif
/* Need const type for progmem - new for avr-gcc 4.6 */
#if __AVR__ && __GNUC__ == 4 && __GNUC_MINOR__ > 5
#define PSTR(s) (__extension__({static const prog_char __c[] PROGMEM = (s); \
(const prog_char_t *)&__c[0]; }))
#else
#define PSTR(s) (__extension__({static prog_char __c[] PROGMEM = (s); \
(prog_char_t *)&__c[0]; }))
#endif
代码:
inline void test() {
hal.console->println("AP_Common tests\n");
hal.console->println_P(PSTR("AP_Common tests\n") );
hal.console->printf_P(PSTR("AP_Common tests\n") );
}
void setup(void)
{
test();
}
void loop(void)
{
// do nothing
}
错误:" println_P(PSTR(" Bad var table \ n"));"
AP_HAL/utility/BetterStream.h:53:57: note: in definition of macro 'printf_P'
#define printf_P(fmt, ...) _printf_P((const prog_char *)fmt, ## __VA_ARGS__)
^
output_debug.h:13:26: note: in expansion of macro 'PSTR'
hal.console->printf_P( PSTR("{\"t\":\"s_cmp\",\"h\":%.1f}\n"),
^
AP_Progmem/AP_Progmem_AVR.h:25:56: note: '__c' was declared here
#define PSTR(s) (__extension__({static const prog_char __c[] PROGMEM = (s); \
^
AP_HAL/utility/BetterStream.h:53:57: note: in definition of macro 'printf_P'
#define printf_P(fmt, ...) _printf_P((const prog_char *)fmt, ## __VA_ARGS__)
^
AP_test.ino:60:27: note: in expansion of macro 'PSTR'
在两次派生类中调用PSTR()会导致同样的问题。 我认为这是一个编译器错误,导致未定义的行为。
答案 0 :(得分:2)
尝试:PROGMEM static const prog_char __c[]
。奇怪的是,我发现属性必须在声明之前。不确定你的版本实际上做了什么。这可能就是问题所在。
或者:section类型是存储值的locical memory部分的属性。我想这是由链接器报告的。 PROGMEM部分默认为NOLOAD(这部分是有意义的)。但是,由于初始化,编译器要求该部分相反,从而导致错误。即使这不是真的,我也会在这方面搜索问题。
其他一些评论:
const
,即使这会花费更多精力(直到您获得更多经验)。这不仅可以检测编译时的常见缺陷,还可以节省RAM和(甚至可能)Flash,因为非常量变量存储在RAM中,并且Flash中有初始化值。__
- 前缀。这些应该保留给工具链的编译器和系统库。您可以将此作为后缀使用(但为什么在示例中?)