Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.
Dependents: 1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB
Fork of mbed by
TARGET_SAMD21G18A/io.h@121:672067c3ada4, 2016-04-14 (annotated)
- Committer:
- elijahorr
- Date:
- Thu Apr 14 07:28:54 2016 +0000
- Revision:
- 121:672067c3ada4
- Parent:
- 111:4336505e4b1c
.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 111:4336505e4b1c | 1 | #ifndef _SAM_IO_ |
Kojto | 111:4336505e4b1c | 2 | #define _SAM_IO_ |
Kojto | 111:4336505e4b1c | 3 | |
Kojto | 111:4336505e4b1c | 4 | #include <stddef.h> |
Kojto | 111:4336505e4b1c | 5 | #include <stdint.h> |
Kojto | 111:4336505e4b1c | 6 | #include <stdbool.h> |
Kojto | 111:4336505e4b1c | 7 | |
Kojto | 111:4336505e4b1c | 8 | |
Kojto | 111:4336505e4b1c | 9 | /* SAM D20 family */ |
Kojto | 111:4336505e4b1c | 10 | #if (SAMD20) |
Kojto | 111:4336505e4b1c | 11 | # include "samd20.h" |
Kojto | 111:4336505e4b1c | 12 | #endif |
Kojto | 111:4336505e4b1c | 13 | |
Kojto | 111:4336505e4b1c | 14 | #if (SAMD21) |
Kojto | 111:4336505e4b1c | 15 | # include "samd21.h" |
Kojto | 111:4336505e4b1c | 16 | #endif |
Kojto | 111:4336505e4b1c | 17 | |
Kojto | 111:4336505e4b1c | 18 | #if (SAMR21) |
Kojto | 111:4336505e4b1c | 19 | # include "samr21.h" |
Kojto | 111:4336505e4b1c | 20 | #endif |
Kojto | 111:4336505e4b1c | 21 | |
Kojto | 111:4336505e4b1c | 22 | #if (SAMD10) |
Kojto | 111:4336505e4b1c | 23 | # include "samd10.h" |
Kojto | 111:4336505e4b1c | 24 | #endif |
Kojto | 111:4336505e4b1c | 25 | |
Kojto | 111:4336505e4b1c | 26 | #if (SAMD11) |
Kojto | 111:4336505e4b1c | 27 | # include "samd11.h" |
Kojto | 111:4336505e4b1c | 28 | #endif |
Kojto | 111:4336505e4b1c | 29 | |
Kojto | 111:4336505e4b1c | 30 | #if (SAML21) |
Kojto | 111:4336505e4b1c | 31 | # include "saml21.h" |
Kojto | 111:4336505e4b1c | 32 | #endif |
Kojto | 111:4336505e4b1c | 33 | |
Kojto | 111:4336505e4b1c | 34 | #endif /* _SAM_IO_ */ |