Re: Adding RTEMS shell commands in BSP and application

2015-09-18 Thread sudarshan.rajagopalan
On 2015-09-18 00:10, Chris Johns wrote: On 18/09/2015 11:01 am, Ian Caddy wrote: We use 4.10 and add our application shell commands programmatically. For example: rtems_shell_add_cmd("findnb", "nameblock", "findnb# list nameblocks", main_findnb); I do the same thing on 4.11.

Adding RTEMS shell commands in BSP and application

2015-09-17 Thread sudarshan.rajagopalan
Hey guys, I was working on adding user shell commands in RTEMS. Was able to successfully do it. Right now, we want to add few BSP specific shell commands and few application specific shell commands. The BSP shell commands will be added to the BSP, compiled and built. And also give the

Re: Adding RTEMS shell commands in BSP and application

2015-09-17 Thread Ian Caddy
Hi, You did not indicate which version of RTEMS you are using. We use 4.10 and add our application shell commands programmatically. For example: rtems_shell_add_cmd("findnb", "nameblock", "findnb# list nameblocks", main_findnb); regards, Ian Caddy On 17/09/2015 10:35 PM,