Search found 9 matches
- Thu Aug 05, 2010 11:36 pm
- Forum: SUB-20 General Discussion
- Topic: RELEASE
- Replies: 4
- Views: 16274
Re: RELEASE
Hi again, I did find this documentation. I guess the real question is, sometime ago I had asked if it would be possible to manually drive the CS bits that are not being used by the SPI as extra GPIO bits. This feature existed in the USB12, and I discovered that it was not available in the SUB20. So ...
- Wed Aug 04, 2010 9:40 pm
- Forum: SUB-20 General Discussion
- Topic: RELEASE
- Replies: 4
- Views: 16274
RELEASE
Where can I find the documentation on how this works.
Thanks!
John
Thanks!
John
- Wed May 05, 2010 8:22 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
Re: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
Hello again, I have placed a short program below that will duplicate the problem. I have placed a define statement that can be used to easily switch the program between use of the real time and virtual timers. When using the real time timer, the segmentation violation occurs. When using the virtual ...
- Wed May 05, 2010 3:22 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
Re: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
Hello and thank you for your comments, I believe you are right on track. I spent several hours debugging with gdb and it appears that there is some interaction with the ITIMER_REAL and the USB libusb functions. I can run the operation with ITIMER_VIRTUAL just fine with only a slight cost in timing a...
- Mon May 03, 2010 9:57 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
Re: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
I have done the export SUB_20=10, and I get the following: BULK_OUT 11 bytes: 0a 62 08 00 20 00 00 00 20 00 00 Transfer completed, transferred=11 BULK_IN 7 bytes: 06 62 04 00 20 00 00 BULK_OUT 11 bytes: 0a 62 08 00 20 00 00 00 00 00 00 Transfer completed, transferred=11 BULK_IN 7 bytes: 06 62 04 00 ...
- Mon May 03, 2010 9:49 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
Re: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
PS.
I just realized what you were saying about the export statement.
I will try that as soon as I get back tot he board.
Thanks allot,
John
I just realized what you were saying about the export statement.
I will try that as soon as I get back tot he board.
Thanks allot,
John
- Mon May 03, 2010 9:33 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
Re: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
1. So does it work on Jaunty with libusb-1.0.6 ? It does NOT work with libusb1.0.6 or 1.0.5, or 1.0.7. Do you have specific API call it fails on? Can you send us a peace of code around it? First of all, it happens when I am doing a tight loop of repetition. I have seen it occur on 3 API calls: 1: if...
- Tue Apr 27, 2010 9:34 pm
- Forum: SUB-20 General Discussion
- Topic: ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
- Replies: 8
- Views: 21459
ubuntu 8.04 to ubuntu 9.04 (Hardy to Jaunty)
I am using a SUB-20 board SPI interface as a demo controller for an evaluation board for our company product. I developed the application (a GUI) in C using GTK and used the libusb-1.0.6. The same GUI works under Linux and Windows. When I upgraded my Linux system from Hardy (8.04) to Jaunty (9.04), ...
- Sat Jan 16, 2010 6:23 am
- Forum: SUB-20 General Discussion
- Topic: 1 ms delay for SPI->USB transfers
- Replies: 6
- Views: 21981
Re: 1 ms delay for SPI->USB transfers
Hi Joe, The problem does related to USB communication. Your assumption was correct. USB Host (PC in your case) has 1ms USB frame. It means any new USB transfer can be started only with new 1ms frame. That's why back to back spi_transfer calls have 1ms gap between. The most simple way to eliminate i...