[PATCH] score: Delete unused _Timestamp_Divide_by_integer

2015-03-20 Thread Alexander Krutwig
--- cpukit/score/Makefile.am | 2 +- cpukit/score/include/rtems/score/timestamp.h | 21 - cpukit/score/include/rtems/score/timestamp64.h | 31 - cpukit/score/src/ts64dividebyinteger.c | 32 -- 4 files

[PATCH] score: Delete unused _Timestamp_(To|From)_ticks()

2015-03-20 Thread Alexander Krutwig
--- cpukit/score/Makefile.am | 2 +- cpukit/score/include/rtems/score/timestamp.h | 35 --- cpukit/score/include/rtems/score/timestamp64.h | 28 -- cpukit/score/src/ts64toticks.c | 39 -- 4 files

Re: UART driver: read function

2015-03-20 Thread Sebastian Huber
On 20/03/15 11:03, Daniel Krüger wrote: Am 20.03.2015 um 10:02 schrieb Sebastian Huber: On 20/03/15 09:42, Daniel Krüger wrote: Am 06.03.2015 um 11:20 schrieb Sebastian Huber: I would not use the C stdio for this and instead directly use the POSIX read/write. You have to set up the right

Re: UART driver: read function

2015-03-20 Thread Daniel Krüger
Am 20.03.2015 um 11:11 schrieb Sebastian Huber: On 20/03/15 11:03, Daniel Krüger wrote: Am 20.03.2015 um 10:02 schrieb Sebastian Huber: On 20/03/15 09:42, Daniel Krüger wrote: Am 06.03.2015 um 11:20 schrieb Sebastian Huber: I would not use the C stdio for this and instead directly use the

Re: UART driver: read function

