Hallo zusammen ! Bin schon langsam am Verzweifeln. Ich benutze in meinem Programm die stdint.h. Beim Compilieren kommt immer folgende Fehlermeldung: C:\AVR\stdint.h(122): error: typedef: Unknown instruction or macro Ich weiß leider nichts damit anzufangen. wäre super wenn mir Jemand einen Tip geben könnte. Hier sind die Beterffenden Zeilen: /* actual implementation goes here */ typedef int int8_t __attribute__((__mode__(_QI_))); typedef unsigned int uint8_t __attribute__((__mode__(_QI_))); /* Zeile 122*/ typedef int int16_t _attribute_ ((_mode_ (_HI_))); typedef unsigned int uint16_t _attribute_ ((_mode_ (_HI_))); typedef int int32_t _attribute_ ((_mode_ (_SI_))); typedef unsigned int uint32_t _attribute_ ((_mode_ (_SI_))); #if !__USING_MINT8 typedef int int64_t __attribute__((__mode__(_DI_))); typedef unsigned int uint64_t __attribute__((__mode__(_DI_))); #endif #endif /* defined(_DOXYGEN_) */ Danke im voraus Gruß Thomas
Das sind Header für GCC
Antwort schreiben
Bitte melde dich an, um einen Beitrag zu schreiben.