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 mbed official

Committer:
Kojto
Date:
Tue Dec 15 14:39:38 2015 +0000
Revision:
111:4336505e4b1c
Release 111 of the mbed library

Changes:
- new platforms - Atmel targets (SAMR21G18A, SAMD21J18A, SAMD21G18A)
- Streams - add var argument (vprintf, vscanf)
- MAXWSNENV - BLE stack library additio
- LPC1768 - fix slave read

Who changed what in which revision?

UserRevisionLine numberNew 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_ */