[Armadeus-commitlog] armadeus branch, master, updated. release-3.2-265-g42538d4
Brought to you by:
sszy
|
From: Fabien M <fa...@us...> - 2010-03-24 08:43:22
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 42538d418479ea216367939ec181a459cf65878d (commit)
from 955fb1e2cb082de48d8613570dfc02db734b616a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 42538d418479ea216367939ec181a459cf65878d
Author: Fabien Marteau <fab...@ar...>
Date: Wed Mar 24 09:43:01 2010 +0100
coding rules
-----------------------------------------------------------------------
Summary of changes:
target/packages/as_devices/c/as_gpio.c | 2 +-
target/packages/as_devices/c/as_gpio.h | 20 ++++++++++----------
.../packages/as_devices/python/src/AsGpio_wrap.c | 4 ++--
3 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/target/packages/as_devices/c/as_gpio.c b/target/packages/as_devices/c/as_gpio.c
index b6adb0d..c24c4e9 100644
--- a/target/packages/as_devices/c/as_gpio.c
+++ b/target/packages/as_devices/c/as_gpio.c
@@ -1,5 +1,5 @@
/*
-** THE ARMadeus Systems
+** The ARMadeus Project
**
** Copyright (C) 2009 The armadeus systems team
** Fabien Marteau <fab...@ar...>
diff --git a/target/packages/as_devices/c/as_gpio.h b/target/packages/as_devices/c/as_gpio.h
index a83a8fc..48dee74 100644
--- a/target/packages/as_devices/c/as_gpio.h
+++ b/target/packages/as_devices/c/as_gpio.h
@@ -1,5 +1,5 @@
/*
-** THE ARMadeus Systems
+** The ARMadeus Project
**
** Copyright (C) 2009 The armadeus systems team
** Fabien Marteau <fab...@ar...>
@@ -54,9 +54,9 @@ struct as_gpio_device *as_gpio_open(char aPortChar);
*
* @return error if negative value
*/
-int32_t as_gpio_set_pin_direction( struct as_gpio_device *aDev,
- int aPinNum,
- int aDirection);
+int32_t as_gpio_set_pin_direction(struct as_gpio_device *aDev,
+ int aPinNum,
+ int aDirection);
/** @brief Set pin value
*
@@ -66,9 +66,9 @@ int32_t as_gpio_set_pin_direction( struct as_gpio_device *aDev,
*
* @return error if negative
*/
-int32_t as_gpio_set_pin_value( struct as_gpio_device *aDev,
- int aPinNum,
- int aValue);
+int32_t as_gpio_set_pin_value(struct as_gpio_device *aDev,
+ int aPinNum,
+ int aValue);
/** @brief Get pin value
*
@@ -77,8 +77,8 @@ int32_t as_gpio_set_pin_value( struct as_gpio_device *aDev,
*
* @return pin value if positive or null, error if negative
*/
-int32_t as_gpio_get_pin_value( struct as_gpio_device *aDev,
- int aPinNum);
+int32_t as_gpio_get_pin_value(struct as_gpio_device *aDev,
+ int aPinNum);
/** @brief Close port access
*
@@ -87,7 +87,7 @@ int32_t as_gpio_get_pin_value( struct as_gpio_device *aDev,
* @return pin value if positive or null, error if negative
*/
-int32_t as_gpio_close( struct as_gpio_device *aDev);
+int32_t as_gpio_close(struct as_gpio_device *aDev);
#ifdef __cplusplus
}
diff --git a/target/packages/as_devices/python/src/AsGpio_wrap.c b/target/packages/as_devices/python/src/AsGpio_wrap.c
index 482977c..b807ebc 100644
--- a/target/packages/as_devices/python/src/AsGpio_wrap.c
+++ b/target/packages/as_devices/python/src/AsGpio_wrap.c
@@ -1,5 +1,5 @@
/*
-** THE ARMadeus Systems
+** The ARMadeus Project
**
** Copyright (C) 2010 The armadeus systems team
** Fabien Marteau <fab...@ar...>
@@ -160,7 +160,7 @@ static PyObject * setPinValue(PyObject *self, PyObject *args)
if (dev == NULL)
{
PyErr_SetString(PyExc_IOError,
- "memory allocation:Â can't malloc fdev structure");
+ "memory allocation: can't malloc fdev structure");
return NULL;
}
dev->port_letter = aPort_letter;
hooks/post-receive
--
armadeus
|