Search found 4 matches

by thegame
May 26, 2021 8:31
Forum: Libraries & Headers
Topic: libpruio (BB D/A - I/O fast and easy)
Replies: 406
Views: 147503

Re: libpruio (BB D/A - I/O fast and easy)

In the build tree you can add option -R to the compiler flags. Then fbc will create a C source file from the FreeBASIC code. Just #include that file in to your LKM code. Once working, you can drop the bloat. I will try that. Did you consider using the second PRUSS for IRQ handling? This should work...
by thegame
May 25, 2021 17:08
Forum: Libraries & Headers
Topic: libpruio (BB D/A - I/O fast and easy)
Replies: 406
Views: 147503

Re: libpruio (BB D/A - I/O fast and easy)

Thanks for the fast response. The code compiles with the warnings only. So it can resolve the header files I guess. But the compiled .ko module wont load due to the missing symbols. The reason I need the functionality in a kernel module is that the adc values should be synchronized with other incomi...
by thegame
May 25, 2021 11:29
Forum: Libraries & Headers
Topic: libpruio (BB D/A - I/O fast and easy)
Replies: 406
Views: 147503

Re: libpruio (BB D/A - I/O fast and easy)

Oh, forget about the my_udp_send warning, different problem that I have solved.Problem with the libpruio symbols remains though.
by thegame
May 25, 2021 9:36
Forum: Libraries & Headers
Topic: libpruio (BB D/A - I/O fast and easy)
Replies: 406
Views: 147503

Re: libpruio (BB D/A - I/O fast and easy)

Hello TJF, I try to get started with your libpruio library on a BBB. Looks like its perfect for what I want to do. Her eis the problem I am running int: I want to integrate the lib in a kernel module to read ADC values at high speed. I can compile and run the rb_file.c sample just fine. However, whe...