Minor documentation error within inavr.h
// Insert a NOP to code sequence.
#define __no_operation() __insert_opcode(0x0000);
// Delay for a given number of cycles.
#pragma intrinsic(__delay_cycles)
void __delay_cycles(unsigned long);
// Get high 16 bits of 32-bit value
#pragma intrinsic(_H16)
unsigned _H16(unsigned long);
// Get low 16 bits of 64-bit value <------------ of 32-bit value
#pragma intrinsic(_L16)
unsigned _L16(unsigned long);
// Get high 32 bits of 64-bit value
#pragma intrinsic(_H32)
unsigned long _H32(unsigned long long);
// Get low 32 bits of 64-bit value
#pragma intrinsic(_L32)
unsigned long _L32(unsigned long long);
Please sign in to leave a comment.
Comments
1 comment