#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/pgmspace.h>
#include <stdint.h>
Go to the source code of this file.
Defines | |
#define | SYSTEM_TICKS_PER_SEC 100 |
#define | POINTER void * |
#define | CRITICAL_STORE uint8_t sreg |
#define | CRITICAL_START() sreg = SREG; cli(); |
#define | CRITICAL_END() SREG = sreg |
#define CRITICAL_END | ( | ) | SREG = sreg |
#define CRITICAL_START | ( | ) | sreg = SREG; cli(); |
#define CRITICAL_STORE uint8_t sreg |
#define POINTER void * |
Architecture-specific types. Most of these are available from stdint.h on this platform, which is included above.
#define SYSTEM_TICKS_PER_SEC 100 |
Referenced by avrInitSystemTickTimer().