0

私たちはプロジェクトを行っており、p30f3013 マイクロチップ (PIC30 ファミリのチップ) を使用しています。現在、私たちはチップ用のソフトウェアを書いています。使用しているオペレーティング システムは Linux Ubuntu 12.04 です。その下には、いくつかの関数を含む小さなファイルがあります。

#include "p30f3013.h"
#include "hardware.h"

//SPI connects the display with the U2A1

void init_lcd()
{
    //after any reset wait 500 milliseconds
    SPI1BUF         =   0; //buffer displayed
    SPI1STATbits.SPIEN  =   1; //SPI enable
    SPI1CONbits.MSTEN   =   1;
    SPI1CONbits.SSEN    =   1;
    SPI1CONbits.PPRE    =   0;
}

void write_char(char character)
{
    //wait 5 milliseconds between writing two successive char in first row
    //wait 250 microseconds between writing two successive char in second row

    SPI1BUF=character;
}


void write_int(int num)
{
//wait 5 milliseconds between writing two successive char in first row
//wait 250 microseconds between writing two successive char in second row   
    if (num >= '0' && num <= '9')
    {
        SPI1BUF = '0' + num;
    }
    else
    {
        SPI1BUF = '!';
    }
}

void move_cursor(int hexadecimal)
{
    //first row: from 0x80 to 0x8F
    //first row: from 0xC0 to 0xCF
    //wait 250 microseconds before writing an address byte
    //cannot move cursor and write a char in the same cycle

    SPI1BUF=hexadecimal;
}

void init_led()
{
    _TRISB0=0;
    _TRISB1=0;
}

いくつかのマクロ、バッファ、レジスタなどを含む p30f3013.h ヘッダーを追加します。以下は、このヘッダーの短い部分です。

#ifndef __dsPIC30F3013__
#error "Include file does not match processor setting"
#endif

#ifndef __30F3013_H
#define __30F3013_H

/* ------------------------- */
/* Core Register Definitions */
/* ------------------------- */

/* W registers W0-W15 */
extern volatile unsigned int WREG0 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG1 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG2 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG3 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG4 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG5 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG6 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG7 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG8 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG9 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG10 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG11 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG12 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG13 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG14 __attribute__((__sfr__,__deprecated__,__unsafe__));
extern volatile unsigned int WREG15 __attribute__((__sfr__,__deprecated__,__unsafe__));
......

コードをコンパイルしようとすると、次のエラーが発生します。

#error "Include file does not match processor setting"

このプリプロセッサ命令が原因で発生するのはどれですか:

#ifndef __dsPIC30F3013__
#error "Include file does not match processor setting"
#endif

オプションのない単純な gcc コンパイラを使用しています。-mcpu キーで pic30-gcc のようなものを使用する必要があると思います。しかし、qtcreator を使用しており、そこでこのオプションを指定する方法やコンパイラを変更する方法がわかりません。システムに pic30-coff-gcc-4.0.3 コンパイラをインストールしました。

助言がありますか?

4

1 に答える 1

0

__dsPIC30F3013__コンパイラがプリプロセッサ シンボルを定義していないため、このメッセージが表示されます。コンパイラのドキュメントを読んで、必要なフラグを見つける必要があります。設定するには、IDE のドキュメントを読む必要があります。以下を使用できます。

gcc -dM -E - < /dev/null

コンパイラが生成している定義済みマクロを出力します。

于 2013-06-20T17:55:55.753 に答える