Added all required GPIOs

git-svn-id: https://svn.vbchaos.nl/svn/hsb/trunk@242 05563f52-14a8-4384-a975-3d1654cca0fa
This commit is contained in:
mmi
2017-10-06 12:08:24 +00:00
parent f9b2cda7f8
commit e54e15da18
10 changed files with 426 additions and 256 deletions

View File

@@ -48,7 +48,7 @@ typedef enum
{
INPUT = 0,
OUTPUT = !INPUT
}GpioDirection;
} GpioDirection;
struct Gpio
{
@@ -56,6 +56,7 @@ struct Gpio
T_PL_GPIO gpio;
GpioDirection direction;
bool status;
bool initialized;
};
// -----------------------------------------------------------------------------