Search found 89 matches

by yt7pwr
15 Nov 2017 15:47
Forum: Development Boards Wishlist
Topic: I2S ADC click?
Replies: 2
Views: 3177

Re: I2S ADC click?

I need a stereo I2S ADC. Digilent makes what looks like a nice development board: http://store.digilentinc.com/pmod-i2s-stereo-audio-output/ ...but I'd love to have a click board. I second that but I2S standard requires additional pins which does not exists on click-board socket. My main interest i...
by yt7pwr
15 Mar 2015 17:25
Forum: Development Boards Wishlist
Topic: FT81x and STM32F7 plans?
Replies: 1
Views: 3852

FT81x and STM32F7 plans?

Any plans for FT81x and STM32F7 series? I'm using FT800 ConnectEVE 4.3" board but for my project I need bigger "intelligent" screen with, at least, 800x480 resolution. FT81x series is almost ideal for my project. Also new STM32 Cortex M7 series is pin compatible with old M4, so cost for development ...
by yt7pwr
23 May 2012 12:10
Forum: mikroC PRO for PIC General
Topic: HID terminal & USB descriptor problem !!!
Replies: 6
Views: 4542

Re: HID terminal & USB descriptor problem !!!

USB throughput is shared among devices attached to USB controller (modern PC control logic have more than one controller). For normal use you do not need to worry about this characteristics.
by yt7pwr
22 May 2012 10:16
Forum: mikroC PRO for PIC General
Topic: HID terminal & USB descriptor problem !!!
Replies: 6
Views: 4542

Re: HID terminal & USB descriptor problem !!!

If you run your program trough software simulator observe how LCD commands are slow: Lcd_Cmd(_LCD_CLEAR); // 5.51mS Lcd_Out(1,10,txt); // 5.69mS Alphanumeric LCD displays are very slow devices. With only one line you are further slowed down by half HID speed: Delay_ms(2); // small delta ! (minimum t...
by yt7pwr
20 May 2012 21:08
Forum: mikroC PRO for PIC General
Topic: HID terminal & USB descriptor problem !!!
Replies: 6
Views: 4542

Re: HID terminal & USB descriptor problem !!!

You can't change HID communication protocol by changing PIC file descriptor. HID is interrupt transfer type and for bulk or isochronous transfer types you need complete USB stack with supported functions. For example: go to: http://dangerousprototypes.com/docs/index.php?title=Open_source_USB_echo_de...
by yt7pwr
21 Oct 2011 10:10
Forum: mikroC PRO for PIC General
Topic: USB code for real time transmission
Replies: 2
Views: 1311

Re: USB code for real time transmission

Start from MikroE USB HID example and simple add A/D conversion.
by yt7pwr
08 Oct 2011 09:07
Forum: mikroC PRO for PIC General
Topic: rotary encoder direction want to find...
Replies: 3
Views: 1857

Re: rotary encoder direction want to find...

Did you consider life time for encoder in this application (only 15K cycles!)? This type encoder is for manual input by human hand. Better to use optical infra red transmiter/receiver and transparent disk with printed coding lines. To answer your question: first check output pin for direction (risin...
by yt7pwr
08 Sep 2011 10:53
Forum: mikroC PRO for PIC General
Topic: HID Communication PC to PIC problem /Polling or Interrupt
Replies: 4
Views: 2139

Re: HID Communication PC to PIC problem /Polling or Interrup

From MikroC help file: 1: interrupt mode: void interrupt() { USB_Interrupt_Proc(); } 2. polling mode: while(1) { USB_Polling_Proc(); kk = HID_Read(); if (kk != 0) { // do something here } } Once your code enter while loop while(1){.....} never read from USB or code is not complete.Error on PC side p...
by yt7pwr
07 Sep 2011 21:51
Forum: mikroC PRO for PIC General
Topic: HID Communication PC to PIC problem /Polling or Interrupt
Replies: 4
Views: 2139

Re: HID Communication PC to PIC problem /Polling or Interrup

What exactly is problem with your program?Hardware connection,
PIC configuration, PIC<-->PC connection or something else?
Without complete project it's very hard to tell anything useful.
MikroC example files are very good for beginners.
by yt7pwr
17 Jul 2011 12:46
Forum: mikroC PRO for PIC General
Topic: Escape characters in Mikroe USBhid terminal
Replies: 3
Views: 1458

Re: Escape characters in Mikroe USBhid terminal

Does check boxes "Append CR" or "Append LF" help you?
by yt7pwr
17 Jul 2011 12:43
Forum: mikroC PRO for PIC General
Topic: USB Sample from Knowledgebase doesn't work
Replies: 6
Views: 1982

Re: USB Sample from Knowledgebase doesn't work

- 18F2550 do not have port D and E( TRISD,TRISE,LATD and LATE registers do not exists). - MCU clock should be 48MHz(CPU core works on 48MHz, USB uses 96MHz).If necessary change appropriate configuration registers to meet your board design(critical is crystal configuration-search forum messages for d...
by yt7pwr
16 Jul 2011 23:14
Forum: mikroC PRO for PIC General
Topic: USB Sample from Knowledgebase doesn't work
Replies: 6
Views: 1982

Re: USB Sample from Knowledgebase doesn't work

From USB library function list you can see correct interrupt handler name: USB_Interrupt_Proc You interrupt routine should be: void interrupt(){ USB_Interrupt_Proc(); // USB servicing is done inside the interrupt } What is you project settings(CPU,freq,fuses...)?Did you choose 18F2550 as uC type?Als...
by yt7pwr
11 Jul 2011 14:45
Forum: mikroC PRO for PIC General
Topic: PIC18F2550 USB HID not working
Replies: 11
Views: 9053

Re: PIC18F2550 USB HID not working

First you must determine that project configuration works!Forget USB and connect LED diode on free uC pin(do not forget to configure PORTx.Fy as output).Then with various Delay_ms values turn on/off LED in desired intervals(0.5s-1s is detectable with eyes, for anything less use scope). For 4MHz crys...
by yt7pwr
23 May 2011 11:33
Forum: mikroC PRO for PIC General
Topic: Problem with PIC18F4620+ENC28J60 using example code of Mikro
Replies: 6
Views: 3063

Re: Problem with PIC18F4620+ENC28J60 using example code of M

Sorry, but I do not have Proteus software.I'm using only
real hardware for development/debug.
Is code I posted previous works in Proteus?

Go to advanced search