我正在尝试编写一个可驱动LED矩阵的头文件,但遇到无法解决的语法错误
我已经在所有我认为有必要的地方添加了“;”,并选中了https://www.nongnu.org/avr-libc/user-manual/pgmspace.html
#ifndef max7219_H_
#define max7219_H_
#include <io.h>
#include <pgmspace.h>
#include <delay.h>
#include <stdint.h>
#define SLAVE_SELECT PORTB &= ~( 1<<PB4 );
#define SLAVE_DESELECT PORTB |= ~( 1<<PB4 );
char characters[96][5] PROGMEM =
{
{
0b00000000,
0b00000000,
0b00000000,
0b00000000,
0b00000000
}
};
错误是:错误:max7219.h(15),#included from:p2.c:';'预期的
第15行是char字符[96] [5] PROGMEM = ...
答案 0 :(得分:0)
您需要声明要放入Flash的const。另外我猜你需要做两个数组。
尝试:
const char c1[] PROGMEM = "1";
const char c2[] PROGMEM = "2";
const char * const strings[] PROGMEM = {c1, c2};
答案 1 :(得分:0)
const PROGMEM uint8_t characters[96][5] = {
{
0b00000000,
0b00000000,
0b00000000,
0b00000000,
0b00000000
},
... // 95 more symbols
};
请注意,如果数组使用维度声明,则应包含初始化程序中的所有数据,即所有96个符号。
UPD:该错误可能是由于pc2.c
之前#include "max7219.h"
中的代码引起的
如果您有多个“包含”,请检查上一个。即:
#include "a.h"
#include "b.h"
#include "max7219.h"
错误可能在b.h
的结尾