GSoC 2015: Beagleboard BSP Improvement

2015-03-26 Thread Ketul Shah
Hello all, I have done improvements of my proposal on melange as per feedback. So please review it and I would be happy to hear your comments. My project title is "Beagleboard BSP Improvement" under name : ketul. Thanks and regards, ketul ___ devel ma

Re: GSoC 2015: Beagleboard BSP Improvement

2015-03-27 Thread Ketul Shah
> On Thu, Mar 26, 2015 at 8:14 PM, Ketul Shah > wrote: > > Hello all, > > > > I have done improvements of my proposal on melange as per feedback. So > > please review it and I would be happy to hear your comments. My project > > title is "Beagleboard BSP I

[PATCH] Beagle BSP Improvements (GPIO driver)

2015-04-17 Thread Ketul Shah
arm_beagle + * + * @brief Global BSP definitions. + */ + +/* + * Copyright (c) 2015 Ketul Shah + + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#include +#include +#include

Re: [PATCH] Beagle BSP Improvements (GPIO driver)

2015-04-23 Thread Ketul Shah
- the code should use a more consistent indenting style, and make > variable names more descriptive than 'tmp'. > - don't leave the configure changes in like in acinclude.m4 > > bonus: > - add DM3730 (beagleboard) support. > > Good luck! > > > On Fr

Re: [PATCH] Beagle BSP Improvements (GPIO driver)

2015-06-23 Thread Ketul Shah
S += misc/i2c.c diff --git a/c/src/lib/libbsp/arm/beagle/gpio/gpio.c b/c/src/lib/libbsp/arm/beagle/gpio/gpio.c new file mode 100644 index 000..7ffb17b --- /dev/null +++ b/c/src/lib/libbsp/arm/beagle/gpio/gpio.c @@ -0,0 +1,198 @@ +/** + * @file + * + * @ingroup arm_beagle + * + * @brief Global BSP de

Re: [PATCH] Beagle BSP Improvements (GPIO driver)

2015-06-23 Thread Ketul Shah
Sorry wrong attachment. Kindly review the recent one. Thanks. Best Regards, Ketul On 23 June 2015 at 20:20, Ketul Shah wrote: > Hello all, > > Sorry as I am updating you related to my GPIO API after a huge delay. > > I have developed it and tested it on my BBB. I did some big

[PATCH] Beagle BSP Improvements (ADC driver)

2015-06-27 Thread Ketul Shah
c/lib/libbsp/arm/beagle/adc/adc.c @@ -0,0 +1,97 @@ +/** + * @file + * + * @ingroup arm_beagle + * + * @brief ADC definitions. + */ + +/** + * Copyright (c) 2015 Ketul Shah + + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or

[PATCH 1/2] GPIO Driver

2015-06-30 Thread Ketul Shah
for GPIO + */ + +/** + * Copyright (c) 2015 Ketul Shah + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifndef _RTEMS_GPIO_H +#define _RTEMS_GPIO_H + +#ifdef __cplusplus

[PATCH 2/2] GPIO Driver

2015-06-30 Thread Ketul Shah
arm_beagle + * + * @brief BeagleBone Black BSP definitions. + */ + +/** + * Copyright (c) 2015 Ketul Shah + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifndef

[PATCH] GPIO Driver Sample Application

2015-06-30 Thread Ketul Shah
diff --git a/testsuites/samples/gpio/init.c b/testsuites/samples/gpio/init.c new file mode 100644 index 000..391d80c --- /dev/null +++ b/testsuites/samples/gpio/init.c @@ -0,0 +1,94 @@ +/* + * Copyright (c) 2015 Ketul Shah + * + * The license and distribution terms for this file may be

Re: [PATCH 1/2] GPIO Driver

2015-07-01 Thread Ketul Shah
shared code, so >> perhaps you should focus on just getting a localized solution working >> in the beagleboard BSP >> >> On Tue, Jun 30, 2015 at 5:46 AM, Ketul Shah >> wrote: >> > diff --git a/cpukit/include/rtems/gpio.h b/cpukit/include/rtems/gpio.h

[PATCH 1/2] GPIO driver for BBB

2015-08-11 Thread Ketul Shah
--- /dev/null +++ b/c/src/lib/libbsp/arm/beagle/include/bbb-gpio.h @@ -0,0 +1,43 @@ +/** + * @file + * + * @ingroup arm_beagle + * + * @brief BeagleBone Black BSP definitions. + */ + +/** + * Copyright (c) 2015 Ketul Shah + * + * The license and distribution terms for this file may be + * found in the

[PATCH 2/2] GPIO driver for BBB

2015-08-11 Thread Ketul Shah
Support for the BeagleBone Black. + */ + +/** + * Copyright (c) 2015 Ketul Shah + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +/* BSP specific function definitions for BeagleBone

Re: [PATCH V2 1/2] RTEMS GPIO API definition and implementation.

2015-08-13 Thread Ketul Shah
Hello Andre, I created a ticket <https://devel.rtems.org/ticket/2390> . Please make the necessary changes. Thanks. Cheers, Ketul On 13 August 2015 at 19:38, André Marques wrote: > On 13-08-2015 14:51, Ketul Shah wrote: > > Hi Andre, > > Thanks for the reply. > >

Re: GPIO broke a few ARM BSPs

2015-08-15 Thread Ketul Shah
Hi, On 15 August 2015 at 23:57, Joel Sherrill wrote: > Hi > > It looks like the gpio addition broke three BSPs: > > arm-lpc1768_mbed_ahb_ram_eth > arm-lpc1768_mbed_ahb_ram > arm-lpc1768_mbed > > > arm-rtems4.11-gcc --pipe -B../../../../../.././lib/ > -B../../../../../.././lpc1768_mbed_ahb_ram_et

[PATCH 1/1] GPIO_BBB Resistor mode support

2015-08-21 Thread Ketul Shah
--- c/src/lib/libbsp/arm/beagle/gpio/bbb-gpio.c | 24 ++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/c/src/lib/libbsp/arm/beagle/gpio/bbb-gpio.c b/c/src/lib/libbsp/arm/beagle/gpio/bbb-gpio.c index 8cf690f..41535cd 100644 --- a/c/src/lib/libbsp/arm/beagle/g

Re: getting started

2016-01-29 Thread Ketul Shah
Hi there, You can have a loot at :- https://devel.rtems.org/wiki/TBR/UserManual/Quick_Start And if you are aiming for GSoC, you can refer :- https://devel.rtems.org/wiki/GSoC/GettingStarted On 30 January 2016 at 11:43, tafang joshua wrote: > i will love to know how to download the source code

Re: BBB GSoC Projects was Re: Gsoc 2016 project proposal

2016-03-06 Thread Ketul Shah
Hello Punit and all, According to me, Punit you must have completed some gpio test through gpio API that was merged last year. So till the final result of accepted student you can start working with PWM driver that plays an important role for any embedded project. This would be a good kick-start f

Re: Request for GPIO Examples

2016-03-23 Thread Ketul Shah
Hi Punit, Apart from what Worth Burruss suggested, First of all setting on off timing and testing on LED would be OK for primary testing. You can always test your PWM signals on DSO/CRO to have a clear picture of what is happening over signals. And if you can manage to have second BBB you can t

Re: [PATCH] Subject: Add PWM driver for beagle bone black

2016-06-23 Thread Ketul Shah
Hi Punit, Great to see PWM driver working Besides Martin has suggested, I would like to add few points. On 21 June 2016 at 21:56, Punit Vara wrote: > This patch adds required definitions, registers definitions and > testsuit to > test pwm driver for beagle bone black. > ---