Home
avr-libc-user-manual..
Contents
1. global main Note 5 main reall ioinit 13 rjmp ib Note 6 global SIG_OVERFLOWO Note 7 SIG_OVERFLOWO ldi inttmp 256 tmconst fuzz out _SFR_IO_ADDR TCNTO inttmp g ote 8 in intsav _SFR_IO_ADDR SREG Note 9 sbic _SFR_IO_ADDR PORTD SQUARE rjmp 1f sbi _SFR_IO_ADDR PORTD SQUARE rjmp 2f Les chi _SFR_IO_ADDR PORTD SQUARE out _SFR_IO_ADDR SREG intsav reti ioinit sbi _SFR_IO_ADDR DDRD SQUARE 1di work _BV TOIEO out _SFR_IO_ADDR TIMSK work ldi work _BV CS00 tmr0 CK 1 out _SFR_IO_ADDR TCCRO work Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 2 avr libc and assembler programs 61 ldi work 256 tmconst out _SFR_IO_ADDR TCNTO work sei ret global __vector_default Note 10 __vector_default reti end Note 1 As in C programs this includes the central processor specific file containing the IO port definitions for the device Note that not all include files can be included into assembler sources Note 2 Assignment of registers to symbolic names used locally Another option would be to use a C preprocessor macro instead define work 16 Note 3 Our bit number for the square wave output Note that the right hand side con sists of a CPP macro which will be substituted by its value 6 in this case before actually being passed to the assembler Note 4 The assembler uses integer operations in the host defined integer s
2. Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 7 Installing the GNU Tool Chain 97 7 7 Installing the GNU Tool Chain Note This discussion was taken directly from Rich Neswold s document See Ac knowledgments Note This discussion is Unix specific FIXME troth 2002 08 13 we need a volunteer to add windows specific notes to these instructions This chapter shows how to build and install a complete development environment for the AVR processors using the GNU toolset The default behaviour for most of these tools is to install every thing under the usr local directory In order to keep the AVR tools separate from the base system it is usually better to install everything into usr local avr If the usr local avr directory does not exist you should create it before trying to install anything You will need root access to install there If you don t have root access to the system you can alternatively install in your home directory for exam ple in SHOME local avr Where you install is a completely arbitrary decision but should be consistent for all the tools You specify the installation directory by using the prefix dir option with the configure script It is important to install all the AVR tools in the same directory or some of the tools will not work correctly To ensure consistency and simplify the discussion we will use PREF IX to refer to whatever directory you wish to
3. Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 83 mov __tmp_reg__ BO n t mov BO C0 Anite mov C0 _ tmp_reg__ n t r value 0 value If operands do not fit into a single register the compiler will automatically assign enough registers to hold the entire operand In the assembler code you use A0 to refer to the lowest byte of the first operand A1 to the lowest byte of the second operand and so on The next byte of the first operand will be B0 the next byte SCO and so on This also implies that it is often neccessary to cast the type of an input operand to the desired size A final problem may arise while using pointer register pairs If you define an input operand e ptr and the compiler selects register Z r30 r31 then A0 refers to r 30 and BO refers to r31 But both versions will fail during the assembly stage of the compiler if you explicitely need Z like in ld r24 Z If you write ld r24 a0 with a lower case a following the percent sign then the compiler will create the proper assembler line 7 4 4 Clobbers As stated previously the last part of the asm statement the list of clobbers may be omitted including the colon seperator However if you are using registers which had not been passed as operands you need to inform the compiler about this The following example will do an atomic increment It increments an 8 bit value
4. e define cli _ asm__ __volatile__ cli Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 14 Interrupts and Signals 51 Macros for writing interrupt handler functions e define SIGNAL signame e define INTERRUPT signame Allowing specific system wide interrupts In addition to globally enabling interrupts each device s particular interrupt needs to be enabled separately if interrupts for this device are desired While some devices maintain their interrupt enable bit inside the device s register set external and timer interrupts have system wide configuration registers Example Enable timer 1 overflow interrupts timer_enable_int _BV TOIE1 Do some work Disable all timer interrupts timer_enable_int 0 Note Be careful when you use these functions If you already have a different interrupt enabled you could inadvertantly disable 1t by enabling another intterupt e void enable_external_int unsigned char ints e void timer_enable_int unsigned char ints 5 14 2 Define Documentation 5 14 2 1 define cli _asm__ __volatile__ cli include lt avr interrupt h gt Disables all interrupts by clearing the global interrupt mask This function actually compiles into a single line of assembly so there is no function call overhead 5 14 2 2 define INTERRUPT signame Value void signame void __attribute__ interrupt void signame void Gene
5. The strtol function converts the string in nptr to a long value The conversion is done according to the given base which must be between 2 and 36 inclusive or be the special value 0 The string may begin with an arbitrary amount of white space as determined by iss pace followed by a single optional or sign If base is zero or 16 the string may then include a 0x prefix and the number will be read in base 16 otherwise a zero base is taken as 10 decimal unless the next character is 0 in which case it is taken as 8 octal The remainder of the string is converted to a long value in the obvious manner stopping at the first character which is not a valid digit in the given base In bases above 10 the letter A in either upper or lower case represents 10 B represents 11 and so forth with Z representing 35 If endptr is not NULL strtol stores the address of the first invalid character in endptr If there were no digits at all however strtol stores the original value of nptr in endptr Thus if xnptr is not 0 but endpt r is 0 on return the entire string was valid The strtol function returns the result of the conversion unless the value would under flow or overflow If no conversion could be performed 0 is returned If an overflow or underflow occurs errno is set to ERANGE and the function return value is clamped to LONG_MIN or LONG_MAX respectively 5 1
6. e define PGM_P const prog_char x e define PGM_VOID_P const prog_void x Functions unsigned char __elpm_inline unsigned long __addr _ATTR_CONST__ void x memcpy_P void x PGM_VOID_P size_t int strcasecmp_P const char x PGM_P _ ATTR PURE char strcat_P char x PGM_P int stremp_P const char x PGM_P _ATTR_PURE__ char x strepy_P char x PGM_P size_t strlen_P PGM_P _ATTR_CONST_ int strncasecmp_P const char x PGM P size_t _ATTR_PURE__ int strncmp_P const char x PGM_P size_t _ATTR PURE__ char strncpy_P char x PGM_P size_t 5 3 2 Define Documentation 5 3 2 1 define PGM_P const prog_char x Used to declare a variable that is a pointer to a string in program space Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 3 Program Space String Utilities 5 3 2 2 define PGM_VOID P const prog_void x Used to declare a generic pointer to an object in program space 5 3 2 3 define PSTR s static char __c PROGMEM s __c Used to declare a static pointer to a string in program space 5 3 3 Function Documentation 5 3 3 1 unsigned char __elpm inline unsigned long _addr static Use this for access to gt 64K program memory ATmegal03 ATmegal28 addr RAMPZ r31 r30 Note If possible put your constant tables in the lower 64K and use lpm since it is more efficient that way and you can still use the upper 64K for executable code 5 3 3 2 void x memcpy P void
7. out __SREG__ 0 n t amp r s e ptr Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 85 Now every thing seems correct but it isn t really The assembler code modifies the variable that ptr points to The compiler will not recognize this and may keep its value in any of the other registers Not only does the compiler work with the wrong value but the assembler code does too The C program may have modified the value too but the compiler didn t update the memory location for optimization reasons The worst thing you can do in this case is uint8_t s asm volatile in 0 _ SREG__ ANNE neri TANNE ld _ tmp_reg__ al TANTI inc tmp r g T PNA st Sal __tmp_reg__ RAE out __SREG__ 50 ANNE amp r s e ptr memory The special clobber memory informs the compiler that the assembler code may mod ify any memory location It forces the compiler to update all variables for which the contents are currently held in a register before executing the assembler code And of course everything has to be reloaded again after this code In most situations a much better solution would be to declare the pointer destination itself volatile volatile uint8_t ptr This way the compiler expects the value pointed to by ptr to be changed and will load it whenever used and store it whenever modified Situations in which you need clobbers are very rare In most ca
8. set_bits_macro PORTB Oxf0 ile 88 b3 in r24 0x18 24 lle 80 6f ori r24 OxFO 240 120 88 bb out 0x18 r24 24 Of course in a real application you might be doing a lot more in your function which uses a passed by reference io port address and thus the use of a function over a macro could save you some code space but still at a cost of execution speed Back to FAQ Index 7 3 14 What registers are used by the C compiler e Data types Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 73 char is 8 bits int is 16 bits long is 32 bits long long is 64 bits float and double are 32 bits this is the only supported floating point format pointers are 16 bits function pointers are word addresses to allow addressing the whole 128K program memory space on the ATmega devices with gt 64 KB of flash ROM There is a mint8 option see Options for the C compiler avr gcc to make int 8 bits but that is not supported by avr libc and violates C standards int must be at least 16 bits It may be removed in a future release Call used registers r18 r27 r30 r31 May be allocated by gcc for local data You may use them freely in assem bler subroutines Calling C subroutines can clobber any of them the caller is responsible for saving and restoring Call saved registers r2 r17 r28 r29 May be allocated by gcc for local data Calling C subroutines leaves them un cha
9. 5 12 4 24 double strtod const char __nptr char xx __endptr The strtod function converts the initial portion of the string pointed to by nptr to double representation The expected form of the string is an optional plus or minus sign followed by a sequence of digits optionally containing a decimal point character optionally fol lowed by an exponent An exponent consists of an E or e followed by an optional plus or minus sign followed by a sequence of digits Leading white space characters in the string are skipped The strtod function returns the converted value if any If endpt r is not NULL a pointer to the character after the last character used in the conversion is stored in the location referenced by endpt r If no conversion is performed zero is returned and the value of npt r is stored in the location referenced by endpt r Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities If the correct value would cause overflow plus or minus HUGE_VAL is returned ac cording to the sign of the value and ERANGE is stored in errno If the correct value would cause underflow zero is returned and ERANGE is stored in errno FIXME HUGE_VAL needs to be defined somewhere The bit pattern is Ox7fffffff but what number would this be Note Implemented but not tested 5 12 4 25 long strtol const char _nptr char xx __endptr int _base
10. Defines e define FILE struct __file e define stdin __iob 0 e define stdout _iob 1 e define stderr __iob 2 e define EOF 1 e define putc __c _stream fputc __c __stream e define putchar __c fputc __c stdout Functions FILE x fdevopen int __put char int __get void int __opts int fclose FILE __stream int vfprintf FILE _ stream const char __fmt va_list __ap int fputc int _c FILE x_ stream int printf const char __fmt int printf P const char x_fmt int sprintf char x__s const char __fmt int sprintf_P char x__s const char x__fmt int snprintf char __s size_t __n const char __fmt int snprintf_P char __s size_t __n const char x__fmt int fprintf FILE __stream const char __fmt int fprintf_P FILE __stream const char __fmt 5 11 2 Define Documentation 5 11 2 1 define EOF 1 EOF error declares the value that is returned by various standard IO functions in case of an Since the AVR platform currently doesn t contain an abstraction for actual files its origin as end of file is somewhat meaningless here 5 11 2 2 define FILE struct _ file FILI E is the opaque structure that is passed around between the various standard IO functions Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 27 5 11 2 3 define putc __c _stream fputc __c stream Th
11. Overflow0 Interrupt SIG_OVERFLOW1 Overflow1 Interrupt SIG_OVERFLOW2 Overflow2 Interrupt SIG_OVERFLOW3 Overflow3 Interrupt SIG_PIN SIG_PIN CHANGEO SIG_PIN_CHANGE1 SIG_RDMAC SIG_SPI SPI Interrupt SIG_SPM_READY Store program memory ready SIG_SUSPEND_RESUME SIG_TDMAC SIG_UARTO SIG_UARTO_DATA UART 0 Data Register Empty Interrupt SIG_UARTO_RECV UART 0 Receive Complete Interrupt SIG_UARTO_TRANS UART 0 Transmit Complete Interrupt SIG_UART1 SIG_UART1_DATA UART 1 Data Register Empty Interrupt SIG_UART1_RECV UART 1 Receive Complete Interrupt SIG_UARTI_TRANS UART 1 Transmit Complete Interrupt SIG_UART_DATA UART Data Register Empty Interrupt SIG_UART_RECV UART Receive Complete Interrupt SIG_UART_TRANS UART Transmit Complete Interrupt SIG_USARTO_DATA USART 0 Data Register Empty Interrupt SIG_USARTO_RECV USART 0 Receive Complete Interrupt SIG_USARTO_TRANS USART 0 Transmit Complete Interrupt SIG_USART1_DATA USART 1 Data Register Empty Interrupt SIG_USART1_RECV USART 1 Receive Complete Interrupt SIG_USARTI_TRANS USART 1 Transmit Complete Interrupt SIG_USB_HW Global manipulation of the interrupt flag The global interrupt flag is maintained in the I bit of the status register SREG e define sei _asm__ __volatile__ sei
12. The source code is given in demo c For the sake of this example create a file called demo c containing this source code Some of the more important parts of the code are Note 1 The PWM is being used in 10 bit mode so we need a 16 bit variable to remember the current value Note 2 SIGNAL is a macro that marks the function as an interrupt routine In this case the function will get called when the timer overflows Setting up interrupts is explained in greater detail in Interrupts and Signals Note 3 This section determines the new value of the PWM Note 4 Here s where the newly computed value is loaded into the PWM register Since we are in an interrupt routine it is safe to use a 16 bit assignment to the register Outside of an interrupt the assignment should only be performed with interrupts disabled if there s a chance that an interrupt routine could also access this register or another register that uses TEMP see the appropriate FAQ entry Note 5 This routine gets called after a reset It initializes the PWM and enables interrupts Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 10 A simple project 114 Note 6 The main loop of the program does nothing all the work is done by the interrupt routine If this was a real product we d probably put a SLEEP instruction in this loop to conserve power Note 7 Early AVR devices saturate their outputs at
13. _BV 3 gt 1 lt lt 3 gt 0x08 However using the macro often makes the program better readable BV stands for bit value in case someone might ask you Example clock timer 2 with full IO clock CS2x 0b001 toggle OC2 output on compare match COM2x 0b01 and clear timer on compare match CTC2 1 Make OC2 PD7 an output TCCR2 _BV COM20 _BV CTC2 _BV CS20 DDRD _BV PD7 Back to FAQ Index Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 66 7 3 7 Can I use C on the AVR Basically yes C is supported assuming your compiler has been configured and compiled to support it of course Source files ending in cc cpp or C will automat ically cause the compiler frontend to invoke the C compiler Alternatively the C compiler could be explicitly called by the name avr c However there s currently no support for libstdc the standard support library needed for a complete C implementation This imposes a number of restrictions on the C programs that can be compiled Among them are e Obviously none of the C related standard functions classes and template classes are available e The operators new and delete are not implemented attempting to use them will cause the linker to complain about undefined external references This could perhaps be fixed e Some of the supplied include files are not C safe i e they need
14. 0x0061 54 90 91 62 00 lds 125 0x0062 58 89 2b or r24 r25 Sa bil f4 brne 44 direction BE 10 92 60 00 sts 0x0060 r1 60 13 co rjmp 38 62 80 91 61 00 lds r24 0x0061 66 90 91 62 00 lds 125 0x0062 6a 01 96 adiw r24 0x01 60 90 93 62 00 sts 0x0062 r25 70 80 93 61 00 sts 0x0061 r24 74 80 91 61 00 lds r24 0x0061 78 90 91 62 00 lds r25 0x0062 TES 8f 5f subi r24 OxFF Te 93 40 sbci r25 0x03 80 19 4 brne 6 82 81 e0 Lar r24 0x01 84 80 93 60 00 sts 0x0060 r24 break 63 0x62 0x88 0x88 0x88 255 0x88 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 119 OCR pwm Note 4 88 80 91 61 00 lds r24 0x0061 8c 90 91 62 00 lds r25 0x0062 90 9b bd out Ox2b r25 43 O28 8a bd out Ox2a r24 PAZ 94 9f 91 pop r25 96 8f 91 pop r24 98 2f 91 pop r18 Ja Of 90 POP r0 bo Of be out Ux3I ED 63 Je Of 90 POP r0 a0 1f 90 pop rl a2 18 95 reti 000000a4 lt ioinit gt void ioinit void Note 5 tmrl is 10 bit PWM TCCRIA _BV PWM10 _BV PWM11 _BV XCOM11 a4 83 e8 Idi r24 0x83 2 413 a 8f bd out Ox2f r24 pe Ach tmrl running on full MCU clock TCCRIB _BV CS10 a8 81 e0 ldi r24 0x01 s aa 8e bd out Ox2e r24 46 set PWM value to 0 OCR 0 ac ib bc out Ox2b rl 43 ae la be out Ox2a rl 42 enable OC1 and PB2 as output DDROC _BV OCI b0 88 e0
15. Obviously the constraints are much harder to satisfy in the default configuration where only internal RAM is available Extreme care must be taken to avoid a stack heap collision both by making sure functions aren t nesting too deeply and don t require too much stack space for local variables as well as by being cautious with allocating too much dynamic memory If external RAM is available it is strongly recommended to move the heap into the external RAM regardless of whether or not the variables from the data and bss sections are also going to be located there The stack should always be kept in internal RAM Some devices even require this and in general internal RAM can be accessed faster since no extra wait states are required When using dynamic memory allocation and stack and heap are separated in distinct memory areas this is the safest way to avoid a stack heap collision 7 5 3 Tunables for malloc There are a number of variables that can be tuned to adapt the behavior of malloc to the expected requirements and constraints of the application Any changes to these Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 5 Using malloc 90 tunables should be made before the very first call to malloc Note that some library functions might also use dynamic memory notably those from the Standard IO facili ties so make sure the changes will be done early enough in the startup sequence The variables
16. The chunk will normally be split up into one to be returned to the caller and another smaller one that will remain on the freelist In case this chunk was only up to two bytes larger than the request the request will simply be altered internally to also account for these additional bytes since no separate freelist entry could be split off in that case If nothing could be found on the freelist heap extension is attempted This is where _malloc_margin will be considered if the heap is operating below the stack or where _malloc_heap end will be verified otherwise If the remaining memory is insufficient to satisfy the request NULL will eventually be returned to the caller When calling free a new freelist entry will be prepared An attempt is then made to aggregate the new entry with possible adjacent entries yielding a single larger entry available for further allocations That way the potential for heap fragmentation is hopefully reduced 7 6 Memory Sections Remarks Need to list all the sections which are available to the avr Weak Bindings FIXME need to discuss the weak directive The following describes the various sections available 7 6 1 The text Section The text section contains the actual machine instructions which make up your program This section is further subdivided by the initN and finiN sections dicussed below Note The avr size program part of binutils coming from a Unix background doesn t a
17. defined __AVR_AT90S4434__ defined __AVR_AT90S8535__ defined __AVR_ATmegal63__ define OC1 PD5 define DDROC DDRD define OCR OCRIA Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 115 endif if defined COM11 define XCOM11 COM11 elif defined COM1A1 define XCOM11 COM1A1 else error need either COM1A1 or COM11 endif enum UP DOWN volatile uint16_t pwm Note 1 volatile uint8_t direction SIGNAL SIG_OVERFLOW1 Note 2 switch direction Note 3 case UP if pwm 1023 direction DOWN break case DOWN if pwm 0 direction UP break OCR pwm Note 4 void ioinit void Note 5 tmrl is 10 bit PWM TCCR1A _BV PWM10 _BV PWM11 tmrl running on full MCU clock TCCR1B _BV CS10 set PWM value to 0 OCR 0 enable OC1 and PB2 as output DDROC _BV 0C1 timer_enable_int _BV TOIE1 enable interrupts sei int _BV XCOM11 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 116 main void ioinit loop forever the interrupts are doing the rest for Note 6 r return 0 7 10 3 Compiling and Linking This first thing that needs to be done is compile the source When compiling the compiler needs to know the processor type so the mmcu option
18. for details 5 11 3 4 int fprintf_P FILE x __stream const char x fmt Variant of fprintf that uses a fmt string that resides in program memory 5 11 3 5 int fputc int __c FILE x __stream The function fputc sends the character though given as type int to stream It returns the character or EOF in case an error occurred 5 11 3 6 int printf const char __fmt The function printf performs formatted output to stream stderr See vf printf for details 5 11 3 7 int printf P const char x _fmt Variant of printf that uses a fmt string that resides in program memory 5 11 3 8 int snprintf char x __s size_t __n const char x __fmt Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 29 Like sprintf but instead of assuming s to be of infinite size no more than n characters including the trailing NUL character will be converted to s Returns the number of characters that would have been written to s if there were enough space 5 11 3 9 int snprintf P char x _ s size_t _n const char _fmt Variant of snprint that uses a fmt string that resides in program memory 5 11 3 10 int sprintf char x _s const char x __fmt Variant of printf that sends the formatted characters to string s 5 11 3 11 int sprintf P char __s const char _fmt Variant of sprintf that uses a fmt string that resides in pro
19. is declared with a void return type which makes some sense in a microcontroller environment where the application cannot meaning fully provide a return value to its environment in most cases main won t even return anyway Options for the assembler avr as 1 Machine specific assembler options mmcu architecture mmcu MCU name avr as understands the same mmcu options as avr gcc By default avr2 is as sumed but this can be altered by using the appropriate arch pseudo instruction inside the assembler source file mall opcodes Turns off opcode checking for the actual MCU type and allows any possible AVR opcode to be assembled mno skip bug Don t emit a warning when trying to skip a 2 word instruction with a CPSE SBIC SBIS SBRC SBRS instruction Early AVR devices suffered from a hardware bug where these instructions could not be properly skipped mno wrap For RJMP RCALL instructions don t allow the target address to wrap around for devices that have more than 8 KB of memory gstabs Generate stabs debugging symbols for assembler source lines This enables avr gdb to trace through assembler source files This option must not be used when assembling sources that have been generated by the C compiler these files already contain the appropriate line number information from the C source files a cdh1mns file Turn on the assembler listing The sub options are c omit false conditionals
20. on the left with zeros rather than blanks If a precision is given with a numeric conversion d i o u i x and X the 0 flag is ignored Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 30 A negative field width flag the converted value is to be left adjusted on the field boundary The converted value is padded on the right with blanks rather than on the left with blanks or zeros A overrides a O if both are given space A blank should be left before a positive number produced by a signed conversion d or i A sign must always be placed before a number produced by a signed conversion A overrides a space if both are used An optional decimal digit string specifying a minimum field width If the converted value has fewer characters than the field width it will be padded with spaces on the left or right if the left adjust173 ment flag has been given to fill out the field width An optional precision in the form of a period followed by an optional digit string If the digit string is omitted the precision is taken as zero This gives the minimum number of digits to appear for d i o u x and X conversions or the maximum number of characters to be printed from a string for s con173 versions An optional 1 length modifier that specifies that the argument for the d i o u x or X conversion isa long int rather than int e A character tha
21. 22 14 31 2002 for avr libe by Doxygen 5 6 Character Operations 16 5 6 2 6 int isdigit int _c Checks for a digit 0 through 9 5 6 2 7 intisgraph int _c Checks for any printable character except space 5 6 2 8 int islower int __c Checks for a lower case character 5 6 2 9 int isprint int __c Checks for any printable character including space 5 6 2 10 int ispunct int _c Checks for any printable character which is not a space or an alphanumeric character 5 6 2 11 int isspace int _c Checks for white space characters For the avr libc library these are space form feed f newline n carriage return r horizontal tab t and vertical tab C v 5 6 2 12 int isupper int _c Checks for an uppercase letter 5 6 2 13 int isxdigit int _c Checks for a hexadecimal digits i e one of 0123456789abcdefABCDEF 5 6 2 14 int toascii int _c Converts c to a 7 bit unsigned char value that fits into the ASCII character set by clearing the high order bits Warning Many people will be unhappy if you use this function This function will convert accented letters into random characters Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 5 7 System Errors errno 17 5 6 2 15 int tolower int _c Converts the letter c to lower case if possible 5 6 2 16 int toupper int __c Converts the letter c to upper case if possible 5 7 System
22. 3 10 double floor double __x The floor function returns the largest integral value less than or equal to x expressed as a floating point number 5 9 3 11 double fmod double __x double __y The function fmod returns the floating point remainder of x y 5 9 3 12 double frexp double __value int x __exp The frexp function breaks a floating point number into a normalized fraction and an integral power of 2 It stores the integer in the int object pointed to by exp The frexp function returns the value x such that x is a double with magnitude in the interval 1 2 1 or zero and value equals x times 2 raised to the power exp If value is zero both parts of the result are zero 5 9 3 13 double inverse double The function inverse returns 1 x Note This function does not belong to the C standard definition Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 9 Mathematics 21 5 9 3 14 double Idexp double _x int _exp The Idexp function multiplies a floating point number by an integral power of 2 The Idexp function returns the value of x times 2 raised to the power exp If the resultant value would cause an overflow the global variable errno is set to ERANGE and the value NaN is returned 5 9 3 15 double log double _x The log function returns the natural logarithm of argument x If the argument is less than or equal 0 a domain error will occur 5 9 3 16 double log10 do
23. 52 toascii ctype 15 tolower ctype 16 tools optional 98 tools required 97 toupper ctype 16 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen
24. Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 68 uint16_t read_timerl void uint8_t sreg uint16_t val sreg SREG cli val TCNT1 SREG sreg return val Back to FAQ Index 7 3 10 How do I use a define d constant in an asm statement So you tried this asm volatile sbi 0x18 0x07 Which works When you do the same thing but replace the address of the port by its macro name like this asm volatile sbi PORTB 0x07 you get a compilation error Error constant value required PORTB is a precompiler definition included in the processor specific file included in avr io h As you may know the precompiler will not touch strings and PORTB instead of 0x18 gets passed to the assembler One way to avoid this problem is asm volatile sbi 0 0x07 I PORTB Note avr io h already provides a sbi macro definition which can be used in C programs Back to FAQ Index 7 3 11 Why does the PC randomly jump around when single stepping through my program in avr gdb When compiling a program with both optimization 0 and debug information g which is fortunately possible in avr gcc the code watched in the debugger is Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 69 optimized code While it is not guaranteed very often this code runs with the exact same optimizations as it would run without th
25. Errors errno 5 7 1 Detailed Description include lt errno h gt Some functions in the library set the global variable errno when an error occurs The file lt errno h gt provides symbolic names for various error codes Warning The errno global variable is not safe to use in a threaded or multi task system A race condition can occur if a task is interrupted between the call which sets error and when the task examines errno If another task changes errno during this time the result will be incorrect for the interrupted task Defines e define EDOM 33 e define ERANGE 34 5 7 2 Define Documentation 5 7 2 1 Hdefine EDOM 33 Domain error 5 7 2 2 define ERANGE 34 Range error 5 8 Integer Types 5 8 1 Detailed Description include lt inttypes h gt Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 9 Mathematics 18 Use ulintN_t if you need exactly N bits Note If avr gcc s mint 8 option is used no 32 bit types will be available 5 9 Mathematics 5 9 1 Detailed Description include lt math h gt This header file declares basic mathematics constants and functions Note In order to access the functions delcared herein it is usually also required to addi tionally link against the library 1ibm a See also the related FAQ entry Defines e define M_PI 3 141592653589793238462643 e define M_SQRT2 1 4142135623730950488016887 Functions double cos double _x _ATTR_CONS
26. GNU C compiler for Atmel AVR RISC processors offers to embed assembly language code into C programs This cool feature may be used for manually optimizing time critical parts of the software or to use specific processor instruction which are not available in the C language Because of a lack of documentation especially for the AVR version of the compiler it may take some time to figure out the implementation details by studying the compiler and assembler source code There are also a few sample programs available in the net Hopefully this document will help to increase their number It s assumed that you are familiar with writing AVR assembler programs because this is not an AVR assembler programming tutorial It s not a C language tutorial either Note that this document does not cover file written completely in assembler language refer to avr libc and assembler programs for this Copyright C 2001 2002 by egnite Software GmbH Permission is granted to copy and distribute verbatim copies of this manual provided that the copyright notice and this permission notice are preserved on all copies Permis sion is granted to copy and distribute modified versions of this manual provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one This document describes version 3 3 of the compiler There may be some parts which hadn t been completely understood by the author himself
27. Otherwise the assembler code that results from the C compilation stage will also get line number information which confuses the debugger Note You can also use Wa gstabs since the compiler will add the extra for you Example EXTRA_OPTS Wall mmcu atmegal28 x assembler with cpp avr gcc Wa gstabs EXTRA_OPTS c o foo o foo S Also note that the debugger might get confused when entering a piece of code that has a non local label before since it then takes this label as the name of a new function that appears to have been entered Thus the best practice to avoid this confusion is to only use non local labels when declaring a new function and restrict anything else to local labels Local labels consist just of a number only References to these labels consist of the number followed by the letter b for a backward reference or f for a forward reference These local labels may be re used within the source file references will pick the closest label with the same number and given direction Example myfunc push rig push r17 push r18 push YL push YH eor rl6 rl6 start loop ldi YL lo8 sometable ldi YH hi8 sometable rjmp 2f jump to loop test at end li ld rl7 Y loop continues here breg 1f return from myfunc prematurely inc r1l6 23 cmp r16 18 brlo 1b jump back to top of loop Ls pop YH pop YL pop r18 pop E17 pop rig ret Back to FAQ Index Generated on Mon Dec 9 22 14 31 2002
28. Using Sections in Assembler Code 96 769 Using Sections int Code occ sms i 96 Installing the GNU Tool Chain sece cewe a ea ea Ea 97 374 Required TGGl osso 4 ee pe A 98 Tra Optional Tools 2204 Aw eae be ea 98 7 7 3 GNU Binutils for the AVR target 99 TIA GCC tor the AVR target gt o 20304 ee ji eee 100 Po AVRE a ae ee aS a ew 101 je URE a Pra Ce cae ee ds Bag 101 ELT ANDOS ko te ork ee 102 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 1 AVR Libc 7 7 8 GDB tor the AVR target o o ieste 102 jn g gm see 102 runu 1 seen 103 7 8 Using the avrprog program 0 0 103 TO Use the INU mek 25 6 eka aa a kaka Saud 105 7 9 1 Options for the C compiler avr gcc 2 2 105 7 9 2 Options for the assembler avr as 109 7 9 3 Controlling the linkeravr ld 110 210 Asimple probet ce Se ee ae eR ROA 112 URL TOS PERIS is ee eS eee eee 112 710 2 The Source Code oo coc oc erse mua i ie 114 710 3 Compiling and Linking o lt o eos poso po gooo gla a 116 7 104 Examining the Object File 2 sacris aorto owa eR es 116 US Linker Map Files sso c eoe ek a e aes 120 7106 Intel Hex Piles aba ee ae eA 121 710 7 Make Build the Project lt lt 204 c sera 2 i bbws 122 LL Deprecated KISE a aa 0 SS eee 4 ER Des ee ees 124 1 AVR Libe The latest version of this document is always available from http savannah nongnu org projects av
29. _malloc_heap_start and _malloc_heap_end can be used to re strict the malloc function to a certain memory region These variables are statically initialized to point to _heap_start and _heap_end respectively where _heap_ start is filled in by the linker to point just beyond bss and _heap_end is set to 0 which makes malloc assume the heap is below the stack If the heap is going to be moved to external RAM _malloc_heap_end must be adjusted accordingly This can either be done at run time by writing directly to this variable or it can be done automatically at link time by adjusting the value of the symbol _heap_end The following example shows a linker command to relocate the entire data and bss segments and the heap to location 0x1100 in external RAM The heap will extend up to address Oxffff avr gcc W1 Tdata 0x801100 defsym __heap_end 0x80ffff Note See explanation for offset 0x800000 See the chapter about using gcc for the W1 options S ES te 5 O S on board RAM z x external RAM L o 6 6 6 SP 1 _ malloc_heap_end __heap_end RAMEND Eo __malloc_heap_start __heap_start __bss_end __data_en __bss_start data start Figure 2 Internal RAM stack only external RAM variables and heap If dynamic memory should be placed in external RAM while keeping the variables in internal RAM something like the following could be used Note that for demonstration purposes the assignment of the v
30. a list of AVR devices currently supported by the library AT90S Type Devices at90s1200 1 at90s2313 at90s2323 at90s2333 at90s2343 at90s4414 at90s4433 at90s4434 at90s8515 at90s8534 at90s8535 ATmega Type Devices atmega8 atmega 103 atmega128 atmega16 atmegal61 atmega162 atmega163 atmega 169 atmega32 atmega323 atmega64 untested atmega8515 untested atmega8535 untested ATtiny Type Devices attiny 10 1 attiny11 1 attiny 12 1 attiny15 1 attiny22 attiny26 attiny28 1 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 2 avr libc Module Index Misc Devices e at94K 2 e at76c711 3 Note 1 Assembly only There is no support for these devices to be programmed in C since they do not have a ram based stack Note 2 The at94K devices are a combination of FPGA and AVR microcontroller TRoth 2002 11 12 Not sure of the level of support for these More information would be welcomed Note 3 The at76c711 is a USB to fast serial interface bridge chip using an AVR core It seems to be supported by binutils and gcc but is only partially supported by avr libc The missing piece seems to be crt 76711 0 2 avr libc Module Index 2 1 avr libc Modules Here is a list of all modules EEPROM handling 5 AVR device specific IO definitions 7 Program Space String Utilities 8 Power Management and Sleep Modes 13 Character Operations 14 System Errors errno 17 Inte
31. and not all samples had been Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 77 tested so far Because the author is German and not familiar with the English language there are definitely some typos and syntax errors in the text As a programmer the author knows that a wrong documentation sometimes might be worse than none Any way he decided to offer his little knowledge to the public in the hope to get enough response to improve this document Feel free to contact the author via e mail For the latest release check http www ethernut de Herne 17th of May 2002 Harald Kipp harald kipp egnite de Note As of 26th of July 2002 this document has been merged into the documentation for avr libc The latest version is now available at http savannah nongnu org projects avr libc 7 4 1 GCC asm Statement Let s start with a simple example of reading a value from port D asm in 0 1 r value I PORTD Each asm statement is devided by colons into four parts 1 The assembler instructions defined as a single string constant in 0 1 2 A list of output operands separated by commas Our example uses just one Yer value 3 A comma separated list of input operands Again our example uses one operand only I PORTD 4 Clobbered registers left empty in our example You can write assembler instructions in much the same way as you would write assem bler program
32. assembler source code Among them are Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 2 avr libc and assembler programs 59 e Code for devices that do not have RAM and are thus not supported by the C compiler e Code for very time critical applications e Special tweaks that cannot be done in C Usually all but the first could probably be done easily using the inline assembler facility of the compiler Although avr libc is primarily targeted to support programming AVR microcontrollers using the C and C language there s limited support for direct assembler usage as well The benefits of it are e Use of the C preprocessor and thus the ability to use the same symbolic constants that are available to C programs as well as a flexible macro concept that can use any valid C identifier as a macro whereas the assembler s macro concept is basically targeted to use a macro in place of an assembler instruction e Use of the runtime framework like automatically assigning interrupt vectors For devices that have RAM initializing the RAM variables can also be utilized 7 2 2 Invoking the compiler For the purpose described in this document the assembler and linker are usually not invoked manually but rather using the C compiler frontend avr gcc that in turn will call the assembler and linker as required This approach has the following advantages e There is basically only one program to be called direc
33. automatically use the PREF IX environment variable if you have set and exported it Alternatively you could do this shown for consistency with binutils and gcc gunzip c avr libc lt version gt tar gz tar xf cd avr libc lt version gt mkdir obj avr cd obj avr configure prefix PREFIX make make install nninninn nm 7 7 6 UISP Uisp also uses the configure system so to build and install gunzip c uisp lt version gt tar gz tar xf cd uisp lt version gt mkdir obj avr cd obj avr configure prefix PREFIX make make install UN 17 E HE o Ue Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 7 Installing the GNU Tool Chain 102 7 7 7 Avrprog Note This is currently a FreeBSD only program although adaptation to other systems should not be hard avrprog is part of the FreeBSD ports system To install it simply do the following cd usr ports devel avrprog make install Note Installation into the default location usually requires root permissions However running the program only requires access permissions to the appropriate ppi 4 device 7 7 8 GDB for the AVR target Gdb also uses the configure system so to build and install bunzip2 c gdb lt version gt tar bz2 tar xf cd gdb lt version gt mkdir obj avr cd obj avr configure prefix SPREFIX target avr make make install nnnnnnn wn Note If you are planning on using avr gdb
34. code executed after return from main or a call to exit These all are subparts of the text section The finiN sections are executed in descending order from 9 to 0 finit9 Unused User definable This is effectively where _exit starts fini8 Unused User definable fini7 Unused User definable fini6 Unused for C programs but used for destructors in C programs fini5 Unused User definable fini4 Unused User definable Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 6 Memory Sections 96 fini3 Unused User definable fini2 Unused User definable finil Unused User definable fini0 Goes into an infinite loop after program termination and completion of any _exit code execution of code in the fini9 gt finil sections 7 6 8 Using Sections in Assembler Code Example include lt avr io h gt section initl ax fprogbits ldi r0 Oxff out _SFR_IO_ADDR PORTB r0 out _SFR_IO_ADDR DDRB ro Note The ax progbits tells the assembler that the section is allocatable a executable x and contains data Qprogbits For more detailed information on the section directive see the gas user manual 7 6 9 Using Sections in C Code Example include lt avr io h gt void my_init_portb void __attribute__ naked __attribute__ section init1 void my_init_portb void outb PORTB Oxff outb DDRB Oxff
35. dest PGM VOID P src size_t n The memcpy_P function is similar to memcpy except the src string resides in pro gram space Returns The memcpy_P function returns a pointer to dest 5 3 3 3 int strcasecmp_P const char x s1 PGM_P s2 Compare two strings ignoring case The strcasecmp_P function compares the two strings sl and s2 ignoring the case of the characters Parameters sl A pointer to a string in the devices SRAM s2 A pointer to a string in the devices Flash Returns The strcasecmp_P function returns an integer less than equal to or greater than zero if sl is found respectively to be less than to match or be greater than s2 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 3 Program Space String Utilities 10 5 3 3 4 char x strcat_P char x dest PGM P src The strcat_P function is similar to strcat except that the src string must be located in program space flash Returns The strcat function returns a pointer to the resulting string dest 5 3 3 5 int stremp_P const char s1 PGM P s2 The stremp_P function is similar to stremp except that s2 is pointer to a string in program space Returns The stremp_P function returns an integer less than equal to or greater than zero if sl is found respectively to be less than to match or be greater than s2 5 3 3 6 char x strepy_P char x dest PGM_P src The strcpy_P function is similar to strcpy except th
36. domit debugging directives Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 9 Using the GNU tools 110 h include high level source 1 include assembly minclude macro expansions n omit forms processing s include symbols file set the name of the listing file The various sub options can be combined into a single a option list file must be the last one in that case 7 9 2 2 Examples for assembler options passed through the C compiler Re member that assembler options can be passed from the C compiler frontend using Wa see above so in order to include the C source code into the assembler listing in file foo 1st when compiling foo c the following compiler command line can be used avr gcc c O foo c o foo o Wa ahls f00 lst In order to pass an assembler file through the C preprocessor first and have the assem bler generate line number debugging information for it the following command can be used avr gcc c x assembler with cpp o foo o foo S Wa gstabs Note that on Unix systems that have case distinguishing file systems specifying a file name with the suffix S upper case letter S will make the compiler automatically assume x assembler with cpp while using s would pass the file directly to the assembler no preprocessing done 7 9 3 Controlling the linker avr Id 7 9 3 1 Selected linker options While there are no machine specific options for avr
37. install in You can set this as an environment variable if you wish as such using a Bourne like shell PREFIX HOME local avr export PREFIX Note Be sure that you have your PATH environment variable set to search the direc tory you install everything in before you start installing anything For example if you use prefix PREFIX you must have SPREFIX bin in your exported PATH As such PATH SPATH SPREFIX bin export PATH Note The versions for the packages listed below are known to work together If you mix and match different versions you may have problems Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 7 Installing the GNU Tool Chain 98 7 7 1 Required Tools e GNU Binutils 2 14 http sources redhat com binutils Installation e GCC 3 3 https aee gaa org Installation AVR Libc 200208 16 cvs http savannah gnu org projects avr libc Installation Note As of 2002 08 15 the versions mentioned above are still considered experimental and must be obtained from cvs Instructions for obtaining the latest cvs versions are available at the URLs noted above Significant changes have been made which are not compatible with previous stable releases These incompatilities should be noted in the documentation 7 7 2 Optional Tools You can develop programs for AVR devices without the following tools They may or may not be of use for you e uisp 20020626 h
38. interrupt routine is to be linked together with C modules care must be taken to follow the register usage guidelines imposed by the C compiler Also any register modified inside the interrupt sevice needs to be saved usually on the stack Note 10 As explained in Interrupts and Signals a global catch all interrupt handler that gets all unassigned interrupt vectors can be installed using the name __vector_ default This must be global and obviously should end in a ret i instruc tion By default a jump to location 0 would be implied instead 7 3 Frequently Asked Questions 7 3 1 FAQ Index 1 My program doesn t recognize a variable updated within an interrupt routine Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 63 NY Dn Nn A W N 00 10 11 12 13 14 15 I get undefined reference to for functions like sin How to permanently bind a variable to a register How to modify MCUCR or WDTCR early What is all this _BV stuff about Can I use C on the AVR Shouldn t I initialize all my variables Why do some 16 bit timer registers sometimes get trashed How do l use a define d constant in an asm statement Why does the PC randomly jump around when single stepping through my pro gram in avr gdb How do I trace an assembler file in avr gdb How do I pass an IO port as a parameter to a function What r
39. is specified The Os option will tell the compiler to optimize the code for efficient space usage at the possible expense of code execution speed The g is used to embed debug info The debug info is useful for disassemblies and doesn t end up in the hex files so I usually specify it Finally the c tells the compiler to compile and stop don t link This demo is small enough that we could compile and link in one step However real world projects will have several modules and will typically need to break up the building of the project into several compiles and one link avr gcc g Os mmcu at90s2333 c demo c The compilation will create a demo o file Next we link it into a binary called demo elf avr gcc g mmcu at90s2333 o demo elf demo o It is important to specify the MCU type when linking The compiler uses the mmcu option to choose start up files and run time libraries that get linked together If this option isn t specified the compiler defaults to the 8515 processor environment which is most certainly what you didn t want 7 10 4 Examining the Object File Now we have a binary file Can we do anything useful with it besides put it into the processor The GNU Binutils suite is made up of many useful tools for manipulating object files that get generated One tool is avr objdump which takes information from the object file and displays it in many useful ways Typing the command by itself will cause it
40. is the first address after the register bank on a 2313 processor The next available address in the data segment is also location 0x 60 so the appli cation has no initialized data The bss segment where uninitialized data is stored starts at location 0x 60 The next available address in the oss segment is location 0x63 so the application uses 3 bytes of uninitialized data The eeprom segment where EEPROM variables are stored starts at location 0x0 The next available address in the eeprom segment is also location 0x0 so there aren t any EEPROM variables 7 10 6 Intel Hex Files We have a binary of the application but how do we get it into the processor Most if not all programmers will not accept a GNU executable as an input file so we need Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 122 to do a little more processing The next step is to extract portions of the binary and save the information into hex files The GNU utility that does this is called avr objcopy The ROM contents can be pulled from our project s binary and put into the file demo hex using the following command avr objcopy j text j data O ihex demo elf demo hex The resulting demo hex file contains 100000000AC062C061C060C05FCOOACOSDCOSCCOAL 100010005BC05AC059C011241FBECFEDCDBF4ECO2A 00020001F920F920FB60F9211242F938F939F93CD 00030008091600099270097A1F0019729F58091A0 00040006100909162
41. know that we are operating on an AT90S2313 chip This option specifies the device id and is matched up with the device of the same id in avrprog s configuration file usr local etc avrprog conf To list valid parts specify the v option The e option instructs avrprog to perform a chip erase before programming this is almost always necessary before programming the flash The m flash option indicates that we want to upload data into the flash memory while i main hex specifies the name of the input file The EEPROM is uploaded in the same way the only difference is that you would use m eeprom instead of m flash To use interactive mode use the t option avrprog p 2313 t avrprog AVR device initialized and ready to accept instructions avrprog Device signature 0xle9101 avrprog gt The command displays a list of valid commands avrprog gt gt gt gt Valid commands dump dump memory dump lt memtype gt lt addr gt lt N Bytes gt read alias for dump write write memory write lt memtype gt lt addr gt lt bil gt lt b2 gt lt bN gt erase perform a chip erase sig display device signature bytes part display the current part information send send a raw command send lt bl gt lt b2 gt lt b3 gt lt b4 gt help help 2 help quit quit Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 9 Using the GNU tools 105 Use the part comma
42. ld a number of the standard options might be of interest to AVR users e lname Locate the archive library named libname a and use it to resolve currently unresolved symbols from it The library is searched along a path that con sists of builtin pathname entries that have been specified at compile time e g usr local avr lib on Unix systems possibly extended by path name entries as specified by L options that must precede the 1 options on the command line e Lpath Additional location to look for archive libraries requested by 1 options Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 9 Using the GNU tools 111 e defsym symbol expr Define a global symbol symbol using expr as the value e M Print a linker map to stdout e Map mapfile Print a linker map to mapfile e cref Output a cross reference table to the map file in case Map is also present or to stdout e section start sectionname org Start section sectionname at absolute address org e Tbss org e Tdata org e Ttext org Start the bss data or text section at org respectively e T scriptfile Use scriptfile as the linker script replacing the default linker script De fault linker scripts are stored in a system specific location e g under usr local avr lib ldscripts on Unix systems and consist of the AVR architecture name avr2 through avr5 with the suffix x appended They de
43. ldi r24 0x08 8 b2 87 bb out 0x17 r24 23 extern inline void timer_enable_int unsigned char ints ifdef TIMSK outb TIMSK ints b4 80 e8 Idi r24 0x80 s 128 b6 89 bf out 0x39 r24 e Du timer_enable_int _BV TOIE1 enable interrupts sei b8 78 94 sei ba 08 95 ret Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 120 000000bc lt main gt int main void be cf ed ldi r28 OxDF p229 be dO e0 ldi r29 0x00 sie oO c0 de bf out Ox3e r29 7 62 624 cd bf out Ox3d r28 61 ioinit c4 ef df rcall 34 Oxa4 loop forever the interrupts are doing the rest for Note 6 c6 ff cf rjmp ree 7 Dxce 000000c8 lt __bad_interrupt gt c8 9b cf rjmp 202 7 0x0 7 10 5 Linker Map Files avr objdump is very useful but sometimes it s necessary to see information about the link that can only be generated by the linker A map file contains this information A map file is useful for monitoring the sizes of your code and data It also shows where modules are loaded and which modules were loaded from libraries It is yet another view of your application To get a map file I usually add Wl Map demo map to my link command Relink the application using the following command to generate demo map a portion of which is shown below avr gcc g mmcu at90s2313 W1 Map demo map o demo elf demo o Some points of interest in th
44. occurrence of the character val in the string src Here character means byte these functions do not work with wide or multi byte characters Returns The strrchr function returns a pointer to the matched character or NULL if the character is not found 5 13 2 22 char x strrev char string Reverse a string The strrev function reverses the order of the string Returns The strrev function returns a pointer to the beginning of the reversed string 5 13 2 23 char x strstr const char x s1 const char x s2 Locate a substring The strstr function finds the first occurrence of the substring s2 in the string s1 The terminating 10 characters are not compared Returns The strstr function returns a pointer to the beginning of the substring or NULL if the substring is not found Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 14 Interrupts and Signals 48 5 13 2 24 char x strupr char x string Convert a string to upper case The strupr function will convert a string to upper case Only the lower case alphabetic characters a z are converted Non alphabetic characters will not be changed Returns The strupr function returns a pointer to the converted string The pointer is the same as that passed in since the operation is perform in place 5 14 Interrupts and Signals 5 14 1 Detailed Description Note This discussion of interrupts and signals was taken from Ric
45. ori r20 OxF6 246 8e 6f 00 word Ox006f 2 00000090 lt bar gt 90 42 61 ori r20 0x12 18 92 72 00 word 0x0072 2 00000094 lt array gt 94 8c 00 word 0x008c 2 96 90 00 word 0x0090 gt foo is at addr Ox008c bar is at addr 0x0090 array is at addr 0x0094 Then in main we see this strcpy_P buf array 1 copy bar into buf de 60 e9 Irdi r22 0x90 144 eb 70 e0 Idi r23 0x00 0 e2 ce 01 movw r24 r28 el 01 96 adiw r24 0x01 1 e6 Oe 94 79 00 call Oxf2 The addr of bar 0x0090 is loaded into the r23 r22 pair which is the second parameter passed to strcpy_P The r25 r24 pair is the addr of buf Back to FAQ Index 7 3 16 How to use external RAM Well there is no universal answer to this question it depends on what the external RAM is going to be used for Basically the bit SRE SRAM enable in the MCUCR register needs to be set in order to enable the external memory interface Depending on the device to be used and the application details further registers affecting the external memory operation like XMCRA and XMCRB and or further bits in MCUCR might be configured Refer to the datasheet for details If the external RAM is going to be used to store the variables from the C program i e the data and or bss segment in that memory area it is essential to set up the external memory interface early during the device initialization so the initialization of these variable
46. pointed to by a pointer variable in one go without being interrupted by an interrupt routine or another thread in a multithreaded environment Note that we must use a pointer because the incremented value needs to be stored before interrupts are enabled Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 4 Inline Asm asm volatile olim n t ld r24 a0 n t minesr24 miki st a0 r24 mat sei n t e ptr r24 The compiler might produce the following code ELI ld r24 Z inc r24 st Z r24 sei One easy solution to avoid clobbering register r24 is to make use of the special tem porary register __tmp_reg__ defined by the compiler asm volatile tela A ld _ tmp_reg__ a0 MAMA Y inc __tmp_reg__ In E st a0 __tmp_reg__ Mn VET sei Mane e ptr The compiler is prepared to reload this register next time it uses it Another problem with the above code is that it should not be called in code sections where interrupts are disabled and should be kept disabled because it will enable interrupts at the end We may store the current status but then we need another register Again we can solve this without clobbering a fixed but let the compiler select it This could be done with the help of a local C variable uint8_t s asm volatile in 0 _SREG_ INN tr We ae n t ld _tmp_reg__ al AnNe inc __tmp_reg__ n t st Sal __tmp_reg__ mne
47. sign the negation of the result of the conversion unless the original non negated value would overflow in the latter case strtoul returns ULONG_MAX and errno is set to ERANGE If no conversion could be performed 0 is returned 5 12 4 27 char ultoa unsigned long int __val char _s int _radix The function ultoa converts the unsigned long integer value from val into an ASCII representation that will be stored under s The caller is responsible for providing suf ficient storage in s Conversion is done using the radix as base which may be a number between 2 binary conversion and up to 36 If radix is greater than 10 the next digit after 9 will be the letter a The ultoa function returns the pointer passed as s 5 12 4 28 char utoa unsigned int __ val char x _s int _radix The function utoa converts the unsigned integer value from val into an ASCII repre sentation that will be stored under s The caller is responsible for providing sufficient storage in s Conversion is done using the radix as base which may be a number between 2 binary conversion and up to 36 If radix is greater than 10 the next digit after 9 will be the letter a The utoa function returns the pointer passed as s 5 12 5 Variable Documentation 5 12 5 1 char _malloc_heap_end malloc tunable Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 41 5 12 5 2 char _malloc_h
48. the same local function In order to jump directly to another non local function the C library provides the setjmp and longjmp functions setjmp and longjmp are useful for dealing with errors and interrupts encountered in a low level subroutine of a program Note setimp and longjmp make programs hard to understand and maintain If possi ble an alternative should be used For a very detailed discussion of setimp longjmp see Chapter 7 of Advanced Pro gramming in the UNIX Environment by W Richard Stevens Example include lt setjmp h gt jmp_buf env int main void if setjmp env handle error main processing loop which calls foo some where Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 10 Setjmp and Longjmp 23 void foo void blah blah blah if err longjmp env 1 Functions e int setjmp jmp_buf __jmpb e void longjmp jmp buf _jmpb int _ret _ATTR_NORETURN_ 5 10 2 Function Documentation 5 10 2 1 void longjmp mp buf _jmpb int _ ret Non local jump to a saved stack context include lt setjmp h gt longjmp restores the environment saved by the last call of setjmp with the corre sponding _jmpb argument After longjmp is completed program execution contin ues as if the corresponding call of setjmp had just returned the value __ret Note longjmp cannot cause 0 to be returned If longjmp is invoked
49. to be wrapped into extern C This could certainly be fixed too e Exceptions are not supported Since exceptions are enabled by default in the C frontend they explicitly need to be turned off using fno exceptions in the compiler options Failing this the linker will complain about an undefined external reference to _gxx_personality_sj0 Constructors and destructors are supported though including global ones When programming C in space and runtime sensitive environments like microcon trollers extra care should be taken to avoid unwanted side effects of the C calling conventions like implied copy constructors that could be called upon function invo cation etc These things could easily add up into a considerable amount of time and program memory wasted Thus casual inspection of the generated assembler code using the S compiler option seems to be warranted Back to FAQ Index 7 3 8 Shouldn t I initialize all my variables Global and static variables are guaranteed to be initialized to O by the C standard avr gcc does this by placing the appropriate code into section init4 see The initN Sections With respect to the standard this sentence is somewhat simplified because the standard allows for machines where the actual bit pattern used differs from all bits Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 67 being 0 but for the AVR target i
50. while libraries are put at the end since they are to be used to resolve global symbols that are still unresolved at this point Specific linker flags can be passed from the C compiler command line using the W1 compiler option see above This option requires that there be no spaces in the appended linker option while some of the linker options above like Map or defsym would require a space In these situations the space can be replaced by an equal sign as well For example the following command line can be used to compile foo c into an executable and also produce a link map that contains a cross reference list in the file foo map avr gcc 0 o foo out Wl Map fo0 map Wl cref foo c Alternatively a comma as a placeholder will be replaced by a space before passing the option to the linker So for a device with external SRAM the following command line would cause the linker to place the data segment at address 0x2000 in the SRAM avr gcc mmcu atmegal28 o foo out W1 Tdata 0x802000 See the explanation of the data section for why 0x800000 needs to be added to the ac tual value Note that unless a minit stack option has been given when compiling the C source file that contains the function main the stack will still remain in inter nal RAM through the symbol __st ack that is provided by the run time startup code This is probably a good idea anyway since internal RAM access is faster and even required for som
51. 000 00000000 O00007cc 2 0 CONTENTS READONLY DEBUGGING Disassembly of section text 00000000 lt __vectors gt 0 Oa co rjmp 20 Ox16 Za 62 c0 rjmp 196 Oxc8 4 61 co rjmp 194 Oxc8 6 60 co rjmp 192 7 0xc8 8 5f co rjmp 190 Oxc8 a Oa co rjmp 20 0x20 ce 5d co rjmp 186 Oxc8 e 5c co rjmp 184 Oxc8 0 5b co rjmp 182 0xc8 25 5a c0 rjmp 180 Oxc8 4 59 c0 rjmp 178 Oxc8 00000016 lt __ctors_end gt 6 11 24 eor rtl ri 8 If be out Ox3f rl 7 163 ass cf ed ldi r28 OxDF y 243 c cd bf out Ox3d r28 61 e de c0 rjmp 156 Oxbc Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 118 00000020 lt __vector_5 gt volatile uint16_t pwm Note 1 volatile uint8_t direction SIGNAL SIG_OVERFLOW1 Note 2 20 1f 92 push rl 22 Of 92 push r0 24 Of b6 in 0 0x3 26 Of 92 push ro 28 11 24 eor Fl l 2a 2f 93 push L8 208 8f 93 push r24 2e 9f 93 push r25 switch direction Note 3 30 80 91 60 00 lds r24 0x0060 34 99 27 eor r25 r25 36 00 97 sbiw r24 0x00 38 al 0 breq 40 3a 01 97 sbiw r24 0x01 307 29 5 brne 74 case UP if pwm 1023 direction DOWN break case DOWN if pwm 0 3e 80 91 61 00 lds r24 0x0061 42 90 91 62 00 lds r25 0x0062 46 01 97 sbiw r24 0x01 48 90 93 62 00 sts 0x0062 r25 4c 80 93 61 00 sts 0x00 61 r24 50 80 91 61 00 lds r24
52. 00019790936200809361003B 100050008091610090916200892BB1F41092600050 000600013C08091610090916200019690936200AC 100070008093610080916100909162008F5F934056 1000800019F481E08093600080916100909162009A 00090009BBD8ABD9F918F912F910F900FBEOF90A6 000A0001F90189583E88FBD81E08EBDIBBCIABCE4 1000B00088E087BB80E889BF78940895CFEDDOEODI 0A00COOODEBFCDBFEFDFFFCF9BCF07 00000001FF The j option indicates that we want the information from the text and data segment extracted If we specify the EEPROM segment we can generate a hex file that can be used to program the EEPROM avr objcopy j eeprom O ihex demo elf demo_eeprom hex The resulting demo_eeprom hex file contains 00000001FF which is an empty hex file which is expected since we didn t define any EEPROM variables 7 10 7 Make Build the Project Rather than type these commands over and over they can all be placed in a make file To build the demo project using make save the following in a file called Makefile Note This Makefile can only be used as input for the GNU version of make Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project 123 PRG demo OBJ demo o MCU_TARGET at90s2313 OPTIMIZE 02 DEFS LIBS You should not have to change anything below here CC avr gcc Override is only needed by avr lib build system override CFLAGS g Wall OPTIMIZE mmcu MCU_TARGET DEFS override LDFLAGS W1 M
53. 0x33 The compiler s choice of which method to use when actually accessing the IO port is completely independent of the way the programmer chooses to write the code So even if the programmer uses the memory mapped paradigm and writes PORTA 0x40 the compiler can optimize this into the use of an sbi instruction of course provided the target address is within the allowable range for this instruction and the right hand side of the expression is a constant value known at compile time The advantage of using the memory mapped paradigm in C programs is that it makes the programs more portable to other C compilers for the AVR platform Some people might also feel that this is more readable For example the following two statements would be equivalent Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 15 Special function registers 54 outb DDRD inb DDRD LCDBITS DDRD amp LCDBITS The generated code is identical for both Whitout optimization the compiler strictly generates code following the memory mapped paradigm while with optimization turned on code is generated using the faster and smaller in out MCU instructions Note that special care must be taken when accessing some of the 16 bit timer IO reg isters where access from both the main program and within an interrupt context can happen See Why do some 16 bit timer registers sometimes get trashed Modules e Additional notes from lt av
54. 2 4 26 unsigned long strtoul const char _nptr char xx __endptr int __base The strtoul function converts the string in npt r to an unsigned long value The con version is done according to the given base which must be between 2 and 36 inclusive or be the special value 0 The string may begin with an arbitrary amount of white space as determined by iss pace followed by a single optional or sign If base is zero or 16 the string may then include a 0x prefix and the number will be read in base 16 otherwise a Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 40 zero base is taken as 10 decimal unless the next character is 0 in which case it is taken as 8 octal The remainder of the string is converted to an unsigned long value in the obvious manner stopping at the first character which is not a valid digit in the given base In bases above 10 the letter A in either upper or lower case represents 10 B represents 11 and so forth with Z representing 35 If endptr is not NULL strtoul stores the address of the first invalid character in endpt r If there were no digits at all however strtoul stores the original value of nptr in endptr Thus if xnptr is not 0 but endpt r is 0 on return the entire string was valid The strtoul function return either the result of the conversion or if there was a lead ing minus
55. 2 for avr libe by Doxygen CONTENTS ii 5 8 59 5 14 5 7 1 Detailed Description 2 e e s este cevre deste 17 57 2 Define Documentation e se a 02 8 2264 a ka 17 teger Dypes epa 17 3 8 1 Detailed Description lt soe e a o ee eee 17 Mathematics s ooo ee ee SSS ka ki a Ge Raed 18 39 1 Detailed Descripfion gt e cce za a 18 5 9 2 Define Documentation e se 6 64 eere eses 19 5 9 3 Function Do umentatiofi s s i lt lt 19 semp and LongjmpP 25 e opa do ee eR e e a e 22 510 1 Detailed Description 4 0 2 2 sa cosacos oea aae e 22 5 10 2 Function Documentation oaoa oaa 23 alandani TO TACI INES o pe a eke ee Se SO o 24 gt ILI Detaled Descripnan ss cos atoae nea eie dies e dto 24 5 11 2 Define Documentation r spss e a e ee ea 26 5 11 3 Function Documentation a 27 General MOLES lt a ae a Se Re Ee GS eS 31 2121 Detaled Description 2 2264 6 2 he a eR es 31 512 2 Define Documentation e e a s eate ko ee eS 33 5 12 3 Typedef Doc mentati n lt a a semesta 34 5 12 4 Function Documentation 0 24 44805 ers 34 5 12 5 Variable Documentation 40 SES Ma m m m m m mam ee E 41 S131 Detailed Description gt o cce e csee raras i Rs 41 513 2 Function Documentation lt s sac 406556245 400445 42 Int rrupts and Signals a naa A 6 48 5 14 1 Detailed Description 48 5 14 2 Define Documentation 51 5 14 3 Function Documenta
56. 4 31 2002 for avr libe by Doxygen INDEX 129 EEPROM handling 4 eeprom_is_ready avr_eeprom 5 eeprom_rb avr_eeprom 5 eeprom_read_block avr_eeprom 6 eeprom_read_byte avr_eeprom 6 eeprom_read_word avr_eeprom 6 eeprom_rw avr_eeprom 5 eeprom_wb avr_eeprom 5 eeprom_write_byte avr_eeprom 6 enable_external_int avr_interrupts 52 EOF avr_stdio 26 ERANGE avr_errno 16 exit avr_stdlib 35 exp avr_math 19 fabs avr_math 19 FAQ 62 fclose avr_stdio 27 fdevopen avr_stdio 27 FILE avr_stdio 26 floor avr_math 19 fmod avr_math 19 fprintf avr_stdio 27 fprintf_P avr_stdio 27 fputc avr_stdio 27 free avr_stdlib 35 frexp avr_math 19 General utilities 31 inb avr_sfr 55 inp avr_sfr 55 installation 96 installation avarice 102 installation avr libc 100 installation avrprog 101 installation binutils 98 installation gcc 99 Installation gdb 101 installation simulavr 102 installation uisp 101 Integer Types 17 INTERRUPT avr_interrupts 51 Interrupts and Signals 47 inverse avr_math 20 inw avr_sfr 55 isalnum ctype 14 isalpha ctype 14 isascli ctype 14 isblank ctype 14 iscntrl ctype 15 isdigit ctype 15 isgraph ctype 15 islower ctype 15 isprint Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen INDEX 130 ctype 15 ispunct ctype 15 isspace ctype 15 isupper ctype 15 isxdigit ctype 1
57. 5 itoa avr_stdlib 35 labs avr_stdlib 35 Idexp avr_math 20 Idiv avr_stdlib 36 ldiv_t 57 log avr_math 20 log10 avr_math 20 longjmp setimp 22 loop_until_bit_is_clear avr_sfr 55 loop_until_bit_is_set avr_sfr 55 Itoa avr_stdlib 36 M_PI avr_math 18 M_SQRT2 avr_math 18 malloc avr_stdlib 36 Mathematics 17 memccpy avr_string 41 memchr avr_string 41 memcmp avr_string 41 memcpy avr_string 42 memcpy_P avr_pgmspace 8 memmove avr_string 42 memset avr_string 42 modf avr_math 20 outb avr_sfr 56 outp avr_sfr 56 outw avr_sfr 56 PGM_P avr_pgmspace 8 PGM_VOID_P avr_pgmspace 8 pow avr_math 20 Power Management and Sleep Modes 12 printf avr_stdio 27 printf_P avr_stdio 28 Program Space String Utilities 7 PSTR avr_pgmspace 8 pute avr_stdio 26 putchar avr_stdio 26 qsort avr_stdlib 36 rand avr_stdlib 36 RAND_MAX avr_stdlib 33 rand_r avr_stdlib 37 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen INDEX 131 random sqrt avr_stdlib 37 avr_math 21 RANDOM MAX square avr_stdlib 33 avr_math 21 random_r srand avr_stdlib 37 avr_stdlib 37 srandom sbi avr_sfr 56 sei avr_interrupts 51 set_sleep_mode avr_sleep 13 setjmp longjmp 22 setjmp 23 Setjmp and Longjmp 21 SIGNAL avr_interrupts 51 sin avr_math 20 sinh avr_math 21 sleep_mode avr_sleep 13 SLEEP MODE_ADC avr_sleep 13 SLEEP_MODE_EX
58. C for the AVR target Warning You must install avr binutils and make sure your path is set properly before in stalling avr gcc The steps to build avr gcc are essentially same as for binutils bunzip2 c gcc lt version gt tar bz2 tar xf cd gcc lt version gt mkdir obj avr cd obj avr noninnn wn configure prefix PREFIX target avr enable languages c ct disable nls make make install ur To save your self some download time you can alternatively download only the gcc core lt version gt tar bz2 and gcc c lt version gt tar bz2 parts of the gcc Also if you don t need C support you only need the core part and should only enable the C language support Note Early versions of these tools did not support C Note The stdc libs are not included with C for AVR due to the size limitations of the devices Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 7 Installing the GNU Tool Chain 101 7 7 5 AVR Libc Warning You must install avr binutils avr gcc and make sure your path is set properly before installing avr libc Note If you have obtained the latest avr libc from cvs you will have to run the reconf script before using either of the build methods described below To build and install avr libc gunzip c avr libc lt version gt tar gz cd avr libc lt version gt doconf domake cd build make install nnnnn WH Note The doconf script will
59. FFFFFFF char x itoa int __val char __s int __radix char x ltoa long int __val char __s int _radix char x utoa unsigned int __val char __s int _radix char ultoa unsigned long int __val char x__s int __radix long random void void srandom unsigned long __seed long random r unsigned long xctx Conversion functions for double arguments Note that these functions are not located in the default library 1ibc a but in the mathematical library 1ibm a So when linking the application the 1m option needs to be specified define DTOSTR_ALWAYS_SIGN 0x01 define DTOSTR_PLUS_SIGN 0x02 define DTOSTR_UPPERCASE 0x04 char x dtostre double __val char x__s unsigned char __prec unsigned char __ flags e char x dtostrf double __val char width char __prec char __s Defines e define RAND_MAX 0x7FFF Typedefs e typedef int _ compar_fn_t const void const void x Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 12 General utilities 33 Functions _inline__ void abort void _ATTR_NORETURN__ int abs int _1 _ATTR_CONST__ long labs long _i _ATTR_CONST__ void x bsearch const void __key const void __base size_t _nmemb size_t __size int __compar const void const void e div_t div int _num int _denom _asm__ __divmodhi4 _ATTR CONST__ e ldivt ldiv long _num long _denom __asm_ _divmodsi4 _ATTR_ CONST_ void qsort void __base
60. For example if you never use the variable value in the remaining part of the C program the compiler will most likely remove your code unless you switched off optimization To avoid this you can add the volatile attribute to the asm statement asm volatile in 0 1 r value I PORTD The last part of the asm instruction the clobber list is mainly used to tell the compiler about modifications done by the assembler code This part may be omitted all other parts are required but may be left empty If your assembler routine won t use any input or output operand two colons must still follow the assembler code string A good example is a simple statement to disable interrupts asm volatile cli 7 4 2 Assembler Code You can use the same assembler instruction mnemonics as you d use with any other AVR assembler And you can write as many assembler statements into one code string as you like and your flash memory is able to hold Note The available assembler directives vary from one assembler to another Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 4 Inline Asm To make it more readable you should put each statement on a seperate line asm volatile nop n t nop n t nop n vt aopinkt Dt The linefeed and tab characters will make the assembler listing generated by the com piler more readable It may look a bit odd for the first time but that s the way the compiler creat
61. How do I trace an assembler file in avr gdb When using the g compiler option avr gcc only generates line number and other debug information for C and C files that pass the compiler Functions that don t have line number information will be completely skipped by a single step command in gdb This includes functions linked from a standard library but by default also functions defined in an assembler source file since the g compiler switch does not apply to the assembler So in order to debug an assembler input file possibly one that has to be passed through the C preprocessor it s the assembler that needs to be told to include line number information into the output file Other debug information like data types and variable allocation cannot be generated since unlike a compiler the assembler basically doesn t know about this This is done using the GNU assembler option gstabs Example avr as mmcu atmegal28 gstabs o foo o foo s When the assembler is not called directly but through the C compiler frontend either implicitly by passing a source file ending in S or explicitly using x assembler with cpp the compiler frontend needs to be told to pass the gstabs option Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 70 down to the assembler This is done using Wa gstabs Please take care to only pass this option when compiling an assembler input file
62. LEEP MODE PWR _ SAVE SMO SM1 e define SLEEP_MODE_STANDBY SMI SM2 e define SLEEP_MODE_EXT_STANDBY SMO SMI SM2 Sleep Functions e void set_sleep_mode uint8_t mode e void sleep_mode void 5 5 2 Define Documentation 5 5 2 1 Hdefine SLEEP MODE_ADC SM0 ADC Noise Reduction Mode 5 5 2 2 define SLEEP_MODE_EXT_STANDBY SMO SMI SM2 Extended Standby Mode Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 5 6 Character Operations 14 5 5 2 3 define SLEEP MODE IDLE 0 Idle mode 5 5 2 4 define SLEEP_MODE PWR DOWN SM1 Power Down Mode 5 5 2 5 define SLEEP MODE PWR SAVE SMO SM1 Power Save Mode 5 5 2 6 define SLEEP_MODE_STANDBY SMI SM2 Standby Mode 5 5 3 Function Documentation 5 5 3 1 void set_sleep_mode uint8_t mode Set the bits in the MCUCR to select a sleep mode 5 5 3 2 void sleep_mode void Put the device in sleep mode How the device is brought out of sleep mode depends on the specific mode selected with the set_sleep_mode function See the data sheet for your device for more details 5 6 Character Operations 5 6 1 Detailed Description These functions perform various operations on characters tinclude lt ctype h gt Character classification routines These functions perform character classification They return true or false status de pending whether the character passed to the function falls into the function s classifi cation i e isdigit re
63. LWAYS_SIGN 32 DTOSTR_PLUS_SIGN 32 DTOSTR_UPPERCASE 32 dtostre 34 dtostrf 35 exit 35 free 35 itoa 35 labs 35 Idiv 36 ltoa 36 malloc 36 qsort 36 rand 36 RAND_MAX 33 rand_r 37 random 37 RANDOM_MAX 33 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen INDEX 128 random_r 37 srand 37 srandom 37 strtod 37 strtol 38 strtoul 38 ultoa 39 utoa 39 avr_string memccpy 41 memchr 41 memcmp 41 memcpy 42 memmove 42 memset 42 strcasecmp 42 strcat 43 strchr 43 stremp 43 strepy 43 stricat 44 stricpy 44 strlen 44 strlwr 44 strncasecmp 45 strncat 45 strncmp 45 strncpy 45 strnlen 46 strrchr 46 strrev 46 strstr 46 strupr 47 avrprog usage 102 bit_is_clear avr_sfr 54 bit_is_set avr_sfr 54 bsearch avr_stdlib 34 BV avr_sfr 54 calloc avr_stdlib 34 cbi avr_sfr 55 ceil avr_math 19 Character Operations 13 cli avr_interrupts 51 cos avr_math 19 cosh avr_math 19 ctype isalnum 14 isalpha 14 isascii 14 isblank 14 iscntrl 15 isdigit 15 isgraph 15 islower 15 isprint 15 ispunct 15 isspace 15 isupper 15 isxdigit 15 toascii 15 tolower 16 toupper 16 disassembling 116 div avr_stdlib 34 div_t 57 DTOSTR_ALWAYS_SIGN avr_stdlib 32 DTOSTR_PLUS_SIGN avr_stdlib 32 DTOSTR_UPPERCASE avr_stdlib 32 dtostre avr_stdlib 34 dtostrf avr_stdlib 35 EDOM avr_errno 16 Generated on Mon Dec 9 22 1
64. T_ double fabs double __x _ATTR_CONST_ double fmod double __x double __y _ATTR_CONST_ double modf double __value double x__iptr double sin double __x _ATTR_CONST_ double sqrt double __x _ATTR_CONST__ double tan double __x _ATTR_CONST__ double floor double __x _ATTR_CONST_ double ceil double __x _ATTR_CONST__ double frexp double __value int __exp double Idexp double __x int _exp _ATTR_CONST__ double exp double _x _ATTR CONST__ double cosh double __x _ATTR_CONST__ double sinh double __x _ATTR_CONST__ double tanh double __x _ATTR_CONST__ double acos double __x _ATTR_CONST__ double asin double __x _ATTR_CONST__ double atan double __x _ATTR_CONST__ Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 9 Mathematics 19 double atan2 double __y double _x _ATTR CONST__ double log double __x _ATTR_CONST__ double log10 double __x _ATTR_CONST_ double pow double __x double __y _ATTR_CONST__ double square double x _ATTR_CONST_ double inverse double __ATTR_CONST_ 5 9 2 Define Documentation 5 9 2 1 define M_PI 3 141592653589793238462643 The constant pi 5 9 2 2 define M SQRT2 1 4142135623730950488016887 The square root of 2 5 9 3 Function Documentation 5 9 3 1 double acos double _x The acos function computes the principal value of the arc cosine of x The returned value is in the range 0 pi radians A domain error occurs for argu
65. T_STANDBY avr_sleep 13 SLEEP MODE IDLE avr_sleep 13 SLEEP_MODE_PWR_DOWN avr_sleep 13 SLEEP_MODE_PWR_SAVE avr_sleep 13 SLEEP_MODE_STANDBY avr_sleep 13 snprintf avr_stdio 28 snprintf_P avr_stdio 28 Special function registers 52 sprintf avr_stdio 28 sprintf_P avr_stdio 28 avr_stdlib 37 Standard IO facilities 23 stderr avr_stdio 26 stdin avr_stdio 26 stdout avr_stdio 26 strcasecmp avr_string 42 strcasecmp_P avr_pgmspace 8 strcat avr_string 43 strcat_P avr_pgmspace 9 strchr avr_string 43 strcmp avr_string 43 stremp P avr_pgmspace 9 strcpy avr_string 43 strcpy P avr _pgmspace 9 Strings 40 strlcat avr_string 44 strlcpy avr_string 44 strlen avr_string 44 strlen_P avr_pgmspace 9 strlwr avr_string 44 strncasecmp avr_string 45 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen INDEX 132 strncasecmp_P avr_pgmspace 10 strncat avr_string 45 ultoa avr_stdlib 39 utoa avr_stdlib 39 strncmp avr_string 45 vfprintf strnemp_P avr_stdio 28 avr_pgmspace 10 strncpy avr_string 45 strncpy_P avr_pgmspace 10 strnlen avr_string 46 strrchr avr_string 46 strrev avr_string 46 strstr avr_string 46 strtod avr_stdlib 37 strtol avr_stdlib 38 strtoul avr_stdlib 38 strupr avr_string 47 supported devices 1 System Errors errno 16 tan avr_math 21 tanh avr_math 21 timer_enable_int avr_interrupts
66. age see the gcc user manual The latest version of the gcc manual is always available here http gcc gnu org onlinedocs 7 5 Using malloc 7 5 1 Introduction On a simple device like a microcontroller implementing dynamic memory allocation 1s quite a challenge Many of the devices that are possible targets of avr libc have a minimal amount of RAM The smallest parts supported by the C environment come with 128 bytes of RAM This needs to be shared between initialized and uninitialized variables sections data and bss the dynamic memory allocator and the stack that is used for calling subroutines and storing local automatic variables Also unlike larger architectures there is no hardware supported memory management which could help in separating the mentioned RAM regions from being overwritten by each other The standard RAM layout is to place data variables first from the beginning of the internal RAM followed by bss The stack is started from the top of internal RAM growing downwards The so called heap available for the dynamic memory allocator will be placed beyond the end of bss Thus there s no risk that dynamic memory will ever collide with the RAM variables unless there were bugs in the implementation of the allocator There is still a risk that the heap and stack could collide if there are large requirements for either dynamic memory or stack space The former can even happen 1f the allocations aren t all tha
67. aint in that case is d On the other hand if you use the constraint M the compiler will make sure that you don t pass anything else but an 8 bit value Later on we will see how to pass multibyte expression results to the assembler code The following table shows all AVR assembler mnemonics which require operands and the related contraints Because of the improper constraint definitions in version 3 3 they aren t strict enough There is for example no constraint which restricts integer Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 81 constants to the range 0 to 7 for bit set and bit clear operations Mnemonic Constraints Mnemonic Constraints adc rr add rr adiw wl and rr andi d M asr r belr I bld rI brbc Llabel brbs Llabel bset I bst rI cbi LI cbr dl com r cp rr cpe rr cpi d M cpse rr dec r elpm tz eor rr in rI inc r ld re ldd r b ldi d M lds r label lpm t z Is r Isr r mov rr mul rr neg r or rr ori d M out Ir pop r push r rol r ror r sbc rr sbci d M sbi LI sbic LI sbiw w I sbr d M sbre rI sbrs rn ser d st er std b r sts label r sub rr subi d M swap r Constraint characters may be prepended by a single constraint modifier Contraints without a modifier specify read only operands Modifiers are Modifier Specifies Write only operand usually used f
68. ap PRG map OBJCOPY avr objcopy OBJDUMP avr objdump all PRG elf lst text eeprom S PRG elf 0BJ CC CFLAGS LDFLAGS o LIBS clean rm rf o S PRG elf eps png pdf bak rm rf lst map EXTRA_CLEAN_FILES lst S PRG lst lst elf OBIJDUMP h S lt gt 0 Rules for building the text rom images text hex bin srec hex PRG hex bin PRG bin srec PRG srec hex elf S OBJCOPY j text j data O ihex lt S srec elf S OBJCOPY j text j data O srec lt ole bin elf S OBJCOPY j text j data O binary lt Se Rules for building the eeprom rom images eeprom ehex ebin esrec Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 11 Deprecated List 124 ehex PRG _eeprom hex ebin PRG _eeprom bin esrec PRG _eeprom srec o _eeprom hex elf S OBJCOPY j eeprom change section 1ma _eeprom srec elf S OBJCOPY j eeprom change section 1ma _eeprom bin elf S OBJCOPY j eeprom change section 1ma eeprom 0 0 eeprom 0 0O eeprom 0 0O Every thing below here is used by avr libc s build system and by the casual user FIG2DEV fig2dev EXTRA_CLEAN_FILES hex bin srec dox eps png pdf eps PRG eps png PRG png pdf PRG pdf eps fig S FIG2DEV L eps lt e S pdt fig S FIG2DEV L pdf lt S png
69. are defined as memory addresses so SREG is 0x5f and if code size and speed are not important and you don t like the ugly if above you can always use Ids sts to access them But this will not work if _SFR_OFFSET 0x20 so use a different macro defined only if __SFR_OFF SET 0x20 for safety sts _SFR_ADDR SPMCR r24 In C programs all 3 combinations of _SFR_ASM_COMPAT and __SFR_OFFSET are supported the _ SFR_ADDR SPMCR macro can be used to get the address of the SPMCR register 0x57 or 0x68 depending on device Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 5 5 Power Management and Sleep Modes 13 The old inp outp macros are still supported but not recommended to use in new code The order of outp arguments is confusing 5 5 Power Management and Sleep Modes 5 5 1 Detailed Description include lt avr sleep h gt Use of the SLEEP instruction can allow your application to reduce it s power com sumption considerably AVR devices can be put into different sleep modes by chang ing the SMn bits of the MCU Control Register MCUCR Refer to the datasheet for the details relating to the device you are using Sleep Modes Note FIXME TRoth 2002 11 01 These modes were taken from the mega128 datasheet and might not be applicable or correct for all devices e define SLEEP MODE IDLE 0 e define SLEEP MODE_ADC SMO e define SLEEP MODE_PWR_DOWN SM1 e define S
70. arious regions has not been made adjacent in this example so there are holes below and above the heap in external RAM that remain completely unaccessible by regular variables or dynamic memory allocations shown in light bisque color in the picture below Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 5 Using malloc 91 avr gcc Wl defsym __heap_start 0x802000 defsym __heap_end 0x803fff giga RAM Mu 0x0100 Ox10FF 0x1100 0x2000 Ox3FFF OxFFFF on board RAM et __malloc_heap_end __heap_end et brkval _ bss end _ malloc_heap_start __heap_start _ data_end __bss start data start Figure 3 Internal RAM variables and stack external RAM heap If _malloc_heap_endis 0 the allocator attempts to detect the bottom of stack in or der to prevent a stack heap collision when extending the actual size of the heap to gain more space for dynamic memory It will not try to go beyond the current stack limit decreased by _malloc_margin bytes Thus all possible stack frames of interrupt routines that could interrupt the current function plus all further nested function calls must not require more stack space or they will risk colliding with the data segment The default value of _malloc_margin is set to 32 7 5 4 Implementation details Dynamic memory allocation requests will be returned with a two byte header prepended that records the size of the allocation This
71. at src is a pointer to a string in program space Returns The strcpy_P function returns a pointer to the destination string dest 5 3 3 7 size_t strlen_P PGM_P src The strlen_P function is similar to strlen except that src is a pointer to a string in program space Returns The strlen function returns the number of characters in src 5 3 3 8 int strncasecmp_P const char x s1 PGM_P s2 size_t n Compare two strings ignoring case The strncasecmp_P function is similar to strcasecmp_P except it only compares the first n characters of s1 Parameters si A pointer to a string in the devices SRAM s2 A pointer to a string in the devices Flash Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 4 Additional notes from lt avr sfr_defs h gt 11 n The maximum number of bytes to compare Returns The strcasecmp_P function returns an integer less than equal to or greater than zero if sl or the first n bytes thereof is found respectively to be less than to match or be greater than s2 5 3 3 9 int strncmp_P const char x s1 PGM P s2 size_t n The strncmp_P function is similar to stremp_P except it only compares the first at most n characters of sl and s2 Returns The strncmp_P function returns an integer less than equal to or greater than zero if sl or the first n bytes thereof is found respectively to be less than to match or be greater than s2 5 3 3 10 char
72. avr libc Reference Manual 20021209cvs Generated by Doxygen 1 2 18 Mon Dec 9 22 14 26 2002 CONTENTS Contents 1 AVR Libe 1 1 0 1 Supported Devices 5 5 sor tome 2 2 avr libc Module Index 3 2 1 avelibe Modules o o eee ee ae 3 3 avr libc Data Structure Index 3 1 avelibc Data Structures o o a 4 4 avr libc Page Index 4 ayrlbe Related Pages 2 oz 6 odo ce ee RRS 4 5 avr libc Module Documentation 5 31 EEPROM handling epes 6405 44 ae Se ee s Re 2 SLI Detailed Description gt e s aka o ee u 5 5 1 2 Deine Documentation e Se ao e 6 513 Fun tion Documentation s ce sp passte aas 6 5 2 AVR device specific IO definitions 7 5 3 Program Space String Utilities 8 5 314 Detailed D scription gt lt e cs 4 6k bee ew eS 8 32 Deine Documentation ss oe os css BAe 8 333 Pincom Documentation s s se esp 642 5 e pee amp 9 5 4 Additional notes from lt avr sfrdefsh gt 11 5 5 Power Management and Sleep Modes 13 5 5 1 Detailed Description cos mes koe eR ee eR o 13 55 2 Define Documentation e s eee eee ee ees 13 5 5 3 Fim ton Documentation o s sa apia raaa 14 30 Character Operations o lt lt spoe ad ao dE 14 70 1 Detaled Description lt s coe sse 6 en e ds 14 5 6 2 Function Documentation e eee 15 37 System Errors eno sos se a o a AR 17 Generated on Mon Dec 9 22 14 31 200
73. ccount for the data initialization space added to the text section so in order to know how much flash the final program will consume one needs to add the values for both text and data but not bss while the amount of pre allocated SRAM is the sum of data and bss Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 6 Memory Sections 93 7 6 2 The data Section This section contains static data which was defined in your code Things like the fol lowing would end up in data char err_str Your program has died a horrible death struct point pt 1 1 It is possible to tell the linker the SRAM address of the beginning of the data section This is accomplished by adding W1 Tdata addr to the avr gcc command used to the link your program Not that addr must be offset by adding 0x800000 the to real SRAM address so that the linker knows that the address is in the SRAM memory space Thus if you want the data section to start at 0x1100 pass 0x801100 at the address to the linker offset explained Note When usingmalloc in the application which could even happen inside library calls additional adjustments are required 7 6 3 The bss Section Uninitialized global or static variables end up in the bss section 7 6 4 The eeprom Section This is where eeprom variables are stored 7 6 5 The noinit Section This sections is a part of the bss section What makes the noinit section sp
74. constant 2 L Integer constant 0 1 Lower registers rO to r15 M 8 bit integer constant 0 to 255 N Integer constant 1 O Integer constant 8 16 24 P Integer constant 1 q Stack pointer register SPH SPL r Any register rO to 131 t Temporary register r0 W Special upper register 124 r26 r28 r30 pairs x Pointer register pair X X 127 126 y Pointer register pair Y y 129 128 Z Pointer register pair Z z r31 r30 These definitions seem not to fit properly to the AVR instruction set The author s as sumption is that this part of the compiler has never been really finished in this version but that assumption may be wrong The selection of the proper contraint depends on the range of the constants or registers which must be acceptable to the AVR instruction they are used with The C compiler doesn t check any line of your assembler code But it is able to check the constraint against your C expression However if you specify the wrong constraints then the compiler may silently pass wrong code to the assem bler And of course the assembler will fail with some cryptic output or internal errors For example if you specify the constraint r and you are using this register with an ori instruction in your assembler code then the compiler may select any register This will fail if the compiler chooses r2 to r15 It will never choose r0 or r1 because these are uses for special purposes That s why the correct constr
75. constant in an asm statement 7 3 11 Why does the PC randomly jump around when single stepping 7 3 12 How do I trace an assembler file in avr gdb 7 3 13 How do I pass an IO port as a parameter to a function 7 3 14 What registers are used by the C compiler 7 3 15 How do I put an array of strings completely in ROM 7 3 16 How to use external RAM lin 4 0 segra Bh beech ee RASS a 68 69 71 72 74 75 76 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen CONTENTS iv Ta 7 6 Tl TA1 GCCasm Statement gt o orev o eene drte 77 Tene o ge 6 cn da ea Gee BEES He ORS 78 7 4 3 Input and Output Operands o o 79 TAA Gi i e 83 TAS Assembler Macros lt ociosos e es 85 TAG Coto FUCHS e i ca ee ee Os eee ee Rs 86 7 4 7 C Names Used in AssemblerCode 87 PAS LIBE cco a Ga ae A 88 iga eee 88 Fowl o co M e e ae 88 7 5 2 Internal vs external RAM 89 tada Tomables formallac o eepe 65 o ge aaa 89 Yoo Implementation details ocio cross pd vn HA Ae 91 Memory Scions bn kk ek A a ke eae S 92 761 The text Section cocoa a ee 92 702 Te daty SECON ss s oe a GS Rha ee Ce G 93 ADA The Ds Seccion gc ak EE Re A 93 7 64 The sepiorn Section lt ee esre cete ees 93 TOS The MOUNT SECHNON ee 93 TOG The iN Seciions s pos 454 0455 pE RG 94 7 6 7 The HniN Sections coco ocres mms rt uh 95 7 6 8
76. cumentation 5 12 4 1 _ inline _ void abort void The abort function causes abnormal program termination to occur In the limited AVR environment execution is effectively halted by entering an infinite loop 5 12 4 2 int abs int _1 The abs function computes the absolute value of the integer i Note The abs and labs functions are builtins of gcc 5 12 4 3 _inline__ int atoi const char x _nptr The atoi function converts the initial portion of the string pointed to by nptr to integer representation It is equivalent to int strtol nptr char NULL 10 5 12 4 4 _ inline _ long atol const char __nptr The atol function converts the initial portion of the string pointed to by npt r to long integer representation It is equivalent to strtol nptr char NULL 10 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 35 5 12 4 5 void bsearch const void _key const void _base size_t _nmemb size_t __size int x _compar const void x const void The bsearch function searches an array of nmemb objects the initial member of which is pointed to by base for a member that matches the object pointed to by key The size of each member of the array is specified by size The contents of the array should be in ascending sorted order according to the compar ison function referenced by compar The compar routine is expected to have two arguments wh
77. d Use outb in new programs Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 6 avr libc Data Structure Documentation 57 5 15 2 13 define outw sfr val SFR_WORD sfr val include lt avr io h gt Write the 16 bit value val to IO register pair sfr Care will be taken to write the lower register first When used to update 16 bit registers where the timing is critical and the operation can be interrupted the programmer is the responsible for disabling interrupts before accessing the register pair Note The order of the arguments was switched in older versions of avr libc versions lt 20020203 5 15 2 14 define sbi sfr bit SFR BYTE sfr BV bit include lt avr io h gt Set bit bit in IO register sfr 6 avr libc Data Structure Documentation 6 1 div_t Struct Reference 6 1 1 Detailed Description Result type for function div The documentation for this struct was generated from the following file e stdlib h 6 2 Idiv_t Struct Reference 6 2 1 Detailed Description Result type for function Idiv The documentation for this struct was generated from the following file e stdlib h Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 avr libc Page Documentation 58 7 avr libc Page Documentation 7 1 Acknowledgments This document tries to tie together the labors of a large group of people Without these individuals efforts we wouldn t have a
78. d be to specify the full path to the 1ibm a file at the same place on the command line i e after all the object files o However since this re quires knowledge of where the build system will exactly find those library files this is deprecated for system libraries Back to FAQ Index 7 3 4 How to permanently bind a variable to a register This can be done with register unsigned char counter asm r3 See C Names Used in Assembler Code for more details Back to FAQ Index 7 3 5 How to modify MCUCR or WDTCR early The method of early initialization MCUCR WDTCR or anything else is different and more flexible in the current version Basically write a small assembler file which looks like this begin xram S include lt avr io h gt section init1l ax progbits idi r16 _BV SRE _BV SRW out _SFR_IO_ADDR MCUCR r16 end xram S Assemble it link the resulting xram o with other files in your program and this piece of code will be inserted in initialization code which is run right after reset See the linker script for comments about the new init WN sections which one to use etc Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 65 The advantage of this method is that you can insert any initialization code you want just remember that this is very early startup no stack and no __zero_reg yet and no program memory space is wasted if t
79. e g switch This can have unwanted side effects Since the compiler is free to reorder code ex ecution as long as the semantics do not change code is often rearranged in order to make it possible to use a single branch instruction for conditional operations Branch instructions can only cover a short range for the target PC 63 through 64 words from the current PC If a branch instruction cannot be used directly the compiler needs to work around it by combining a skip instruction together with a relative jump rjmp instruction which will need one additional word of ROM Another side effect of optimzation is that variable usage is restricted to the area of code where it is actually used So if a variable was placed in a register at the beginning of some function this same register can be re used later on if the compiler notices that the first variable is no longer used inside that function even though the variable is still in lexical scope When trying to examine the variable in avr gdb the displayed result will then look garbled So in order to avoid these side effects optimization can be turned off while debugging However some of these optimizations might also have the side effect of uncovering bugs that would otherwise not be obvious so it must be noted that turning off opti mization can easily change the bug pattern In most cases you are better off leaving optimizations enabled while debugging Back to FAQ Index 7 3 12
80. e by Doxygen 5 13 Strings 42 e char x strrev char x e char x strstr const char x const char x _ATTR_PURE_ e char x strupr char x 5 13 2 Function Documentation 5 13 2 1 void x memccpy void x dest const void src int val size_t len Copy memory area The memccpy function copies no more than len bytes from memory area src to mem ory area dest stopping when the character val is found Returns The memccpy function returns a pointer to the next character in dest after val or NULL if val was not found in the first len characters of src 5 13 2 2 void x memchr const void x src int val size_t len Scan memory for a character The memchr function scans the first len bytes of the memory area pointed to by src for the character val The first byte to match val interpreted as an unsigned character stops the operation Returns The memchr function returns a pointer to the matching byte or NULL if the character does not occur in the given memory area 5 13 2 3 int memcmp const void x s1 const void x s2 size_t len Compare memory areas The memcmp function compares the first len bytes of the memory areas sl and s2 The comparision is performed using unsigned char operations Returns The memcmp function returns an integer less than equal to or greater than zero if the first len bytes of s1 is found respectively to be less than to match or be greater than the first len bytes of s2 Note Be su
81. e by using a special form of the asm statement unsigned long value asm clock 3686400 This statement instructs the compiler to use the symbol name clock rather than value This makes sense only for external or static variables because local variables do not have symbolic names in the assembler code However local variables may be held in registers With AVR GCC you can specify the use of a specific register void Count void register unsigned char counter asm r3 some code asm volatile clr r3 more code The assembler instruction clr r3 will clear the variable counter AVR GCC will not completely reserve the specified register If the optimizer recognizes that the vari able will not be referenced any longer the register may be re used But the compiler 1s not able to check wether this register usage conflicts with any predefined register If you reserve too many registers in this way the compiler may even run out of registers during code generation In order to change the name of a function you need a prototype declaration because the compiler will not accept the asm keyword in the function definition Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 5 Using malloc extern long Calc void asm CALCULATE Calling the function Calc will create assembler instructions to call the function CALCULATE 7 4 8 Links For a more thorough discussion of inline assembly us
82. e demo map file are rela plt rela plt text 0x00000000 Oxca vectors vectors 0x00000000 0x16 0b3 1386 redhat 1linux gnu crt1 crts2313 0 0x00000000 __vectors 0x00000000 _ vector_default 0x00000016 _ ctors_start The text segment where program instructions are stored starts at location 0x0 f1n12 of and ds Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 10 A simple project fini0 0x000000ca _etext data 0x00800060 0x0 load address 0x000000ca 0x00800060 PROVIDE __data_start data gnu linkonce d 0x00800060 ALIGN 0x2 0x00800060 _edata 0x00800060 PROVIDE __data_end bss 0x00800060 0x3 0x00800060 PROVIDE __bss_start bss COMMON COMMON 0x00800060 0x3 demo o 0x0 size before relaxing 0x00800060 direction 0x00800061 pwm 0x00800063 PROVIDE __bss_end 0x000000ca _ data_load_start LOADADDR data 0x000000ca __data_load_end __data_load_start SIZEOF noinit 0x00800063 0x0 0x00800063 PROVIDE __noinit_start 3 2noinie 0x00800063 PROVIDE __noinit_end 0x00800063 _end 0x00800063 PROVIDE __heap_start eeprom 0x00810000 0x0 load address 0x000000ca eeprom 0x00810000 _ eeprom_end The last address in the text segment is location 0x 2 denoted by etext so the instructions use up 242 bytes of FLASH The data segment where initialized static variables are stored starts at location 0x60 which
83. e early devices that had hardware bugs preventing them from using a stack in external RAM Note also that the heap for malloc will still be placed after all the variables in the data section so in this situation no stack heap collision can occur 7 10 A simple project At this point you should have the GNU tools configured built and installed on your system In this chapter we present a simple example of using the GNU tools in an AVR project After reading this chapter you should have a better feel as to how the tools are used and how a Makefile can be configured 7 10 1 The Project This project will use the pulse width modulator PWM to ramp an LED on and off every two seconds An AT90S2313 processor will be used as the controller The circuit Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 10 A simple project 113 for this demonstration is shown in the schematic diagram If you have a development kit you should be able to use it rather than build the circuit for this project VCC SCK PB7 1O RESET Li 1 m MISO PB6 20K m 3 c2 g 5 UT g MOST PB XTAL2 PB4 1 OCI PB3 J XTAL1 PBZ AIN1 PB1 vec exe AINO PBO TE ICP PD6 T1 PD5 TO PD4 INT1 PD3 INTO PD2 TXD PD1 RXD PDO AT90S2313P M LED5MM R2 D1 D See note 7 Na GND PEREPPE FEFFREER Figure 4 Schematic of circuit for demo project
84. e macro putc used to be a fast macro implementation with a functionality iden tical to fputc For space constraints in avr libc it is just an alias for fputc 5 11 2 4 define putchar _c fputc __c stdout The macro put char sends character c to stdout 5 11 2 5 define stderr __iob 2 Stream destined for error output Unless specifically assigned identical to stdout If stderr should point to another stream the result of another fdevopen must be explicitly assigned to it without closing the previous st derr since this would also close stdout 5 11 2 6 define stdin __iob 0 Stream that will be used as an input stream by the simplified functions that don t take a stream argument The first stream opened with read intent using fdevopen will be assigned to stdin 5 11 2 7 define stdout _iob 1 Stream that will be used as an output stream by the simplified functions that don t take a stream argument The first stream opened with write intent using devopen will be assigned to both stdin and stderr 5 11 3 Function Documentation 5 11 3 1 int fclose FILE x _ stream This function closes st ream and disallows and further IO to and from it It currently always returns O for success 5 11 3 2 FILE fdevopen int _put char int x __get void int _opts This function is a replacement for fopen It opens a stream for a device where the actual device implementation needs to be pro
85. eap_start malloc tunable 5 12 5 3 size_t _malloc_margin malloc tunable 5 13 Strings 5 13 1 Detailed Description include lt string h gt The string functions perform string operations on NULL terminated strings Note If the strings you are working on resident in program space flash you will need to use the string functions described in Program Space String Utilities Functions void x memccpy void x const void x int size_t void x memchr const void x int size_t _ATTR_PURE_ int memcmp const void const void x size_t _ATTR PURE__ void x memcpy void x const void x size_t void x memmove void x const void x size_t void x memset void x int size_t int strcasecmp const char x const char x _ATTR PURE__ char x strcat char x const char x char x strchr const char x int _ATTR PURE__ int strcmp const char const char x _ATTR_PURE__ char x strcpy char const char x size_t strlcat char x const char x size_t size_t strlcpy char x const char x size_t size_t strlen const char __ATTR_PURE__ char x strlwr char x int strncasecmp const char x const char x size_t _ATTR PURE__ char x strncat char x const char x size_t int strncmp const char const char x size_t char x strncpy char x const char size_t size_t strnlen const char x size_t _ATTR PURE__ char x strrchr const char x int _ATTR_PURE_ Generated on Mon Dec 9 22 14 31 2002 for avr lib
86. ecial is that variables which are defined as such int foo __attribute__ section noinit will not be initialized to zero during startup as would normal bss data Only uninitialized variables can be placed in the noinit section Thus the following code will cause avr gcc to issue an error int bar __attribute__ section noinit Oxaa It is possible to tell the linker explicitly where to place the noinit section by adding W1 section start noinit 0x802000 to the avr gcc command line Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 6 Memory Sections 94 at the linking stage For example suppose you wish to place the noinit section at SRAM address 0x2000 avr gcc Wl section start noinit 0x802000 Note Because of the Harvard architecture of the AVR devices you must manually add 0x800000 to the address you pass to the linker as the start of the section Oth erwise the linker thinks you want to put the noinit section into the text section instead of data bss and will complain Alternatively you can write your own linker script to automate this FIXME need an example or ref to dox for writing linker scripts 7 6 6 The initN Sections These sections are used to define the startup code from reset up through the start of main These all are subparts of the text section The purpose of these sections is to allow for more specific placement of code withi
87. ed quite frequently Note 7 Interrupt functions can get the usual names that are also available to C programs The linker will then put them into the appropriate interrupt vector slots Note that they must be declared global in order to be acceptable for this purpose Note 8 As explained in the section about special function registers the actual IO port address should be obtained using the macro _SFR_IO_ADDR The AT90S1200 does not have RAM thus the memory mapped approach to access the IO registers is not available It would be slower than using in out instructions anyway Since the operation to reload TCCNTO is time critical it is even performed before saving SREG Obviously this requires that the instructions involved would not change any of the flag bits in SREG Note 9 Interrupt routines must not clobber the global CPU state Thus it is usually neces sary to save at least the state of the flag bits in SREG Note that this serves as an example here only since actually all the following instructions would not modify SREG either but that s not commonly the case Also it must be made sure that registers used inside the interrupt routine do not conflict with those used outside In the case of a RAM less device like the AT90S1200 this can only be done by agreeing on a set of registers to be used exclusively inside the interrupt routine there would not be any other chance to save a register anywhere If the
88. egisters are used by the C compiler How do I put an array of strings completely in ROM How to use external RAM 7 3 2 My program doesn t recognize a variable updated within an interrupt rou tine When using the optimizer in a loop like the following one uint8_t flag while flag 0 the compiler will typically optimize the access to flag completely away since its code path analysis shows that nothing inside the loop could change the value of flag anyway To tell the compiler that this variable could be changed outside the scope of its code path analysis e g from within an interrupt routine the variable needs to be declared like volatile uint8_t flag Back to FAQ Index Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 64 7 3 3 I get undefined reference to for functions like sin In order to access the mathematical functions that are declared in lt math h gt the linker needs to be told to also link the mathematical library 1 ibm a Typically system libraries like 1ibm a are given to the final C compiler command line that performs the linking step by adding a flag 1m at the end That is the initial lib and the filename suffix from the library are written immediately after a flag So for a libfoo a library 1foo needs to be provided This will make the linker search the library in a path known to the system An alternative woul
89. enever they are referenced This may not be acceptable for larger routines In this case you may define a C stub function containing nothing other than your assembler code void delay uint8_t ms uint16_t cnt asm volatile ip L dalis lt ave mov SA0 A2 Ant mov B0 B2 An L dl Ant sbiw A0 1 n t brne L_dl2 n t dec 1 n t brne L_d11 n t amp w cnt ms me r delay_count i The purpose of this function is to delay the program execution by a specified number of milliseconds using a counting loop The global 16 bit variable delay_count must contain the CPU clock frequency in Hertz divided by 4000 and must have been set before calling this routine for the first time As described in the clobber section the routine uses a local variable to hold a temporary value Another use for a local variable is a return value The following function returns a 16 bit value read from two successive port addresses Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 87 uint16_t inw uint8_t port uint16_t result asm volatile in SAD SI ot in BO 1 1 r result I port i return result Note inw is supplied by avr libc 7 4 7 C Names Used in Assembler Code By default AVR GCC uses the same symbolic names of functions or variables in C and assembler code You can specify a different name for the assembler cod
90. ent a device abstraction that is compatible with fopen but since this would have required to parse a string and to take all the information needed either out of this string or out of an additional table that were to be provided by the application this approach has not been taken Note 2 This basically follows the Unix approach if a device such as a terminal needs special handling it is in the domain of the terminal device driver to provide this functionality Thus a simple function suitable as put for fdevopen that talks to a UART interface might look like this int uart_putchar char c if c An uart_putchar r loop_until_bit_is_set UCSRA UDRE UDR c return 0 Note 3 This implementation has been chosen because the cost of maintaining an alias is considerably smaller than the cost of maintaining full copies of each stream Yet providing an implementation that offers the complete set of standard streams was deemed to be useful Not only that writing printf instead of Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 26 fprintf mystream saves typing work but since avr gcc needs to resort to pass all arguments of variadic functions on the stack as opposed to pass ing them in registers for functions that take a fixed number of parameters the ability to pass one parameter less by implying stdin will also save some execu tion time
91. errupt SIG_EEPROM_READY Eeprom ready SIG_FPGA INTERRUPTO SIG_FPGA_INTERRUPT1 SIG_FPGA_INTERRUPT2 SIG_FPGA_INTERRUPT3 SIG_FPGA_INTERRUPT4 SIG_FPGA_INTERRUPTS SIG_FPGA_INTERRUPT6 SIG_FPGA_INTERRUPT7 SIG_FPGA_INTERRUPT8 SIG_FPGA_INTERRUPT9 SIG_FPGA_INTERRUPT10 SIG_FPGA_INTERRUPT11 SIG_FPGA_INTERRUPT12 SIG_FPGA_INTERRUPT13 SIG_FPGA_INTERRUPT14 SIG_FPGA_INTERRUPT15 SIG_INPUT_CAPTURE1 Input Capture1 Interrupt SIG_INPUT_CAPTURE3 Input Capture3 Interrupt SIG INTERRUPTO External Interrupt0 SIG_INTERRUPT1 External Interrupt1 SIG INTERRUPT2 External Interrupt2 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 14 Interrupts and Signals 50 Signal Name Description SIG_INTERRUPT3 External Interrupt3 SIG_INTERRUPT4 External Interrupt4 SIG_INTERRUPTS External Interrupt5 SIG_INTERRUPT6 External Interrupt6 SIG_INTERRUPT7 External Interrupt7 SIG_LOUTPUT_COMPAREO Output Compare0 Interrupt SIG_OUTPUT_COMPARE1A Output Compare1 A Interrupt SIG_OUTPUT_COMPARE1B Output Compare1 B Interrupt SIG_OUTPUT_COMPARE1C Output Compare1 C Interrupt SIG_OUTPUT_COMPARE2 Output Compare2 Interrupt SIG_OUTPUT_COMPARE3A Output Compare3 A Interrupt SIG_OUTPUT_COMPARE3B Output Compare3 B Interrupt SIG_OUTPUT_COMPARE3C Output Compare3 C Interrupt SIG_OVERFLOWO
92. es it s own assembler code You may also make use of some special registers Symbol Register SREG__ Status register at address 0x3F SPA Stack pointer high byte at address 0x3E 225 P2 Tie Stack pointer low byte at address 0x3D _ tmp_reg__ Register r0 used for temporary storage _ Zero_reg__ Register rl always zero Register rO may be freely used by your assembler code and need not be restored at the end of your code It s a good idea to use _tmp_reg__ and _zero_reg_ instead of ro or r1 just in case a new compiler version changes the register usage definitions 7 4 3 Input and Output Operands Each input and output operand is described by a constraint string followed by a C expression in parantheses AVR GCC 3 3 knows the following constraint characters Note The most up to date and detailed information on contraints for the avr can be found in the gcc manual Note The x register is r27 r26 the y register is r29 r28 and the z register is r31 r30 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 4 Inline Asm 80 Constraint Used for Range a Simple upper registers rl6 to r23 b Base pointer registers y Z pairs d Upper register rl6tor31 e Pointer register pairs X y Z G Floating point constant 0 0 I 6 bit positive integer 0 to 63 constant J 6 bit negative integer 63 to 0 constant K Integer
93. es on different devices Also included are the specific names useable for interrupt function definitions as docu mented here Finally the following macros are defined e RAMEND A constant describing the last on chip RAM location e XRAMEND A constant describing the last possible location in RAM This is equal to RAMEND for devices that do not allow for external RAM e E2END A constant describing the address of the last EEPROM cell e FLASHEND A constant describing the last byte address in flash ROM Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 3 Program Space String Utilities 5 3 Program Space String Utilities 5 3 1 Detailed Description tinclude lt avr io h gt tinclude lt avr pgmspace h gt The functions in this module provide interfaces for a program to access data stored in program space flash memory of the device In order to use these functions the target device must support either the LPM or ELPM instructions Note These function are an attempt to provide some compatibility with header files that come with IAR C to make porting applications between different compilers eas ier This is not 100 compatibility though GCC does not have full support for multiple address spaces yet Note If you are working with strings which are completely based in ram use the stan dard string functions described in Strings Defines e define PSTR s static char __c PROGMEM s _c
94. fig FIG2DEV L png lt SR 7 11 Deprecated List Global eeprom rb addr Use eeprom read _byte in new programs Global eeprom rw addr Use eeprom read word in new programs Global eeprom _wb addr val Use eeprom write _byte in new programs ihex lt e srec lt binary lt 4 can be ignored Global outp val sfr For backwards compatibility only This macro will eventually be removed Global inp sfr For backwards compatibility only This macro will eventually be removed Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 11 Deprecated List 125 Global BV bit For backwards compatibility only This macro will eventually be removed Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen Index PATH 97 PREFIX 97 prefix 97 BV avr_sfr 54 _EEGET avr_eeprom 5 EEPUT avr_eeprom 5 _ compar_fn_t avr_stdlib 33 elpm inline avr_pgmspace 8 _ malloc_heap_end avr_stdlib 40 _ malloc_heap_start avr_stdlib 40 malloc_margin avr_stdlib 40 abort avr_stdlib 33 abs avr_stdlib 33 acos avr_math 18 Additional notes from lt avr sfr_ defs h gt 11 asin avr_math 18 atan avr_math 18 atan2 avr_math 19 atoi avr_stdlib 33 atol avr_stdlib 33 AVR device specific IO definitions 6 avr_eeprom _EEGET 5 _EEPUT 5 eeprom_is_ready 5 eeprom_rb 5 eeprom_read_block 6 eeprom_read_byte 6 eeprom_read_word 6 eeprom_rw 5 eeprom_wb 5 eep
95. for avr libe by Doxygen 7 3 Frequently Asked Questions 71 7 3 13 How do I pass an IO port as a parameter to a function Consider this example code include lt inttypes h gt include lt avr io h gt void set_bits_func_wrong volatile uint8_t port uint8_t mask port mask void set_bits_func_correct volatile uint8_t port uint8_t mask port mask define set_bits_macro port mask port mask int main void set_bits_func_wrong PORTB Oxaa set_bits_func_correct amp PORTB 0x55 set_bits_macro PORTB Oxf0 return 0 The first function will generate object code which is not even close to what is intended The major problem arises when the function is called When the compiler sees this call it will actually pass the value in the the PORTB register using an IN instruction instead of passing the address of PORTB e g memory mapped io addr of 0x38 io port 0x18 for the megal28 This is seen clearly when looking at the disassembly of the call set_bits_func_wrong PORTB Oxaa 10a 6a ea ldi r22 OxAA sa E70 106 88 b3 in r24 0x18 24 10e Oe 94 65 00 call Oxca So the function once called only sees the value of the port register and knows nothing about which port it came from At this point whatever object code is generated for the function by the compiler is irrelevant The interested reader can examine the full disassembly to see the the function s body is comple
96. fter it is equal to the precision if the precision is miss ing it is taken as 6 if the precision is zero no decimal point character appears Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 31 An E conversion uses the letter E rather than e to introduce the exponent The exponent always contains two digits if the value is zero the exponent is 00 e fF The double argument is rounded and converted to decimal notation in the format ddd ddd where the number of digits after the decimal point character is equal to the precision specification If the precision is missing it is taken as 6 if the precision is explicitly zero no decimal point character appears If a decimal point appears at least one digit appears before it e gG The double argument is converted in style or e or F or E for G conver sions The precision specifies the number of significant digits If the precision is missing 6 digits are given if the precision is zero it is treated as 1 Style e is used if the exponent from its conversion is less than 4 or greater than or equal to the precision Trailing zeros are removed from the fractional part of the result a decimal point appears only if it is followed by at least one digit In no case does a non existent or small field width cause truncation of a numeric field if the result of a conversion is wider than the field width the field is expanded to co
97. ger Types 17 Mathematics 18 Setjmp and Longjmp 22 Standard IO facilities 24 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 3 avr libc Data Structure Index General utilities Strings Interrupts and Signals Special function registers Additional notes from lt avr sfr_defs h gt 3 avr libc Data Structure Index 3 1 avr libc Data Structures Here are the data structures with brief descriptions div_t Idiv_t 4 avr libc Page Index 4 1 avr libc Related Pages Here is a list of all related documentation pages Acknowledgments avr libc and assembler programs Frequently Asked Questions Inline Asm Using malloc Memory Sections Installing the GNU Tool Chain Using the avrprog program Using the GNU tools 31 41 48 53 11 57 57 58 58 62 76 88 92 97 103 105 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 5 avr libc Module Documentation A simple project 112 Deprecated List 124 5 avr libc Module Documentation 5 1 EEPROM handling 5 1 1 Detailed Description include lt avr eeprom h gt This header file declares the interface to some simple library routines suitable for han dling the data EEPROM contained in the AVR microcontrollers The implementation uses a simple polled mode interface Applications that require interrupt controlled EEPROM access to ensure that no time will be wasted in spinloops will have to deploy their own imp
98. gram memory 5 11 3 12 int vfprintf FILE x __stream const char x fmt va_list _ap vfprint f is the central facility of the print f family of functions It outputs values to stream under control of a format string passed in fmt The actual values to print are passed as a variable argument list ap v printf returns the number of characters written to stream or EOF in case of an error Currently this will only happen if stream has not been opened with write intent The format string is composed of zero or more directives ordinary characters not which are copied unchanged to the output stream and conversion specifications each of which results in fetching zero or more subsequent arguments Each conversion specification is introduced by the character The arguments must correspond properly after type promotion with the conversion specifier After the the following appear in sequence e Zero or more of the following flags The value should be converted to an alternate form For c d i s and u conversions this option has no effect For o conversions the precision of the number is increased to force the first character of the output string to a zero except if a zero value is printed with an explicit precision of zero For x and X conversions a non zero result has the string Ox or OX for X conversions prepended to it 0 zero Zero padding For all conversions the converted value is padded
99. h Neswold s docu ment See Acknowledgments It s nearly impossible to find compilers that agree on how to handle interrupt code Since the C language tries to stay away from machine dependent details each compiler writer is forced to design their method of support In the AVR GCC environment the vector table is predefined to point to interrupt rou tines with predetermined names By using the appropriate name your routine will be called when the corresponding interrupt occurs The device library provides a set of default interrupt routines which will get used if you don t define your own Patching into the vector table is only one part of the problem The compiler uses by convention a set of registers when it s normally executing compiler generated code It s important that these registers as well as the status register get saved and restored The extra code needed to do this is enabled by tagging the interrupt function with __ attribute__ interrupt These details seem to make interrupt routines a little messy but all these details are handled by the Interrupt API An interrupt routine is defined with one of two macros INTERRUPTO and SIGNAL These macros register and mark the routine as an in terrupt handler for the specified peripheral The following is an example definition of a handler for the ADC interrupt include lt avr signal h gt INTERRUPT SIG_ADC user code here Refer to the chapter ex
100. his feature is not used There should be no need to modify linker scripts anymore except for some very special cases It is best to leave __stack at its default value end of internal SRAM faster and required on some devices like ATmegal61 because of errata and add W1 Tdata 0x801100 to start the data section above the stack For more information on using sections including how to use them from C code see Memory Sections Back to FAQ Index 7 3 6 What is all this _BV stuff about When performing low level output work which is a very central point in microcon troller programming it is quite common that a particular bit needs to be set or cleared in some IO register While the device documentation provides mnemonic names for the various bits in the IO registers and the AVR device specific IO definitions reflect these names in definitions for numerical constants a way is needed to convert a bit number usually within a byte register into a byte value that can be assigned directly to the register However sometimes the direct bit numbers are needed as well e g in an sbi call so the definitions cannot usefully be made as byte values in the first place So in order to access a particular bit number as a byte value use the BV macro Of course the implementation of this macro is just the usual bit shift which is done by the compiler anyway thus doesn t impose any run time penalty so the following applies
101. iable argument lists printf etc are all passed on stack and char is extended to int Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 74 Warning There was no such alignment before 2000 07 01 including the old patches for gcc 2 95 2 Check your old assembler subroutines and adjust them accordingly Back to FAQ Index 7 3 15 How do I put an array of strings completely in ROM There are times when you may need an array of strings which will never be modified In this case you don t want to waste ram storing the constant strings This most obvious thing to do is this include lt avr pgmspace h gt PGM_P array 2 PROGMEM Foo Bar int main void char buf 32 stropy F buf array 1 return 0 The result is not want you want though What you end up with is the array stored in ROM while the individual strings end up in RAM in the data section To work around this you need to do something like this include lt avr pgmspace h gt const char foo PROGMEM Foo const char bar PROGMEM Bar PGM_P array 2 PROGMEM foo bar y int main void char buf 32 strcpy_P buf array 1 return 0 Looking at the disassembly of the resulting object file we see that array is in flash as such Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 3 Frequently Asked Questions 0000008c lt foo gt 8c 46 6f
102. ich point to the key object and to an array member in that order and should return an integer less than equal to or greater than zero if the key object is found respectively to be less than to match or be greater than the array member The bsearch function returns a pointer to a matching member of the array or a null pointer if no match is found If two members compare as equal which member is matched is unspecified 5 12 4 6 void calloc size_t __nele size_t __size Allocate nele elements of size each Identical to calling malloc using nele x size as argument except the allocated memory will be cleared to zero 5 12 4 7 div t div int _num int _denom The div function computes the value num denom and returns the quotient and re mainder in a structure named div_t that contains two int members named quot and rem 5 12 4 8 char dtostre double __val char x __s unsigned char _ prec unsigned char _ flags The dtostre function converts the double value passed in val into an ASCII repre sentation that will be stored under s The caller is responsible for providing sufficient storage in s Conversion is done in the format d ddde177dd where there is one digit be fore the decimal point character and the number of digits after it is equal to the preci sion prec if the precision is zero no decimal point character appears If flags has the DTOSTRE UPPERCASE bit set the letter E rather than e wil
103. integer less than equal to or greater than zero if sl is found respectively to be less than to match or be greater than s2 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 44 5 13 2 8 char x strcat char x dest const char x src Concatenate two strings The strcat function appends the src string to the dest string overwriting the 0 char acter at the end of dest and then adds a terminating 0 character The strings may not overlap and the dest string must have enough space for the result Returns The strcat function returns a pointer to the resulting string dest 5 13 2 9 char x strchr const char src int val Locate character in string The strchr function returns a pointer to the first occurrence of the character val in the string src Here character means byte these functions do not work with wide or multi byte characters Returns The strchr function returns a pointer to the matched character or NULL if the character is not found 5 13 2 10 int stremp const char x s1 const char s2 Compare two strings The stremp function compares the two strings sl and s2 Returns The stremp function returns an integer less than equal to or greater than zero if sl is found respectively to be less than to match or be greater than s2 5 13 2 11 char x strcpy char x dest const char src Copy a string The strcpy function copies the st
104. ir obj avr cd obj avr The next step is to configure and build the tools This is done by supplying arguments to the configure script that enable the AVR specific options configure prefix PREFIX target avr disable nls If you don t specify the prefix option the tools will get installed in the usr local hierarchy i e the binaries will get installed in usr local bin the info pages get installed in usr local info etc Since these tools are chang ing frequently It is preferrable to put them in a location that is easily removed Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 7 Installing the GNU Tool Chain 100 When configure is run it generates a lot of messages while it determines what is available on your operating system When it finishes it will have created several Makefiles that are custom tailored to your platform At this point you can build the project make Note BSD users should note that the project s Makefile uses GNU make syntax This means FreeBSD users may need to build the tools by using gmake If the tools compiled cleanly you re ready to install them If you specified a destination that isn t owned by your account you ll need root access to install them To install make install You should now have the programs from binutils installed into SPREFIX bin Don t forget to set your PATH environment variable before going to build avr gcc 7 7 4 GC
105. is later used by free The returned address points just beyond that header Thus if the application accidentally writes before the returned memory region the internal consistency of the memory al locator is compromised The implementation maintains a simple freelist that accounts for memory blocks that have been returned in previous calls to free Note that all of this memory is considered to be successfully added to the heap already so no further checks against stack heap collisions are done when recycling memory from the freelist The freelist itself is not maintained as a separate data structure but rather by modifying the contents of the freed memory to contain pointers chaining the pieces together That way no additional memory is reqired to maintain this list except for a variable that keeps track of the lowest memory segment available for reallocation Since both a chain pointer and the size of the chunk need to be recorded in each chunk the minimum chunk size on the freelist is four bytes Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 6 Memory Sections 92 When allocating memory first the freelist is walked to see if it could satisfy the request If there s a chunk available on the freelist that will fit the request exactly it will be taken disconnected from the freelist and returned to the caller If no exact match could be found the closest match that would just satisfy the request will be used
106. is set 5 15 2 4 define BV bit BV bit Deprecated For backwards compatibility only This macro will eventually be removed Use _BV in new programs 5 15 2 5 define cbi sfr bit SFR_BYTE sfr amp _BV bit include lt avr io h gt Clear bit bit in IO register sfr 5 15 2 6 define inb sfr SFR_BYTE sfr include lt avr io h gt Read a byte from IO register sfr Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 15 Special function registers 56 5 15 2 7 define inp sfr inb sfr Deprecated For backwards compatibility only This macro will eventually be removed Use inb in new programs 5 15 2 8 define inw sfr SFR_WORD sfr include lt avr io h gt Read a 16 bit word from IO register pair sfr 5 15 2 9 define loop_until_bit_is_clear sfr bit do while bit_is_set sfr bit include lt avr io h gt Wait until bit bit in IO register s fr is clear 5 15 2 10 define loop_until_bit_is_set sfr bit do while bit_is_clear sfr bit include lt avr io h gt Wait until bit bit in IO register s fr is set 5 15 2 11 define outb sfr val SFR_BYTE sfr val include lt avr io h gt Write val to IO register sfr Note The order of the arguments was switched in older versions of avr libc versions lt 20020203 5 15 2 12 define outp val sfr outb sfr val Deprecated For backwards compatibility only This macro will eventually be remove
107. ize 32 bits or longer when evaluating expressions This is in contrast to the C compiler that uses the C type int by default in order to calculate constant integer expressions In order to get a 100 kHz output we need to toggle the PD6 line 200000 times per second Since we use timer 0 without any prescaling options in order to get the desired frequency and accuracy we already run into serious timing consid erations while accepting and processing the timer overflow interrupt the timer already continues to count When pre loading the TCCNTO register we therefore have to account for the number of clock cycles required for interrupt acknowledge and for the instructions to reload TCCNTO 4 clock cycles for interrupt acknowl edge 2 cycles for the jump from the interrupt vector 2 cycles for the 2 instructions that reload TCCNTO This is what the constant fuzz is for Note 5 External functions need to be declared to be global main is the application en try point that will be jumped to from the ininitalization routine in crt s1200 0 Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 3 Frequently Asked Questions 62 Note 6 The main loop is just a single jump back to itself Square wave generation itself is completely handled by the timer 0 overflow interrupt service A sleep instruction using idle mode could be used as well but probably would not conserve much energy anyway since the interrupt service is execut
108. l be used to introduce the exponent The exponent always contains two digits if the value is zero the exponent is 00 If flags has the DTOSTRE_ALWAYS_SIGN bit set a space character will be placed into the leading position for positive numbers If flags has the DTOSTRE_PLUS_SIGN bit set a plus sign will be used instead of a space character in this case Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 36 5 12 4 9 charx dtostrf double _val char _width char _prec char x _s The dtostrf function converts the double value passed in val into an ASCII repre sentationthat will be stored under s The caller is responsible for providing sufficient storage in s Conversion is done in the format d ddd The minimum field width of the 29 output string including the and the possible sign for negative values is given in width and prec determines the number of digits after the decimal sign 5 12 4 10 void exit int __status The exit function terminates the application Since there is no environment to re turn to status is ignored and code execution will eventually reach an infinite loop thereby effectively halting all code processing In a C context global destructors will be called before halting execution 5 12 4 11 void free void x _ ptr The free function causes the allocated memory referenced by ptr to be made avail able for future allocations If ptr i
109. lementation Note All of the read write functions first make sure the EEPROM is ready to be ac cessed Since this may cause long delays if a write operation is still pending time critical applications should first poll the EEPROM e g using eeprom_is_ready before attempting any actual I O avr libc declarations define eeprom_is_ready bit_is_clear EECR EEWE uint8_t eeprom_read_byte uint8_t xaddr uint16_t eeprom_read_word uint16_t xaddr void eeprom_write_byte uint8_t addr uint8_t val void eeprom read block void buf void addr size_t n Backwards compatibility defines e define eeprom_rb addr eeprom_read_byte uint8_t x addr e define eeprom_rw addr eeprom_read_word uint16_t addr e define eeprom_wb addr val eeprom_write_byte uint8_t addr uint8_ t val IAR C compatibility defines e define EEPUT addr val eeprom_wb addr val e define EEGET var addr var eeprom_rb addr Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 1 EEPROM handling 5 1 2 Define Documentation 5 1 2 1 define EEGET var addr var eeprom_rb addr Read a byte from EEPROM 5 1 2 2 define EEPUT addr val eeprom_wb adadr val Write a byte to EEPROM 5 1 2 3 define eeprom_is_ready bit_is_clear EECR EEWE Returns 1 if EEPROM is ready for a new read write operation 0 if not 5 1 2 4 define eeprom_rb addr eeprom_read_byte uint8_t x addr Deprecated Use eepro
110. length of the string src not including the terminat ing 0 character Returns The strlen function returns the number of characters in src 5 13 2 15 char x strlwr char x string Convert a string to lower case The strlwr function will convert a string to lower case Only the upper case alphabetic characters A Z are converted Non alphabetic characters will not be changed Returns The strlwr function returns a pointer to the converted string Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 46 5 13 2 16 int strncasecmp const char x s1 const char x s2 size_t len Compare two strings ignoring case The strncasecmp function is similar to strcasecmp except it only compares the first n characters of sl Returns The strncasecmp function returns an integer less than equal to or greater than zero if sl or the first n bytes thereof is found respectively to be less than to match or be greater than s2 5 13 2 17 char x strncat char x dest const char x src size_t len Concatenate two strings The strncat function is similar to strcat except that only the first n characters of src are appended to dest Returns The strncat function returns a pointer to the resulting string dest 5 13 2 18 int strncmp const char x s1 const char s2 size_t len Compare two strings The strncmp function is similar to stremp except it only compares the first at
111. m_read_byte in new programs 5 1 2 5 define eeprom_rw addr eeprom_read_word uint16_t addr Deprecated Use eeprom_read_word in new programs 5 1 2 6 define eeprom_wb addr val eeprom_write_byte uint8_t x addr uint8_t val Deprecated Use eeprom_write_byte in new programs 5 1 3 Function Documentation 5 1 3 1 void eeprom_read_block void x buf void x addr size_t n Read a block of n bytes from EEPROM address addr to buf 5 1 3 2 uint8_t eeprom_read_byte uint8_t x addr Read one byte from EEPROM address addr Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 2 AVR device specific IO definitions 5 1 3 3 uint16_t eeprom_read_word uint16_t x addr Read one 16 bit word little endian from EEPROM address addr 5 1 3 4 void eeprom_write_byte uint8_t x addr uint8_t val Write a byte val to EEPROM address addr 5 2 AVR device specific IO definitions include lt avr io h gt This header file includes the apropriate IO definitions for the device that has been specified by the mmcu compiler command line switch Note that each of these files always includes include lt avr sfr_defs h gt See Special function registers for the details Included are definitions of the IO register set and their respective bit values as specified in the Atmel documentation Note that Atmel is not very consistent in its naming conventions so even identical functions sometimes get different nam
112. ment The default is 124 r25 r18 r19 r20 r21 r22 r23 r30 r31 r26 127 r28 r29 r17 r16 r15 r14 r13 r12 r11 r10 19 r8 r7 r6 r5 r4 r3 r2 r0 rl Order 1 uses r18 r19 r20 r21 r22 r23 r24 r25 r30 r31 r26 r27 r28 r29 r17 r16 r15 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 9 Using the GNU tools r14 r13 r12 r11 r10 19 r8 17 r6 r5 r4 r3 r2 r0 rl Order 2 uses 125 r24 r23 r22 r21 r20 r19 r18 r30 r31 r26 127 r28 r29 r17 r16 r15 r14 r13 r12 r11 r10 19 r8 17 r6 r5 r4 r3 12 r1 r0 mint8 Assume int to be an 8 bit integer Note that this is not really supported by avr libc so it should normally not be used The default is to use 16 bit integers mno interrupts Generates code that changes the stack pointer without disabling interrupts Nor mally the state of the status register SREG is saved in a temporary register in terrupts are disabled while changing the stack pointer and SREG is restored mcall prologues Use subroutines for function prologue epilogue For complex functions that use many registers that needs to be saved restored on function entry exit this saves some space at the cost of a slightly increased execution time minit stack nnnn Set the initial stack pointer to nnnn By default the stack pointer is initialized to the symbol _stack which is set to RAMEND by the run time initializatio
113. ments not in the range 1 1 5 9 3 2 double asin double _x The asin function computes the principal value of the arc sine of x The returned value is in the range 0 pi radians A domain error occurs for arguments not in the range 1 1 5 9 3 3 double atan double __x The atan function computes the principal value of the arc tangent of x The returned value is in the range 0 pi radians A domain error occurs for arguments not in the range 1 1 5 9 3 4 double atan2 double _ y double __x The atan2 function computes the principal value of the arc tangent of y x using the signs of both arguments to determine the quadrant of the return value The returned value is in the range pi pi radians If both x and y are zero the global variable errno is set to EDOM Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 9 Mathematics 20 5 9 3 5 double ceil double __x The ceil function returns the smallest integral value greater than or equal to x ex pressed as a floating point number 5 9 3 6 double cos double __x The cos function returns the cosine of x measured in radians 5 9 3 7 double cosh double __x The cosh function returns the hyperbolic cosine of x 5 9 3 8 double exp double _x The exp function returns the exponential value of x 5 9 3 9 double fabs double __x The fabs function computes the absolute value of a floating point number x 5 9
114. mize more an optimization level of O means no optimization at all which is the default if no O option is present The special option Os is meant to turn on all 02 optimizations that are not expected to increase code size Note that at 03 gcc attempts to inline all simple functions For the AVR target this will normally constitute a large pessimization due to the code in creasement The only other optimization turned on with 03 is frenam registers which could rather be enabled manually instead A simple O option is equivalent to 01 Note also that turning off all optimizations will prevent some warnings from be ing issued since the generation of those warnings depends on code analysis steps that are only performed when optimizing unreachable code unused variables See also the appropriate FAQ entry for issues regarding debugging optimized code Wa assembler options e W1 linker options Pass the listed options to the assembler or linker respectively 9 Generate debugging information that can be used by avr gdb ffreestanding Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 9 Using the GNU tools 109 7 9 2 7 9 2 Assume a freestanding environment as per the C standard This turns off au tomatic builtin functions though they can still be reached by prepending __ builtin to the actual function name It also makes the compiler not com plain when main
115. most n characters of sl and s2 Returns The strncmp function returns an integer less than equal to or greater than zero if sl or the first n bytes thereof is found respectively to be less than to match or be greater than s2 5 13 2 19 char x strncpy char dest const char x src size_t len Copy a string The strncpy function is similar to strcpy except that not more than n bytes of src are copied Thus if there is no null byte among the first n bytes of src the result will not be null terminated In the case where the length of src is less than that of n the remainder of dest will be padded with nulls Returns The strncpy function returns a pointer to the destination string dest Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 47 5 13 2 20 size_t strnlen const char src size_t len Determine the length of a fixed size string The strnlen function returns the number of characters in the string pointed to by src not including the terminating 0 character but at most len In doing this strnlen looks only at the first len characters at src and never beyond src len Returns The strnlen function returns strlen src if that is less than len or len if there is no 0 character among the first len characters pointed to by src 5 13 2 21 char x strrchr const char x src int val Locate character in string The strrchr function returns a pointer to the last
116. n code mtiny stack Change only the low 8 bits of the stack pointer mno table jump Do not generate tablejump instructions By default jump tables can be used to optimize switch statements When turned off sequences of compare state ments are used instead Jump tables are usually faster to execute on average but in particular for switch statements where most of the jumps would go to the default label they might waste a bit of flash memory mshort calls Use rjmp rcall limited range on gt 8K devices On avr2 and avr4 archi tectures less than 8 KB or flash memory this is always the case On avr3 and avr5 architectures calls and jumps to targets outside the current function will by default use jmp ca1l1 instructions that can cover the entire address range but that require more flash ROM and execution time Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 9 Using the GNU tools 108 mrtl Dump the internal compilation result called RTL into comments in the gener ated assembler code Used for debugging avr gcc msize Dump the address size and relative cost of each statement into comments in the generated assembler code Used for debugging avr gcc mdeb Generate lots of debugging information to stderr 7 9 1 2 Selected general compiler options The following general gcc options might be of some interest to AVR users On Optimization level n Increasing n is meant to opti
117. n your program Note Sometimes it is convenient to think of the initN and finiN sections as functions but in reality they are just symbolic names the tell the linker where to stick a chunk of code which is not a function Notice that the examples for asm and C can not be called as functions and should not be jumped into The initN sections are executed in order from 0 to 9 init0 Weakly bound to __init If user defines __init it will be jumped into immediately after a reset initl Unused User definable init2 In C programs weakly bound to initialize the stack init3 Unused User definable Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 6 Memory Sections 95 init4 Copies the data section from flash to SRAM Also sets up and zeros out the bss section In Unix like targets data is normally initialized by the OS directly from the executable file Since this is impossible in an MCU environment avr gcc instead takes care of appending the data variables after text in the flash ROM image init4 then defines the code weakly bound which takes care of copying the contents of data from the flash to SRAM init5 Unused User definable init6 Unused for C programs but used for constructors in C programs init7 Unused User definable init8 Unused User definable init9 Jumps into main 7 6 7 The finiN Sections These sections are used to define the exit
118. n Intel Hex format file It can also be used in an interactive mode to individually update EEPROM cells fuse bits and or lock bits if their access is supported by the Atmel serial programming protocol The main flash instruction memory of the AVR can also be programmed in interactive mode however this is not very useful because one can only turn bits off The only way to turn flash bits on is to erase the entire memory using avrprog s e option avrprog is part of the FreeBSD ports system To install it simply do the following cd usr ports devel avrprog make install Once installed avrprog can program processors using the contents of the hex file specified on the command line In this example the file main hex is burned into the flash memory avrprog p 2313 e m flash i main hex avrprog AVR device initialized and ready to accept instructions Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 8 Using the avrprog program 104 avrprog Device signature 0xle9101 avrprog erasing chip avrprog done avrprog reading input file main hex avrprog input file main hex auto detected as Intel Hex avrprog writing flash 1749 0x00 avrprog 1750 bytes of flash written avrprog verifying flash memory against main hex avrprog reading on chip flash data 1749 0x00 avrprog verifying avrprog 1750 bytes of flash verified avrprog done Thank you The p 2313 option lets avrprog
119. n general all integer type variables are set to 0 all pointers to a NULL pointer and all floating point variables to 0 0 As long as these variables are not initialized i e they don t have an equal sign and an initialization expression to the right within the definition of the variable they go into the bss section of the file This section simply records the size of the variable but otherwise doesn t consume space neither within the object file nor within flash memory Of course being a variable it will consume space in the target s SRAM In contrast global and static variables that have an initializer go into the data section of the file This will cause them to consume space in the object file in order to record the initializing value and in the flash ROM of the target device The latter is needed since the flash ROM is the only way that the compiler can tell the target device the value this variable is going to be initialized to Now if some programmer wants to make doubly sure their variables really get a O at program startup and adds an initializer just containing 0 on the right hand side they waste space While this waste of space applies to virtually any platform C is implemented on it s usually not noticeable on larger machines like PCs while the waste of flash ROM storage can be very painful on a small microcontroller like the AVR So in general variables should only be explicitly initialized if the ini
120. nd to display valid memory types for use with the dump and write commands avrprog gt 7 9 Using the GNU tools This is a short summary of the AVR specific aspects of using the GNU tools Normally the generic documentation of these tools is fairly large and maintained in texinfo files Command line options are explained in detail in the manual page 7 9 1 Options for the C compiler avr gcc 7 9 1 1 Machine specific options for the AVR The following machine specific op tions are recognized by the C compiler frontend e mmcu architecture Compile code for architecture Currently known architectures are avrl Simple CPU core only assembler support avr2 Classic CPU core up to 8 KB of ROM avr3 Classic CPU core more than 8 KB of ROM avr4 Enhanced CPU core up to 8 KB of ROM avr5 Enhanced CPU core more than 8 KB of ROM By default code is generated for the avr2 architecture Note that when only using mmcu architecture but no mmcu MCU type in cluding the file lt avr io h gt cannot work since it cannot decide which de vice s definitions to select e mmcu MCU type The following MCU types are currently understood by avr gcc The table matches them against the corresponding avr gcc architecture name and shows the preprocessor symbol declared by the mmcu option Architecture MCU name Macro avrl at90s1200 _ AVR_AT90S1200__ avrl attiny11 _ AVR_AT
121. nged Assembler subroutines are responsible for saving and restoring these registers if changed r29 r28 Y pointer is used as a frame pointer points to local data on stack if necessary Fixed registers r0 r1 Never allocated by gcc for local data but often used for fixed purposes rO temporary register can be clobbered by any C code except interrupt han dlers which save it may be used to remember something for a while within one piece of assembler code rl assumed to be always zero in any C code may be used to remember some thing for a while within one piece of assembler code but must then be cleared afteruse clr r1 This includes any use of the mul s u instructions which return their result in rl r0 Interrupt handlers save and clear rl on entry and restore rl on exit in case it was non zero Function call conventions Arguments allocated left to right r25 to r8 All arguments are aligned to start in even numbered registers odd sized arguments including char have one free register above them This allows making better use of the movw instruction on the enhanced core If too many those that don t fit are passed on the stack Return values 8 bit in r24 not r25 16 bit in r25 r24 up to 32 bits in r22 r25 up to 64 bits in r18 r25 8 bit return values are zero sign extended to 16 bits by the caller unsigned char is more efficient than signed char just clr r25 Arguments to functions with var
122. ntain the conversion result Since the full implementation of all the mentioned features becomes fairly large three different flavours of vfprintf can be selected using linker options The default vf printf implements all the mentioned functionality except floating point conversions A minimized version of vfprintf is available that only implements the very basic in teger and string conversion facilities but none of the additional options that can be specified using conversion flags these flags are parsed correctly from the format spec ification but then simply ignored This version can be requested using the following compiler options Wl u vfprintf iprintf_min If the full functionality including the floating point conversions is required the follow ing options should be used W1 u vfprintf lprintf_flt im Limitations e The specified width and precision can be at most 127 e For floating point conversions trailing digits will be lost if a number close to DBL_MAX is converted with a precision gt 0 512 General utilities 5 12 1 Detailed Description include lt stdlib h gt Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 12 General utilities 32 This file declares some basic C macros and functions as defined by the ISO standard plus some AVR specific extensions Data Structures e struct div_t e struct Idiv_t Non standard i e non ISO C functions define RANDOM_MAX 0x7
123. or all output operands Read write operand not supported by inline assembler amp Register should be used for output only Output operands must be write only and the C expression result must be an lvalue which means that the operands must be valid on the left side of assignments Note that the compiler will not check if the operands are of reasonable type for the kind of operation used in the assembler instructions Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 82 Input operands are you guessed it read only But what if you need the same operand for input and output As stated above read write operands are not supported in inline assembler code But there is another solution For input operators it is possible to use a single digit in the constraint string Using digit n tells the compiler to use the same register as for the n th operand starting with zero Here is an example asm volatile swap 0 r value 0 value This statement will swap the nibbles of an 8 bit variable named value Constraint 0 tells the compiler to use the same input register as for the first operand Note however that this doesn t automatically imply the reverse case The compiler may choose the same registers for input and output even if not told to do so This is not a problem in most cases but may be fatal if the output operator is modified by the assembler code before the inpu
124. plaining assembler programming for an explanation about inter rupt routines written solely in assembler language Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 14 Interrupts and Signals 49 If an unexpected interrupt occurs interrupt is enabled and no handler is installed which usually indicates a bug then the default action is to reset the device by jumping to the reset vector You can override this by supplying a function named __vector_ default which should be defined with either SIGNAL or INTERRUPTO as such include lt avr signal h gt SIGNAL __vector_default user code here The interrupt is chosen by supplying one of the symbols in following table Note that every AVR device has a different interrupt vector table so some signals might not be available Check the data sheet for the device you are using FIXME Fill in the blanks Gotta read those durn data sheets Note The SIGNAL and INTERRUPTO macros currently cannot spell check the argu ment passed to them Thus by misspelling one of the names below in a call to SIGNAL or INTERRUPTO a function will be created that while possibly being usable as an interrupt function is not actually wired into the interrupt vector table No warning will be given about this situation Signal Name Description SIG_2WIRE_SERIAL 2 wire serial interface aka 1178C tm SIG_ADC ADC Conversion complete SIG_COMPARATOR Analog Comparator Int
125. r devices in order to make them usable by the standard IO facilities Due to space constraints some functionality has not been implemented at all like some of the printf conversions that have been left out Nevertheless potential users of this implementation should be warned the printf family although usually associated with presumably simple things like the famous Hello world program is actually a fairly complex one which causes quite some amount of code space to be taken and it s not fast either due to the nature of interpreting the format string at run time Whenever possible resorting to the sometimes non standard predetermined conversion facilities that are offered by avr libc will usually cost much less in terms of speed and code size In order to allow programmers a code size vs functionality tradeoff the function vfprintf which is the heart of the printf family can be selected in different flavours using linker options See the documentation of vfprintf for a detailed description The standard streams stdin stdout and stderr are provided but contrary to the C standard since avr libc has no knowledge about applicable devices these streams are not already pre initialized at application startup Also since there s no notion of file whatsoever to avr libc there s no function fopen that could be used to associate a stream to some device See note 1 Instead function fdevopen is provided Genera
126. r libc The AVR Libc package provides a subset of the standard C library for Atmel AVR 8 bit RISC microcontrollers In addition the library provides the basic startup code needed by most applications There is a wealth of information in this document which goes beyond simply describ ing the interfaces and routines provided by the library We hope that this document provides enough information to get a new AVR developer up to speed quickly using the freely available development tools binutils gcc avr libc and many others If you find yourself stuck on a problem which this document doesn t quite address you may wish to post a message to the avr gcc mailing list Most of the developers of the AVR binutils and gcc ports in addition to the devleopers of avr libc subscribe to the list so you will usually be able to get your problem resolved You can subscribe to the list at http www avrl org mailman listinfo avr gcc list Before posting to the list you might want to try reading the Frequently Asked Ques Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 1 AVR Libc tions chapter of this document Note This document is a work in progress As such it may contain incorrect in formation If you find a mistake please send an email to the avr libc dev nongnu org describing the mistake Also send us an email if you find that a specific topic is missing from the document 1 0 1 Supported Devices The following is
127. r sfr_defs h gt Bit manipulation e define BV bit 1 lt lt bit IO operations define inb sfr SFR_BYTE sfr define inw sfr SFR WORD sfr define outb sfr val SFR_BYTE sfr val define outw sfr val SFR_WORD sfr val IO register bit manipulation define cbi sfr bit SFR_BYTE sfr amp _BV bit define sbi sfr bit SFR_BYTE sfr _BV bit define bit_is_set sfr bit inb sfr amp _BV bit define bit_is_clear sfr bit inb sfr amp _BV bit define loop_until_bit_is_set sfr bit do while bit_is_clear sfr bit define loop_until_bit_is_clear sfr bit do while bit_is_set sfr bit Deprecated Macros e define outp val sfr outb sfr val e define inp sfr inb sfr e define BV bit BV bit Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 5 15 Special function registers 55 5 15 2 Define Documentation 5 15 2 1 define BV bit 1 lt lt bit include lt avr io h gt Converts a bit number into a byte value Note The bit shift is performed by the compiler which then inserts the result into the code Thus there is no run time overhead when using _BV 5 15 2 2 define bit_is_clear sfr bit inb sfr amp _BV bit include lt avr io h gt Test whether bit bit in IO register s fr is clear 5 15 2 3 define bit_is_set sfr bit inb sfr amp _BV bit include lt avr io h gt Test whether bit bit in IO register s fr
128. rated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 14 Interrupts and Signals 52 include lt avr signal h gt Introduces an interrupt handler function that runs with global interrupts initially en abled This allows interrupt handlers to be interrupted 5 14 2 3 define sei __asm__ __volatile__ sei include lt avr interrupt h gt Enables interrupts by clearing the global interrupt mask This function actually com piles into a single line of assembly so there is no function call overhead 5 14 2 4 Hdefine SIGNAL signame Value void signame void __attribute__ signal void signame void include lt avr signal h gt Introduces an interrupt handler function that runs with global interrupts initially dis abled 5 14 3 Function Documentation 5 14 3 1 void enable_external_int unsigned char ints include lt avr interrupt h gt This function gives access to the gimsk register or eimsk register if using an AVR Mega device Although this function is essentially the same as using the outb func tion it does adapt slightly to the type of device being used 5 14 3 2 void timer_enable_int unsigned char ints include lt avr interrupt h gt This function modifies the timsk register using the outb function The value you pass via ints is device specific Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 15 Special function registers 53 5 15 Special function
129. rather low currents when sourcing cur rent so the LED can be connected directly the resulting current through the LED will be about 15 mA For modern parts at least for the ATmega 128 however Atmel has drastically increased the IO source capability so when operating at 5 V Vcc R2 is needed Its value should be about 150 Ohms When operating the circuit at 3 V it can still be omitted though 7 10 2 The Source Code gt lt AA F FH A F A HF FH THE BEER WARE LICENSE Revision 42 lt joerg FreeBSD ORG gt wrote this file As long as you retain this notice you can do whatever you want with this stuff If we meet some day and you think this stuff is worth it you can buy me a beer in return Joerg Wunsch Simple AVR demonstration Controls a LED that can be directly connected from OC1 OC1A to GND The brightness of the LED is controlled with the PWM After each period of the PWM the PWM value is either incremented or decremented that s all SId demo c v 1 1 2002 09 30 18 16 07 troth Exp include lt inttypes h gt include lt avr io h gt include lt avr interrupt h gt include lt avr signal h gt if defined __AVR_AT90S2313__ elif defined __AVR_AT90S2333__ elif defined __AVR_AT90S4414___ define OC1 PB3 define OCR OCR1 define DDROC DDRB defined __AVR_AT90S4433__ define OC1 PB1 define DDROC DDRB define OCR OCR1 defined __AVR_AT90S8515__
130. re to store the result in a 16 bit variable since you may get incorrect results if you use an unsigned char or char due to truncation Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 43 Warning This function is not mint8 compatible although if you only care about testing for equality this function should be safe to use 5 13 2 4 void x memcpy void dest const void x src size_t len Copy a memory area The memcpy function copies len bytes from memory area src to memory area dest The memory areas may not overlap Use memmove if the memory areas do overlap Returns The memcpy function returns a pointer to dest 5 13 2 5 void x memmove void x dest const void x src size_t len Copy memory area The memmove function copies len bytes from memory area src to memory area dest The memory areas may overlap Returns The memmove function returns a pointer to dest 5 13 2 6 void x memset void x dest int val size_t len Fill memory with a constant byte The memset function fills the first len bytes of the memory area pointed to by dest with the constant byte val Returns The memset function returns a pointer to the memory area dest 5 13 2 7 int strcasecmp const char x s1 const char x s2 Compare two strings ignoring case The strcasecmp function compares the two strings s1 and s2 ignoring the case of the characters Returns The strcasecmp function returns an
131. registers 5 15 1 Detailed Description When working with microcontrollers many of the tasks usually consist of controlling the peripherals that are connected to the device respectively programming the subsys tems that are contained in the controller which by itself communicate with the circuitry connected to the controller The AVR series of microcontrollers offers two different paradigms to perform this task There s a separate IO address space available as it is known from some high level CISC CPUs that can be addressed with specific IO instructions that are applicable to some or all of the IO address space in out sbi etc The entire IO address space is also made available as memory mapped IO i e it can be accessed using all the MCU instructions that are applicable to normal data memory The IO register space is mapped into the data memory address space with an offset of 0x20 since the bottom of this space is reserved for direct access to the MCU registers Actual SRAM is available only behind the IO register area starting at either address 0x60 or 0x100 depending on the device AVR Libc supports both these paradigms While by default the implementation uses memory mapped IO access this is hidden from the programmer So the programmer can access IO registers either with a special function like outb include lt avr io h gt outbh PORTA 0x33 or they can assign a value directly to the symbolic address PORTA
132. returns the pointer passed as s 5 12 4 16 void malloc size_t __size The malloc function allocates size bytes of memory If malloc fails a NULL pointer is returned Note that malloc does not initialize the returned memory to zero bytes See the chapter about malloc usage for implementation details 5 12 4 17 void qsort void x _base size_t _nmemb size_t _size _compar_fn_t compar The qsort function is a modified partition exchange sort or quicksort The qsort function sorts an array of nmemb objects the initial member of which is pointed to by base The size of each object is specified by size The contents of the array base are sorted in ascending order according to a comparison function pointed to by compar which requires two arguments pointing to the objects being compared The comparison function must return an integer less than equal to or greater than zero if the first argument is considered to be respectively less than equal to or greater than the second 5 12 4 18 int rand void The rand function computes a sequence of pseudo random integers in the range of 0 to RAND_MAX as defined by the header file lt stdlib h gt The srand function sets its argument seed as the seed for a new sequence of pseudo random numbers to be returned by rand These sequences are repeatable by calling srand with the same seed value If no seed value is provided the functions are automatically seeded with a
133. ring pointed to by src including the terminating 0 character to the array pointed to by dest The strings may not overlap and the destination string dest must be large enough to receive the copy Returns The strcpy function returns a pointer to the destination string dest Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 13 Strings 45 Note If the destination string of a strcpy is not large enough that is if the programmer was stupid lazy and failed to check the size before copying then anything might happen Overflowing fixed length strings is a favourite cracker technique 5 13 2 12 size_t stricat char x dst const char x src size_t siz Concatenate two strings Appends src to string dst of size siz unlike strncat siz is the full size of dst not space left At most siz 1 characters will be copied Always NULL terminates unless siz lt strlen dst Returns The strlcat function returns strlen src MIN siz strlen initial dst If retval gt siz truncation occurred 5 13 2 13 size_t strlepy char dst const char src size_t siz Copy a string Copy src to string dst of size siz At most siz 1 characters will be copied Always NULL terminates unless siz 0 Returns The strlcpy function returns strlen src If retval gt siz truncation occurred 5 13 2 14 size_t strlen const char src Calculate the length of a string The strlen function calculates the
134. rom_write_byte 6 avr_errno EDOM 16 ERANGE 16 avr interrupts cli 51 enable_external_int 52 INTERRUPT 51 sei 51 SIGNAL 51 timer_enable_int 52 avr_math acos 18 asin 18 atan 18 atan2 19 ceil 19 cos 19 cosh 19 exp 19 fabs 19 floor 19 fmod 19 frexp 19 inverse 20 Idexp 20 log 20 log10 20 M_PI 18 M_SQRT2 18 modf 20 pow 20 sin 20 sinh 21 sqrt 21 square 21 INDEX 127 tan 21 tanh 21 avr_pgmspace _elpm_inline 8 memcpy_P 8 PGM_P 8 PGM_VOID_P 8 PSTR 8 strcasecmp_P 8 strcat_P 9 stremp_P 9 strcpy_P 9 strlen_P 9 strncasecmp_P 10 strncmp_P 10 strncpy_P 10 avr_sfr BV 54 bit_is_clear 54 bit_is_set 54 BV 54 cbi 55 inb 55 inp 55 inw 55 loop_until_bit_is_clear 55 loop_until_bit_is_set 55 outb 56 outp 56 outw 56 sbi 56 avr_sleep set_sleep_mode 13 sleep_mode 13 SLEEP_MODE_ADC 13 SLEEP_MODE_EXT _ STANDBY 13 SLEEP_MODE_IDLE 13 SLEEP_MODE_PWR_DOWN 13 SLEEP_MODE_PWR_SAVE 13 SLEEP_MODE_STANDBY 13 avr_stdio EOF 26 fclose 27 fdevopen 27 FILE 26 fprintf 27 fprintf_P 27 fputc 27 printf 27 printf_P 28 putc 26 putchar 26 snprintf 28 snprintf_P 28 sprintf 28 sprintf_P 28 stderr 26 stdin 26 stdout 26 vfprintf 28 avr_stdlib _ compar_fn_t 33 _malloc_heap_end 40 _ malloc_heap start 40 _malloc_margin 40 abort 33 abs 33 atoi 33 atol 33 bsearch 34 calloc 34 div 34 DTOSTR_A
135. s However registers and constants are used in a different way if they refer to expressions of your C program The connection between registers and C operands is specified in the second and third part of the asm instruction the list of input and output operands respectively The general form is asm code output operand list input operand list clobber list Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 78 In the code section operands are referenced by a percent sign followed by a single digit 0 refers to the first 1 to the second operand and so forth From the above example 0 refers to r value and 1 refers to I PORTD This may still look a little odd now but the syntax of an operand list will be explained soon Let us first examine the part of a compiler listing which may have been generated from our example lds r24 value APP in r24 12 NOAPP sts value r24 The comments have been added by the compiler to inform the assembler that the in cluded code was not generated by the compilation of C statements but by inline as sembler statements The compiler selected register r24 for storage of the value read from PORTD The compiler could have selected any other register though It may not explicitely load or store the value and it may even decide not to include your assembler code at all All these decisions are part of the compiler s optimization strategy
136. s NULL no action occurs 5 12 4 12 charx itoa int __val char x _s int _radix The function itoa converts the integer value from val into an ASCII representation that will be stored under s The caller is responsible for providing sufficient storage in Ss Conversion is done using the radix as base which may be a number between 2 binary conversion and up to 36 If radix is greater than 10 the next digit after 9 will be the letter a The itoa function returns the pointer passed as s 5 12 4 13 long labs long _i The labs function computes the absolute value of the long integer i Note The abs and labs functions are builtins of gcc 5 12 4 14 Idiv_t Idiv long __num long _denom The Idiv function computes the value num denom and returns the quotient and re mainder in a structure named 1div_t that contains two long integer members named quot and rem Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 37 5 12 4 15 charx Itoa long int _ val char x _s int _radix The function Itoa converts the long integer value from val into an ASCII represen tation that will be stored under s The caller is responsible for providing sufficient storage in s Conversion is done using the radix as base which may be a number between 2 binary conversion and up to 36 If radix is greater than 10 the next digit after 9 will be the letter a The ltoa function
137. scribe how the various memory sections will be linked together 7 9 3 2 Passing linker options from the C compiler By default all unknown non option arguments on the avr gcc command line i e all filename arguments that don t have a suffix that is handled by avr gcc are passed straight to the linker Thus all files ending in o object files and a object libraries are provided to the linker System libraries are usually not passed by their explicit filename but rather using the 1 option which uses an abbreviated form of the archive filename see above avr libc ships two system libraries libc a and libm a While the standard library libc a will always be searched for unresolved references when the linker is started using the C compiler frontend i e there s always at least one implied 1c option the mathematics library 1ibm a needs to be explicitly requested using 1m See also the entry in the FAQ explaining this Conventionally Makefiles use the make macro LDLIBS to keep track of 1 and possibly L options that should only be appended to the C compiler command line Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 10 A simple project 112 when linking the final binary In contrast the macro LDF LAGS is used to store other command line options to the C compiler that should be passed as options during the linking stage The difference is that options are placed early on the command line
138. ses there will be better ways Clobbered registers will force the compiler to store their values before and reload them after your assembler code Avoiding clobbers gives the compiler more freedom while optimizing your code 7 4 5 Assembler Macros In order to reuse your assembler language parts it is useful to define them as macros and put them into include files AVR Libc comes with a bunch of them which could be found in the directory avr include Using such include files may produce com piler warnings if they are used in modules which are compiled in strict ANSI mode To avoid that you can write __asm__ instead of asm and _volatile__ instead of volatile These are equivalent aliases Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 4 Inline Asm 86 Another problem with reused macros arises if you are using labels In such cases you may make use of the special pattern which is replaced by a unique number on each asm statement The following code had been taken from avr include iomacros h define loop_until_bit_is_clear port bit __asm__ _ volatile__ L_ sbic 0 1 n t rjmp L_ no outputs I gintB_t porti I uint8_t bit When used for the first time L may be translated to L 1404 the next usage might create L_1405 or whatever In any case the labels became unique too 7 4 6 C Stub Functions Macro definitions will include the same assembler code wh
139. size_t _nmemb size_t __size __compar_fn_t __compar long strtol const char __nptr char __endptr int __base unsigned long strtoul const char x__nptr char xx__endptr int __base _inline__ long atol const char x_nptr _ATTR_PURE_ _inline__ int atoi const char __nptr _ATTR_PURE_ void exit int __status _ATTR_NORETURN_ void x malloc size_t _size _ATTR_MALLOC__ void free void __ptr void x calloc size_t __nele size_t __size _ATTR MALLOC__ double strtod const char x__nptr char __endptr int rand void void srand unsigned int __seed int rand_r unsigned long ctx Variables size_t __malloc_margin char x _malloc_heap_start char x _malloc_heap_end 5 12 2 Define Documentation 5 12 2 1 define DTOSTR_ALWAYS_SIGN 0x01 Bit value that can be passed in flags to dtostre 5 12 2 2 define DTOSTR_PLUS_SIGN 0x02 Bit value that can be passed in flags to dtostre 5 12 2 3 define DTOSTR_UPPERCASE 0x04 Bit value that can be passed in flags to dtostre Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 12 General utilities 34 5 12 2 4 define RAND MAX 0x7FFF Highest number that can be generated by rand 5 12 2 5 define RANDOM MAX 0x7FFFFFFF Highest number that can be generated by random 5 12 3 Typedef Documentation 5 12 3 1 typedef int _compar_fn_t const void x const void x Comparision function type for qsort just for convenience 5 12 4 Function Do
140. sters This is necessary when included in preprocessed assem bler S source files so it is done automatically if _ASSEMBLER__ is defined By default all addresses are defined as if they were memory addresses used in lds sts instructions To use these addresses in in out instructions you must subtract 0x20 from them For more backwards compatibility insert the following at the start of your old assem bler source file define __SFR_OFFSET 0 This automatically subtracts 0x20 from I O space addresses but it s a hack so it is recommended to change your source wrap such addresses in macros defined here as shown below After this is done the _SFR_OFFSET definition is no longer necessary and can be removed Real example this code could be used in a boot loader that is portable between devices with SPMCR at different addresses lt avr iom163 h gt define SPMCR _SFR_IO8 0x37 lt avr iom128 h gt define SPMCR _SFR_MEM8 0x68 if _SFR_IO_REG_P SPMCR out _SFR_IO_ADDR SPMCR r24 else sts _SFR_MEM_ADDR SPMCR r24 endif You can use the in out cbi sbi sbic sbis instructions without the _SFR_ IO_REG_P test if you know that the register is in the I O space as with SREG for example If it isn t the assembler will complain I O address out of range 0 0x3f so this should be fairly safe If you do not define __SFR_OFF SET so it will be 0x20 by default all special register addresses
141. t large but dynamic memory allocations get fragmented over time such that new requests don t quite fit into the holes of previously freed regions Large stack space requirements can arise in a C function containing large and or numerous local variables or when recursively calling function Note The pictures shown in this document represent typical situations where the RAM locations refer to an ATmega128 The memory addresses used are not displayed in a linear scale Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 5 Using malloc 89 external RAM 0x1100 OxFFFF 2 on board RAM LI j SP t RAMEND brkval lt SP __malloc_margin gt _ _malloc_heap_start __heap_start _ bss end _ data end __bss_start data start Figure 1 RAM map of a device with internal RAM Finally there s a challenge to make the memory allocator simple enough so the code size requirements will remain low yet powerful enough to avoid unnecessary memory fragmentation and to get it all done with reasonably few CPU cycles since microcon trollers aren t only often low on space but also run at much lower speeds than the typical PC these days The memory allocator implemented in avr libc tries to cope with all of these con straints and offers some tuning options that can be used if there are more resources available than in the default configuration 7 5 2 Internal vs external RAM
142. t operator is used In the situation where your code depends on different registers used for input and output operands you must add the amp constraint modifier to your output operand The following example demonstrates this problem asm volatile in 0 1 NANE Tout Sl 327 imc amp r input I port r output In this example an input value is read from a port and then an output value is written to the same port If the compiler would have choosen the same register for input and out put then the output value would have been destroyed on the first assembler instruction Fortunately this example uses the amp constraint modifier to instruct the compiler not to select any register for the output value which is used for any of the input operands Back to swapping Here is the code to swap high and low byte of a 16 bit value asm volatile mov tmp_reg__ A0 n t mov A0 BO nye mov B0 __tmp_reg__ n t r value 0 value First you will notice the usage of register __tmp_reg which we listed among other special registers in the Assembler Code section You can use this register without saving its contents Completely new are those letters A and B in A0 and B0 In fact they refer to two different 8 bit registers both containing a part of value Another example to swap bytes of a 32 bit value asm volatile mov __tmp_reg__ A0 n t mov A0 D0 n t mov D0 __tmp_reg__ n t
143. t specifies the type of conversion to be applied The conversion specifiers and their meanings are diouxX The int or appropriate variant argument is converted to signed deci mal d and i unsigned octal o unsigned decimal u or unsigned hexadecimal x and X notation The letters abcdef are used for x conversions the letters ABCDEF are used for X conversions The precision if any gives the mini mum number of digits that must appear if the converted value requires fewer digits it is padded on the left with zeros p The void x argument is taken as an unsigned integer and converted similarly as a x command would do c The int argument is converted to an unsigned char and the resulting character is written s The char x argument is expected to be a pointer to an array of character type pointer to a string Characters from the array are written up to but not including a terminating NUL character if a precision is specified no more than the number specified are written If a precision is given no null character need be present if the precision is not specified or is greater than the size of the array the array must contain a terminating NUL character A is written No argument is converted The complete conversion specifica tion is 90 eE The double argument is rounded and converted in the format d ddde177dd where there is one digit before the decimal point character and the number of digits a
144. ted on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 25 to associate a stream to a device where the device needs to provide a function to send a character to receive a character or both There s no differentiation between text and binary streams inside avr libc Character n is sent literally down to the device s put function If the device requires a carriage return r character to be sent before the linefeed its put routine must implement this see note 2 For convenience the first call to devopen that opens a stream for reading will cause the resulting stream to be aliased to stdin Likewise the first call to fde vopen that opens a stream for writing will cause the resulting stream to be aliased to both stdout and stderr Thus ifthe open was done with both read and write intent all three standard streams will be identical Note that these aliases are indistin guishable from each other thus calling fclose on such a stream will effectively also close all of its aliases note 3 All the printf family functions come in two flavours the standard name where the format string is expected to be in SRAM as well as a version with _P appended where the format string is expected to reside in the flash ROM The macro PSTR explained in Program Space String Utilities will become very handy to declare these format strings Note 1 It might have been possible to implem
145. tely fubar The second function shows how to pass by reference the memory mapped address of the io port to the function so that you can read and write to it in the function Here s the object code generated for the function call Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 3 Frequently Asked Questions 72 set_bits_func_correct amp PORTB 0x55 112 65 e5 1di r22 0x55 85 114 88 e3 1di r24 0x38 56 116 90 e0 Ildi r25 0x00 7 0 118 Oe 94 7c 00 call Oxf8 You can clearly see that 0x0038 is correctly passed for the address of the io port Looking at the disassembled object code for the body of the function we can see that the function is indeed performing the operation we intended void set_bits_func_correct volatile uint8_t port uint8_t mask F9 fc 01 movw r30 r24 port mask fa 80 81 ld r24 Z fc 86 2b or r24 r22 fe 80 83 st Z r24 100 08 95 ret Notice that we are accessing the io port via the LD and ST instructions The port parameter must be volatile to avoid a compiler warning Note Because of the nature of the IN and OUT assembly instructions they can not be used inside the function when passing the port in this way Readers interested in the details should consult the Instruction Set data sheet Finally we come to the macro version of the operation In this contrived example the macro is the most efficient method with respect to both execution speed and code size
146. terrific free set of tools to develop AVR projects We all owe thanks to 7 2 7 2 1 The GCC Team which produced a very capable set of development tools for an amazing number of platforms and processors Denis Chertykov denisc overta ru for making the AVR specific changes to the GNU tools Denis Chertykov and Marek Michalkiewicz marekm linux org pl for developing the standard libraries and startup code for AVR GCC Theodore A Roth troth verinet com for setting up avr libc s CVS repository bootstrapping the documentation project using doxygen and continued maintenance of the project on http savannah gnu org projects avr libc Uros Platise for developing the AVR programmer tool uisp Joerg Wunsch joerg FreeBSD ORG for adding all the AVR development tools to the FreeBSD http www freebsd org ports tree and for pro viding the demo project Brian Dean bsd bsdhome com for developing avrprog an alternate to uisp and for contributing documentation which describes how to use it All the people who have submitted suggestions patches and bug reports See the AUTHORS files of the various tools And lastly all the users who use the software If nobody used the software we would probably not be very motivated to continue to develop it Keep those bug reports coming avr libc and assembler programs Introduction There might be several reasons to write code for AVR microcontrollers using plain
147. tial value is non Zero Back to FAQ Index 7 3 9 Why do some 16 bit timer registers sometimes get trashed Some of the timer related 16 bit IO registers use a temporary register called TEMP in the Atmel datasheet to guarantee an atomic access to the register despite the fact that two separate 8 bit IO transfers are required to actually move the data Typically this includes access to the current timer counter value register TCNTn the input capture register ICRn and write access to the output compare registers OCRnM Refer to the actual datasheet for each device s set of registers that involves the TEMP register When accessing one of the registers that use TEMP from the main application and possibly any other one from within an interrupt routine care must be taken that no access from within an interrupt context could clobber the TEMP register data of an in progress transaction that has just started elsewhere To protect interrupt routines against other interrupt routines it s usually best to use the SIGNAL macro when declaring the interrupt function and to ensure that interrupts are still disabled when accessing those 16 bit timer registers Within the main program access to those registers could be encapsulated in calls to the cli and sei macros If the status of the global interrupt flag before accessing one of those registers is uncertain something like the following example code can be used Generated on Mon
148. tiny11__ Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 9 Using the GNU tools 106 Architecture MCU name Macro avrl attiny 12 AVR_ATtiny12__ avrl attiny 15 _ AVR _ATtiny15_ avrl attiny28 _AVR_ATtiny28__ avr2 at90s2313 _ AVR_AT90S2313__ avr2 at90s2323 _ AVR_AT90S2323__ avr2 at90s2333 _ AVR_AT90S2333__ avr2 at90s2343 _AVR_AT90S2343__ avr2 attiny22 _ AVR _ATtiny22__ avr2 attiny26 _ AVR_ATtiny26__ avr2 at90s4414 _ AVR_AT90S4414__ avr2 at90s4433 _ AVR_AT90S4433__ avr2 at90s4434 _AVR_AT90S4434__ avr2 at90s8515 _AVR_AT90S8515__ avr2 at90c8534 _AVR_AT90C8534__ avr2 at90s8535 AVR_AT9088535__ avr2 at86rf401 _ AVR_AT86RF401__ avr3 atmega 103 _AVR_ATmegal03__ avr3 atmega603 _AVR_ATmega603__ avr3 at43usb320 _AVR_AT43USB320__ avr3 at43usb355 _AVR_AT43USB355__ avr3 at76c711 _AVR_AT76C711__ avr4 atmega8 _ AVR_ATmega8 __ avr4 atmega8515 _AVR_ATmega8515__ avr4 atmega8535 _AVR_ATmega8535__ avr5 atmega 16 _ AVR _ATmega16__ avr5 atmegal61 _AVR_ATmegal61__ avr5 atmega 162 _ AVR _ATmega162__ avr5 atmega 163 _ AVR_ATmega163__ avr5 atmega169 _ AVR _ATmega169__ avr5 atmega32 _ AVR_ATmega32__ avr5 atmega323 _AVR_ATmega323 __ avr5 atmega64 _ AVR_ATmega64__ avr5 atmega128 _ AVR_ATmega128__ avr5 at94k _AVR_AT94K__ e morder1 e morder2 Change the order of register assign
149. tion 52 Special function regist rs 2 lt ee ww ou 53 S151 Detailed Descriphon lt lt ce ecr eee e eda BARE s 53 S152 Deine Domumentaion aa esp ee pie ee e 55 Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen CONTENTS iii 6 avr libc Data Structure Documentation 6 1 6 2 diy t Struct Reference 2 a saca da ee ee Od i wae S 6 1 1 Detaled Description lt lt ss lt n ep ee dee SR RES idiv t Stmet Referenc lt A hea eee hE eR 6 2 1 Detailed Description lt lt lt s socs i255 eee be eee ed 7 avr libc Page Documentation T ae Ta 7 4 Acknowledgements o 00000 cce se Re ee Re 8 avr libc and assembler programs osoa a Tod ONIMDA i e Rake e d 1 22 Invoking the compiler oc sesser ji a 720 Example program 2 2 Cecred eeir o i d Paw es Frequently Asked Questions lt s s ec hee ee ES o Tal 1 eee 7 3 2 My program doesn t recognize a variable updated within an intermuipt LODOS o ek a ca o e i k 7 3 3 I get undefined reference to for functions like sinQ 7 3 4 How to permanently bind a variable to a register 7 3 5 How to modify MCUCR or WDTCR early 7 3 6 What is all this _BV stuff about 7 3 7 Can I use C on the AVR 7 3 8 Shouldn t I initialize all my variables 7 3 9 Why do some 16 bit timer registers sometimes get trashed 7 3 10 How do I use a define d
150. tly avr gcc regardless of the actual source language used e The invokation of the C preprocessor will be automatic and will include the appropriate options to locate required include files in the filesystem e The invokation of the linker will be automatic and will include the appropri ate options to locate additional libraries as well as the application start up code crtXXX o and linker script Note that the invokation of the C preprocessor will be automatic when the filename provided for the assembler file ends in S the capital letter s This would even apply to operating systems that use case insensitive filesystems since the actual decision is made based on the case of the filename suffix given on the command line not based on the actual filename from the file system Alternatively the language can explicitly be specified using the x assembler with cpp option Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 2 avr libe and assembler programs 60 7 2 3 Example program The following annotated example features a simple 100 kHz square wave generator using an AT90S1200 clocked with a 10 7 MHz crystal Pin PD6 will be used for the square wave output include lt avr io h gt Note 1 work 16 Note 2 tmp 17 inttmp 19 intsav 0 SQUARE PD6 Note 3 Note 4 tmconst 10700000 200000 100 kHz gt 200000 edges s fuzz 8 clocks in ISR until TCNTO is set section text
151. to list out its options For instance to get a feel of the application s size the h option can be used The output of this option shows how much space is used in each of the sections the st ab Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 10 A simple project 117 and stabstr sections hold the debugging information and won t make it into the ROM file An even more useful option is S This option disassembles the binary file and inter sperses the source code in the output This method is much better in my opinion than using the S with the compiler because this listing includes routines from the libraries and the vector table contents Also all the fix ups have been satisfied In other words the listing generated by this option reflects the actual code that the processor will run avr objdump h S demo elf gt demo lst Here s the output as saved in the demo 1st file demo elf file format elf32 avr Sections Idx Name Size VMA LMA File off Algn 0 text 000000ca 00000000 00000000 00000094 2 0 CONTENTS ALLOC LOAD READONLY CODE i Gate 00000000 00800060 000000ca 0000015e 2 0 CONTENTS ALLOC LOAD DATA 2 408s 00000003 00800060 00800060 0000015e 2 0 ALLOC 3 noinit 00000000 00800063 00800063 0000015e 2 0 CONTENTS 4 eeprom 00000000 00810000 00810000 0000015e 2 0 CONTENTS 5 stab 0000066c 00000000 00000000 00000160 2 2 CONTENTS READONLY DEBUGGING 6 stabstr 00000630 00000
152. ttp savannah gnu org projects uisp Installation avrprog 2 1 0 http www bsdhome com avrprog Installation Usage Notes GDB 5 2 1 http sources redhat com gdb Installation Generated on Mon Dec 9 22 14 31 2002 for avr libc by Doxygen 7 7 Installing the GNU Tool Chain 99 e Simulavr 0 1 0 http savannah gnu org projects simulavr Installation e AVaRice 1 5 http avarice sourceforge net Installation 7 7 3 GNU Binutils for the AVR target The binutils package provides all the low level utilities needed in building and ma nipulating object files Once installed your environment will have an AVR assembler avr as linker avr 1ad and librarian avr ar and avr ranlib In addi tion you get tools which extract data from object files avr objcopy dissassem ble object file information avr objdump and strip information from object files avr strip Before we can build the C compiler these tools need to be in place Download and unpack the source files bunzip2 c binutils lt version gt tar bz2 tar xf cd binutils lt version gt Note Replace lt version gt with the version of the package you downloaded Note If you obtained a gzip compressed file gz use gunzip instead of bunzip2 It is usually a good idea to configure and build binutils in a subdirectory so as not to pollute the source with the compiled files This is recommended by the binutils developers mkd
153. turns true if its argument is any value 0 though 9 inclusive e intisalnum int __c _ATTR_CONST__ Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 6 Character Operations 15 int isalpha int _c _ATTR CONST__ int isascii int __c _ATTR_CONST_ int isblank int __c _ATTR_CONST_ int isentrl int __c _ATTR_CONST__ int isdigit int __c _ATTR_CONST_ int isgraph int __c _ATTR_CONST__ int islower int __c _ATTR_CONST_ int isprint int __c _ATTR_CONST__ int ispunct int _c _ATTR_CONST_ int isspace int _c _ATTR CONST__ int isupper int _c _ATTR CONST__ int isxdigit int __c _ATTR_CONST__ Character convertion routines If c is not an unsigned char value or EOF the behaviour of these functions is undefined e int toascii int __c _ATTR_CONST_ e int tolower int __c _ATTR_CONST__ e int toupper int __c _ATTR_CONST__ 5 6 2 Function Documentation 5 6 2 1 int isalnum int _c Checks for an alphanumeric character It is equivalent to isalpha c is digit c 5 6 2 2 int isalpha int _c Checks for an alphabetic character It is equivalent to isupper c is lower c 5 6 2 3 int isascii int _c Checks whether c is a 7 bit unsigned char value that fits into the ASCII character set 5 6 2 4 int isblank int _c Checks for a blank character that is a space or a tab 5 6 2 5 int iscntrl int _c Checks for a control character Generated on Mon Dec 9
154. uble _x The log function returns the logarithm of argument x to base 10 If the argument is less than or equal 0 a domain error will occur 5 9 3 17 double modf double _value double x __iptr The modf function breaks the argument value into integral and fractional parts each of which has the same sign as the argument It stores the integral part as a double in the object pointed to by iptr The modf function returns the signed fractional part of value 5 9 3 18 double pow double __x double _ y The function pow returns the value of x to the exponent y 5 9 3 19 double sin double __x The sin function returns the sine of x measured in radians 5 9 3 20 double sinh double _x The sinh function returns the hyperbolic sine of x 5 9 3 21 double sqrt double __x The sqrt function returns the non negative square root of x 5 9 3 22 double square double _x The function square returns x x Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 10 Setjmp and Longjmp 22 Note This function does not belong to the C standard definition 5 9 3 23 double tan double __x The tan function returns the tangent of x measured in radians 5 9 3 24 double tanh double __x The tanh function returns the hyperbolic tangent of x 5 10 Setjmp and Longjmp 5 10 1 Detailed Description While the C language has the dreaded goto statement it can only be used to jump to a label in
155. value of 1 In compliance with the C standard these functions operate on int arguments Since the underlying algorithm already uses 32 bit calculations this causes a loss of preci sion See random for an alternate set of functions that retains full 32 bit precision Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 512 General utilities 38 5 12 4 19 int rand r unsigned long ctx Variant of rand that stores the context in the user supplied variable located at ctx instead of a static library variable so the function becomes re entrant 5 12 4 20 long random void The random function computes a sequence of pseudo random integers in the range of 0 to RANDOM_MAX as defined by the header file lt stdlib h gt The srandom function sets its argument seed as the seed for a new sequence of pseudo random numbers to be returned by rand These sequences are repeatable by calling srandom with the same seed value If no seed value is provided the functions are automatically seeded with a value of 1 5 12 4 21 long random r unsigned long ctx Variant of random that stores the context in the user supplied variable located at ct x instead of a static library variable so the function becomes re entrant 5 12 4 22 void srand unsigned int __seed Pseudo random number generator seeding see rand 5 12 4 23 void srandom unsigned long __seed Pseudo random number generator seeding see random
156. vided by the application If successful a pointer to the structure for the opened Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities 28 stream is returned Reasons for a possible failure currently include that neither the put nor the get argument have been provided thus attempting to open a stream with no IO intent at all or that insufficient dynamic memory is available to establish a new stream If the put function pointer is provided the stream is opened with write intent The function passed as put shall take one character to write to the device as argument and shall return 0 if the output was successful and a nonzero value if the character could not be sent to the device If the get function pointer is provided the stream is opened with read intent The function passed as get shall take no arguments and return one character from the device passed as an int type If an error occurs when trying to read from the device it shall return 1 If both functions are provided the stream is opened with read and write intent The first stream opened with read intent is assigned to st din and the first one opened with write intent is assigned to both stdout and stderr The third parameter opt s is currently unused but reserved for future extensions 5 11 3 3 int fprintf FILE x _ stream const char x _fint The function fprintf performs formatted output to stream See vfprintf
157. will take place Refer to How to modify MCUCR or WDTCR early for a description how to do this using few lines of assembler code or to the chapter about memory sections for an example written in C The explanation of malloc contains a discussion about the use of internal RAM vs external RAM in particular with respect to the various possible locations of the heap Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 4 Inline Asm 76 area reserved for malloc It also explains the linker command line options that are required to move the memory regions away from their respective standard locations in internal RAM Finally if the application simply wants to use the additional RAM for private data storage kept outside the domain of the C compiler e g through a char variable initialized directly to a particular address it would be sufficient to defer the initializa tion of the external RAM interface to the beginning of main so no tweaking of the init1 section is necessary The same applies if only the heap is going to be located there since the application start up code does not affect the heap It is not recommended to locate the stack in external RAM In general accessing exter nal RAM is slower than internal RAM and errata of some AVR devices even prevent this configuration from working properly at all Back to FAQ Index 7 4 Inline Asm AVR GCC Inline Assembler Cookbook About this Document The
158. with a second argument of 0 1 will be returned instead Parameters _jmpb Information saved by a previous call to setjmp ret Value to return to the caller of setjmp Returns This function never returns 5 10 2 2 int setjmp jmp_buf _jmpb Save stack context for non local goto include lt setjmp h gt Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 11 Standard IO facilities setjmp saves the stack context environment in __jmpb for later use by longjmp The stack context will be invalidated if the function which called setjmp returns Parameters _jmpb Variable of type jmp_buf which holds the stack information such that the environment can be restored Returns setimp returns O if returning directly and non zero when returning from longjmp using the saved context 5 11 Standard IO facilities 5 11 1 Detailed Description include lt stdio h gt Warning This implementation of the standard IO facilities is new to avr libc It is not yet expected to remain stable so some aspects of the API might change in a future release This file declares the standard IO facilities that are implemented in avr libc Due to the nature of the underlying hardware only a limited subset of standard IO is im plemented There s no actual file implementation available so only device IO can be performed Since there s no operating system the application needs to provide enough details about thei
159. x strncpy_P char x dest PGM P src size_t n The strncpy_P function is similar to strcpy_P except that not more than n bytes of src are copied Thus if there is no null byte among the first n bytes of src the result will not be null terminated In the case where the length of src is less than that of n the remainder of dest will be padded with nulls Returns The strncpy_P function returns a pointer to the destination string dest 5 4 Additional notes from lt avr sfr_defs h gt The lt avr sfr_defs h gt file is included by all of the lt avr ioXXXX Hh gt files which use macros defined here to make the special function register definitions look like C variables or simple constants depending on the _SFR_ASM_COMPAT define Some examples from lt avr iom128 h gt to show how to define such macros define PORTA _SFR_108 0x1b define TCNT1 _SFR_IC16 0x2c define PORTF _SFR_MEM8 0x61 define TCNT3 _SFR_MEM16 0x88 If _SFR_ASM_COMPAT is not defined C programs can use names like PORTA directly in C expressions also on the left side of assignment operators and GCC will do the Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 5 4 Additional notes from lt avr sfr_defs h gt 12 right thing use short I O instructions if possible The __SFR_OFFSET definition is not used in any way in this case Define SFR_ASM_COMPAT as 1 to make these names work as simple constants ad dresses of the I O regi
160. you will probably want to install either simulavr or avarice since avr gdb needs one of these to run as a a remote target 7 7 9 Simulavr Simulavr also uses the configure system so to build and install gunzip c simulavr lt version gt tar gz tar xf cd simulavr lt version gt mkdir obj avr cd obj avr configure prefix PREFIX make make install Ur EE EE E EEE nm Note You might want to have already installed avr binutils avr gcc and avr libc if you want to have the test programs built in the simulavr source Generated on Mon Dec 9 22 14 31 2002 for avr libe by Doxygen 7 8 Using the avrprog program 103 7 7 10 AVaRice Note These install notes are specific to avarice 1 5 You will have to edit prog avarice Makefile for avarice in order to install into a directory other than usr local avr bin Edit the line which looks like this INSTALL_DIR usr local avr bin such that INSTALL_DIR is now set to whatever you decided on PREFIX bin to be gunzip c avarice 1 5 tar gz tar xf cd avarice 1 5 prog avarice make make install nin MN Ur 7 8 Using the avrprog program Note This section was contributed by Brian Dean bsd bsdhome com avrprog is a program that is used to update or read the flash and EEPROM memories of Atmel AVR microcontrollers on FreeBSD Unix It supports the Atmel serial pro gramming protocol using the PC s parallel port and can upload either a raw binary file or a
Download Pdf Manuals
Related Search
avr libc user manual.. arduino avr-libc avr assembler user guide avr instruction set manual config_avb_libavb avr assembly instruction set avr programming in c avr assembly code examples libavcodec/avcodec.h avcodec_find_encoder_by_name libx264 windows libavcodec/avcodec.h
Related Contents
Silent Keystroke VoIP Philips HP8340 YMCRPR8C25 User Manual V1.0 Mosaic Training Manual PERLE D`EAU exclusive cairai mix csi mix rsi Philips M110W (CK-HA0230) User Manual IBM, Rational, Atria: ClearTrack Installation and WORK SMARTER WITH YOUR MOBILE Copyright © All rights reserved.
Failed to retrieve file