C for Atmega (GCC) Data Types
March 30th, 2008
Tipuri de date recunoscute de compilatorul GCC pentru microcontrolele de la Atmel
Toate Exemplele sunt testate in Avr-Studio & GCC plugin
Tipuri Intregi de date
8 bit types
- typedef signed char int8_t
- typedef unsigned char uint8_t
16 bit types
- typedef int int16_t
- typedef unsigned int uint
32 bit types
- typedef long int32_t
- typedef unsigned long uint32_t
64 bit types
- typedef long long int64_t
- typedef unsigned long long uint64_t
Pointer Types
- typedef int16_t intptr_t
- typedef uint16_t uintptr_t
