Re: RTEMS DRIVER

2017-05-18 Thread Sebastian Huber
On 19/05/17 08:42, Linta John wrote: Hi, I am new to RTEMS.I want to write a sample character driver in RTEMS.Where to place my code ,which makefile should I edit and how to run it? For a sample driver registered via IMFS_make_generic_node(), please have a look at: https://git.rtems.or

RTEMS DRIVER

2017-05-18 Thread Linta John
Hi, I am new to RTEMS.I want to write a sample character driver in RTEMS.Where to place my code ,which makefile should I edit and how to run it? Kindly do reply Linta ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: RTEMS Driver

2015-04-01 Thread Pavel Pisa
Hello Hugo, On Wednesday 01 of April 2015 12:58:33 zj...@york.ac.uk wrote: > Hi: > > I am a student to work with RTEMS these days. > > I like this OS, but I found there's few information about RTEMS, I am > really desired to know how can I add a new driver for it, such as LCD > driver or others. >

Re: RTEMS Driver

2015-04-01 Thread Joel Sherrill
On 4/1/2015 9:22 AM, Gedare Bloom wrote: > P.S. you may like to check out the work that has been done to add GPIO > interface to raspberry pi, by Andre Marques in last years GSoC. It has > not been merged, but you can find links to the code through the rtems > wiki, open projects, improve raspber

Re: RTEMS Driver

2015-04-01 Thread Gedare Bloom
P.S. you may like to check out the work that has been done to add GPIO interface to raspberry pi, by Andre Marques in last years GSoC. It has not been merged, but you can find links to the code through the rtems wiki, open projects, improve raspberry pi project page. Gedare On Wed, Apr 1, 2015 at

Re: RTEMS Driver

2015-04-01 Thread Gedare Bloom
Hugo, RTEMS does not currently have much infrastructure for device drivers. There are some efforts underway that may lead to it, but for now, device drivers normally are written directly within a BSP, so you'd write the custom code to run your LCD driver directly, and provide your application with

RTEMS Driver

2015-04-01 Thread zj...@york.ac.uk
Hi: I am a student to work with RTEMS these days. I like this OS, but I found there's few information about RTEMS, I am really desired to know how can I add a new driver for it, such as LCD driver or others. From the official information, there is only some API and function interface, is there