1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

[sam] fixing last stupid commit

This commit is contained in:
Thibaut VIARD
2011-09-06 21:05:41 +02:00
parent 8f01f92e87
commit a5d2349761
550 changed files with 16866 additions and 17198 deletions

View File

@ -1,3 +1,7 @@
/*
%atmel_license%
*/
#ifndef _PIO_
#define _PIO_
@ -21,7 +25,7 @@ typedef enum _EPioType
PIO_PERIPH_D, /* The pin is controlled by the associated signal of peripheral D. */
PIO_INPUT, /* The pin is an input. */
PIO_OUTPUT_0, /* The pin is an output and has a default level of 0. */
PIO_OUTPUT_1, /* The pin is an output and has a default level of 1. */
PIO_OUTPUT_1 /* The pin is an output and has a default level of 1. */
} EPioType ;