2015-03-20 Thread Daniel Krüger
Hello Sebastian, Am 06.03.2015 um 11:20 schrieb Sebastian Huber: Hello Daniel, I would not use the C stdio for this and instead directly use the POSIX read/write. You have to set up the right Termios settings. In case you use RTEMS 4.11 I would use the new Termios device interface (see

rsb build process - ftp error

2015-03-20 Thread Anand Krishnan
Hi, I am trying to build RSB for sparc. During the installation, it is trying to download autoconf-2.69.tar.gz over ftp but fails. Autoconf is already installed in my host machine. Why is it trying again to download? Also I think there is some error with downloading via ftp - is there some way I

Re: rsb build process - ftp error

2015-03-20 Thread Joel Sherrill
On March 20, 2015 8:41:37 PM CDT, Anand Krishnan anandk...@gmail.com wrote: yeah I do think that ftp is blocked. I was in a campus network. Currently I am using another network, but its only a temporary setup. I cannot download from ftp://ftp.gnu.org. But I can access http://ftp.gnu.org I

Re: rsb build process - ftp error

2015-03-20 Thread Anand Krishnan
yeah, i did encounter it. what I was thinking was instead of changing to http, we'll wait for ftp timeout and then try http? I think I can build a patch that does this. Give me some time to familiarize with the code and I'll do it. On Sat, Mar 21, 2015 at 7:32 AM, Joel Sherrill

Re: [PATCH] Replace www.rtems.com with www.rtems.org

2015-03-20 Thread Gedare Bloom
Push it. It touches a lot of files but pretty self-contained in each, shouldn't cause conflicts. On Fri, Mar 20, 2015 at 9:09 AM, Sebastian Huber sebastian.hu...@embedded-brains.de wrote: --- c/src/lib/libbsp/arm/beagle/clock.c| 2 +-

Re: [PING][PATCH] LPC176x: Add CAN, PWM, ADC and UART1/2/3 support to the BSP.

2015-03-20 Thread Gedare Bloom
Please fix the URLs to be rtems.org (especially the license) -Gedare On Fri, Mar 20, 2015 at 4:18 AM, Sebastian Huber sebastian.hu...@embedded-brains.de wrote: Hello Martin, On 19/03/15 01:11, Martin Galvan wrote: This patch adds support for the following devices to the LPC176x BSP: * CAN

Re: [PING][PATCH] LPC176x: Add CAN, PWM, ADC and UART1/2/3 support to the BSP.

2015-03-20 Thread Sebastian Huber
Maybe it makes sense to add a git commit hook, that rejects such patches. We already have this issue in other places as well: ./cpukit/libmisc/shell/main_md5.c: * http://www.rtems.com/license/LICENSE. ./cpukit/score/cpu/or1k/rtems/score/cpu.h: * http://www.rtems.com/license/LICENSE.

Re: [PATCH] score: Delete unused _Timestamp_Divide_by_integer

2015-03-20 Thread Gedare Bloom
ok to both On Fri, Mar 20, 2015 at 4:08 AM, Alexander Krutwig alexander.krut...@embedded-brains.de wrote: --- cpukit/score/Makefile.am | 2 +- cpukit/score/include/rtems/score/timestamp.h | 21 - cpukit/score/include/rtems/score/timestamp64.h | 31

[PATCH] Replace www.rtems.com with www.rtems.org

2015-03-20 Thread Sebastian Huber
--- c/src/lib/libbsp/arm/beagle/clock.c| 2 +- c/src/lib/libbsp/arm/beagle/console/console-config.c | 2 +- c/src/lib/libbsp/arm/beagle/include/bsp.h | 2 +- c/src/lib/libbsp/arm/beagle/include/i2c.h | 2 +-

Re: [PING][PATCH] LPC176x: Add CAN, PWM, ADC and UART1/2/3 support to the BSP.

2015-03-20 Thread Gedare Bloom
On Fri, Mar 20, 2015 at 10:47 AM, Joel Sherrill joel.sherr...@oarcorp.com wrote: On an odd note, did we finally kill that misformatted license text? Not sure what you mean. ___ devel mailing list devel@rtems.org

Re: UART driver: read function

2015-03-20 Thread Sebastian Huber
- Daniel Krüger daniel.krue...@systec-electronic.com schrieb: Beside some problems/differences between newlibc and glibc, one RTEMS-specific questions remains unanswered: What is the right implementation for the UART driver read function (console_fns.deviceRead)? It seems to be

Re: [PING][PATCH] LPC176x: Add CAN, PWM, ADC and UART1/2/3 support to the BSP.

2015-03-20 Thread Joel Sherrill
File a ticket. This type of thing is very hard to get rid of and have it stay gone. All it takes is someone updating code from an older tree and submitting a patch. Bam! We have it again. Needs to either reject or auto-correct. And go into the review cycle of Phabricator. On an odd note, did we

Re: UART driver: read function

2015-03-20 Thread Daniel Krüger
Beside some problems/differences between newlibc and glibc, one RTEMS-specific questions remains unanswered: What is the right implementation for the UART driver read function (console_fns.deviceRead)? It seems to be implemented differently from target to target. Some implementations return

Re: GSOC 2015 Monkey HTTP Server

2015-03-20 Thread Sujay Raj
Well I started writing the first draft of the project proposal ( which I shall hopefully finish by tonight, Its 9 PM here ). I am making porting the Monkey web server to RTEMS as well as a partial reorganization of the network stacks present in RTEMS to make it more modular, as the primary

Re: GSOC 2015 Monkey HTTP Server

2015-03-20 Thread Gedare Bloom
On Fri, Mar 20, 2015 at 11:39 AM, Sujay Raj sujayr...@gmail.com wrote: Well I started writing the first draft of the project proposal ( which I shall hopefully finish by tonight, Its 9 PM here ). I am making porting the Monkey web server to RTEMS as well as a partial reorganization of the

Re: UART driver: read function

2015-03-20 Thread Joel Sherrill
On 3/20/2015 9:59 AM, Daniel Krüger wrote: Beside some problems/differences between newlibc and glibc, one RTEMS-specific questions remains unanswered: What is the right implementation for the UART driver read function (console_fns.deviceRead)? It seems to be implemented differently from

Raspberry pi 2 project

2015-03-20 Thread Rohini Kulkarni
Hello, I had a look at updated the project groups for raspberry pi improvements for my proposal. Because I had not tracked the page for a few days I was not aware that the Raspberry pi 2 support tasks had been defined. As I had also asked about SMP support earlier, this projects interests me

Re: GSOC 2015 Monkey HTTP Server

2015-03-20 Thread Joel Sherrill
On 3/20/2015 11:03 AM, Sujay Raj wrote: BSP: pc386 simulated on QEMU On Fri, Mar 20, 2015 at 9:27 PM, Gedare Bloom ged...@gwu.edu wrote: On Fri, Mar 20, 2015 at 11:39 AM, Sujay Raj sujayr...@gmail.com wrote: Well I started writing the first draft of the project proposal ( which I shall

Re: UART driver: read function

2015-03-20 Thread Daniel Krüger
Am 20.03.2015 um 10:02 schrieb Sebastian Huber: On 20/03/15 09:42, Daniel Krüger wrote: Am 06.03.2015 um 11:20 schrieb Sebastian Huber: I would not use the C stdio for this and instead directly use the POSIX read/write. You have to set up the right Termios settings. In case you use RTEMS