How to access rt pins in user space
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
24 Feb 2025 03:25 #322430
by RushA
How to access rt pins in user space was created by RushA
Hi,
I create some pins in the RT module, now I want to read and write pins' value in user space.I use the following code,but it failed.Is there any way to access RT module pins in the user space? The environment is Ubuntu20.04+xenomai3.1+linuxcnc2.9.Thanks!
int compId;
int ret;
hal_float_t *pin_value;
// init HAL
compId = hal_init("user_program");
if (compId < 0) {
rtapi_print("HAL init failed\n");
return -1;
}
pin_value = (hal_float_t*)hal_malloc(sizeof(hal_float_t));
ret = hal_pin_float_new("kernel_pin", HAL_IN, &pin_value, compId);
if (ret < 0) {
rtapi_print("getting or creating pin failed!\n");
hal_exit(compId);
return -1;
}
ret = hal_link("user_program.kernel_pin", "ALT.I2600");
if (ret < 0) {
fprintf(stderr, "cann't bind signal!\n");
hal_exit(compId);
return -1;
}
hal_ready(compId);
//*pin_value = 123.45;
//rtapi_print("value is: %f\n", *pin_value);
hal_exit(compId);
It prints some messages:
HAL: initializing hal_lib
HAL: initializing component 'user_program'
HAL: component 'user_program' initialized, ID = 28
smalloc_up: shmem available 1386552
HAL: ERROR: pin_new(kernel_pin) called with already-initialized memory
HAL: creating pin 'kernel_pin'
HAL: ERROR: data_ptr_addr not in shared memory
I create some pins in the RT module, now I want to read and write pins' value in user space.I use the following code,but it failed.Is there any way to access RT module pins in the user space? The environment is Ubuntu20.04+xenomai3.1+linuxcnc2.9.Thanks!
int compId;
int ret;
hal_float_t *pin_value;
// init HAL
compId = hal_init("user_program");
if (compId < 0) {
rtapi_print("HAL init failed\n");
return -1;
}
pin_value = (hal_float_t*)hal_malloc(sizeof(hal_float_t));
ret = hal_pin_float_new("kernel_pin", HAL_IN, &pin_value, compId);
if (ret < 0) {
rtapi_print("getting or creating pin failed!\n");
hal_exit(compId);
return -1;
}
ret = hal_link("user_program.kernel_pin", "ALT.I2600");
if (ret < 0) {
fprintf(stderr, "cann't bind signal!\n");
hal_exit(compId);
return -1;
}
hal_ready(compId);
//*pin_value = 123.45;
//rtapi_print("value is: %f\n", *pin_value);
hal_exit(compId);
It prints some messages:
HAL: initializing hal_lib
HAL: initializing component 'user_program'
HAL: component 'user_program' initialized, ID = 28
smalloc_up: shmem available 1386552
HAL: ERROR: pin_new(kernel_pin) called with already-initialized memory
HAL: creating pin 'kernel_pin'
HAL: ERROR: data_ptr_addr not in shared memory
Please Log in or Create an account to join the conversation.
- andypugh
-
- Offline
- Moderator
-
Less
More
- Posts: 23225
- Thank you received: 4897
04 Mar 2025 16:18 #323156
by andypugh
Replied by andypugh on topic How to access rt pins in user space
One option might be to create complementary pins in your userspace module and link them in the HAL layer.
Can you give more details about what you are trying to do? There are a few examples of existing drivers with realtime and userspace pairs. These tend to communicate with private shared memory.
linuxcnc.org/docs/stable/html/man/man1/halsampler.1.html
linuxcnc.org/docs/stable/html/man/man9/sampler.9.html
For example.
Can you give more details about what you are trying to do? There are a few examples of existing drivers with realtime and userspace pairs. These tend to communicate with private shared memory.
linuxcnc.org/docs/stable/html/man/man1/halsampler.1.html
linuxcnc.org/docs/stable/html/man/man9/sampler.9.html
For example.
Please Log in or Create an account to join the conversation.
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
02 Apr 2025 08:50 #325501
by RushA
Replied by RushA on topic How to access rt pins in user space
hi,thank you for your reply!
I have two modules running in realtime space. One is ethercat module, the other is shared memory module. The ethercat module tranfers data to shared memory module through pins, and I want to get these data from shared memory module in user space.
I have two modules running in realtime space. One is ethercat module, the other is shared memory module. The ethercat module tranfers data to shared memory module through pins, and I want to get these data from shared memory module in user space.
Please Log in or Create an account to join the conversation.
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
02 Apr 2025 08:53 #325502
by RushA
Replied by RushA on topic How to access rt pins in user space
Can you give me some examples? Code or something.
Please Log in or Create an account to join the conversation.
- Aciera
-
- Offline
- Administrator
-
Less
More
- Posts: 4261
- Thank you received: 1878
02 Apr 2025 09:23 #325504
by Aciera
Replied by Aciera on topic How to access rt pins in user space
The source code for the suggested example components can be found here:
github.com/LinuxCNC/linuxcnc/blob/master...components/sampler.c
github.com/LinuxCNC/linuxcnc/blob/master...onents/sampler_usr.c
Additionally this component might also be of interest:
github.com/LinuxCNC/linuxcnc/blob/master...omponents/streamer.c
github.com/LinuxCNC/linuxcnc/blob/master...components/sampler.c
github.com/LinuxCNC/linuxcnc/blob/master...onents/sampler_usr.c
Additionally this component might also be of interest:
github.com/LinuxCNC/linuxcnc/blob/master...omponents/streamer.c
Please Log in or Create an account to join the conversation.
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
03 Apr 2025 00:34 #325563
by RushA
Replied by RushA on topic How to access rt pins in user space
That's great, thank you!
Please Log in or Create an account to join the conversation.
- cmorley
- Offline
- Moderator
-
Less
More
- Posts: 7865
- Thank you received: 2122
03 Apr 2025 02:30 #325569
by cmorley
Replied by cmorley on topic How to access rt pins in user space
The HAL python module allows reading or arbitrary pins and signals without connecting to them.
It's written in C++ but shows the process and borrows C code from HAL cmd.
It's written in C++ but shows the process and borrows C code from HAL cmd.
Please Log in or Create an account to join the conversation.
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
03 Apr 2025 05:50 #325586
by RushA
Replied by RushA on topic How to access rt pins in user space
hi,here's another question. I want to read from and write to the module (for example the shared memory module in realtime space) through pins in user space.How can I solve the problem? Is there any code about this?
Please Log in or Create an account to join the conversation.
- RushA
- Offline
- New Member
-
Less
More
- Posts: 9
- Thank you received: 0
03 Apr 2025 05:55 #325587
by RushA
Replied by RushA on topic How to access rt pins in user space
hi, thanks!
Is there any code or links to refer to?
Is there any code or links to refer to?
Please Log in or Create an account to join the conversation.
Time to create page: 0.159 seconds