~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

Viewing changes to include/avr/version.h

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2007-12-29 16:20:03 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20071229162003-xx0w1lyakuvfwrhm
Tags: upstream-1.4.7
ImportĀ upstreamĀ versionĀ 1.4.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
/** \ingroup avr_version
57
57
    String literal representation of the current library version. */
58
 
#define __AVR_LIBC_VERSION_STRING__ "1.4.6"
 
58
#define __AVR_LIBC_VERSION_STRING__ "1.4.7"
59
59
 
60
60
/** \ingroup avr_version
61
61
    Numerical representation of the current library version.
65
65
    added.  It is intented to provide a monotonically increasing
66
66
    numerical value that can easily be used in numerical checks.
67
67
 */
68
 
#define __AVR_LIBC_VERSION__        10406UL
 
68
#define __AVR_LIBC_VERSION__        10407UL
69
69
 
70
70
/** \ingroup avr_version
71
71
    String literal representation of the release date. */
72
 
#define __AVR_LIBC_DATE_STRING__    "20070514"
 
72
#define __AVR_LIBC_DATE_STRING__    "20071030"
73
73
 
74
74
/** \ingroup avr_version
75
75
    Numerical representation of the release date. */
76
 
#define __AVR_LIBC_DATE_            20070514UL
 
76
#define __AVR_LIBC_DATE_            20071030UL
77
77
 
78
78
/** \ingroup avr_version
79
79
    Library major version number. */
85
85
 
86
86
/** \ingroup avr_version
87
87
    Library revision number. */
88
 
#define __AVR_LIBC_REVISION__       6
 
88
#define __AVR_LIBC_REVISION__       7
89
89
 
90
90
#endif /* _AVR_VERSION_H_ */