Search found 26 matches

by EugenOS
15 Jun 2015 19:22
Forum: mikroProg™ programmer and debugger
Topic: Idea! microICD for MPLAB X
Replies: 8
Views: 4167

Re: Idea! microICD for MPLAB X

External programmer is not a comfortable solution. Especcially for such systems where used boards like PICPLC...Additional equipment is not a good idea for process-controlling systems...
by EugenOS
15 Jun 2015 18:19
Forum: Development Boards
Topic: new version or updating for PICPLC16
Replies: 3
Views: 1855

Re: new version or updating for PICPLC16

Hello What the difference is required schematic changes? As i found the only change is 8..9v of Vpp and 'MCHP' 32 bit initialization code on "progrming mode entry" procedure. Or the mikroICD that is on this board can not "give" 8..9v to MCLR? Best regards. Eugene. P.S. if this is only the problem, m...
by EugenOS
13 Jun 2015 20:53
Forum: Development Boards
Topic: new version or updating for PICPLC16
Replies: 3
Views: 1855

new version or updating for PICPLC16

Hello
I need to use PIC18F46K80 on PICPLC16 board. I have PICPLC16v6, but it supports only 18F4680 not K version. Would you plane to relese v7 soon? or may be would you produce firmware update for v6?
Best regards.
by EugenOS
13 Jun 2015 20:38
Forum: mikroProg™ programmer and debugger
Topic: Idea! microICD for MPLAB X
Replies: 8
Views: 4167

Re: Idea! microICD for MPLAB X

Hello All.
Is there any news about the subj?
by EugenOS
06 Feb 2012 20:51
Forum: mikroC PRO for PIC Wish List
Topic: Support of PICKit2 (PICKit3) as debugger in MikroC
Replies: 2
Views: 3146

Support of PICKit2 (PICKit3) as debugger in MikroC

Hello, Would you plane to add this devuces support as debugger in Mikro IDEs? P.S. If not, but sounds interesting to you, then can you give me some consulting to let me do it my self (i can try to wrote interface dll which will give to IDE the same functions as MikroICD dll, but it will require your...
by EugenOS
02 Feb 2012 17:03
Forum: Development Boards
Topic: microICD support for PIC12LF1822 (PIC16LF1823)
Replies: 1
Views: 1058

microICD support for PIC12LF1822 (PIC16LF1823)

Hello,
Would you plane to add support of this MCUs in microICD?
There is "PIC16LF182x support added in microProg suite forPIC" in History, but i can not select it in programmer software menu.
May be it is not sopported by microICD firmware? Can it be updated?
by EugenOS
23 Aug 2010 22:22
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: Using CAN Library in interrupt routine.
Replies: 13
Views: 4792

Re: Using CAN Library in interrupt routine.

Thank you. So, i thnk i had to write it my self...
by EugenOS
23 Aug 2010 08:28
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: i cannot use U1RX interrupt. I need your help!
Replies: 1
Views: 1703

Re: i cannot use U1RX interrupt. I need your help!

while (UART1_Data_Ready() == 0); using this inside the interrupt routine is not good idea. try to use somethin like this: void INT_U1RX() iv IVT_ADDR_U1RXINTERRUPT { LED=~LED; if( UART1_Data_Ready() ) { uart_rd = UART1_Read(); UART1_Write( uart_rd ); IFS0bits.U1RXIF = 0; } } or this: void INT_U1RX(...
by EugenOS
23 Aug 2010 05:44
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: Using CAN Library in interrupt routine.
Replies: 13
Views: 4792

Re: Using CAN Library in interrupt routine.

I never used V2.0 however in V3.5 the CAN Library does not function What does it mean? Errors in functions? Or functions is not usefull? How can i see, in asm it check RXFUL bits and use it to detrmine which buffer have received msg. Then it checks all (or most of all) interrupt flags, process and ...
by EugenOS
18 Aug 2010 17:48
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: Using CAN Library in interrupt routine.
Replies: 13
Views: 4792

Re: Using CAN Library in interrupt routine.

Hello, this question wouldn't be asked if the dsPIC compiler generates full asm code in list view. So it would be allowed to see asm code and write c code cmpatible with it. I downloads v 3.5 from mikroe.com. It didn't generate full list to. So, now I forced to write own CAN functions, to let it wor...
by EugenOS
17 Aug 2010 04:00
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: Using CAN Library in interrupt routine.
Replies: 13
Views: 4792

Re: Using CAN Library in interrupt routine.

1)MikroC Pro for dsPIC v 2.0
2)Not all, but something about 20 msgs to receive, and 10 to transmit.

P.S. Also, I need to manage 2 several CAN buses(CAN1 and CAN2), on one MCU, so i plane to use dsPIC30F6011A.
by EugenOS
16 Aug 2010 10:42
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: Using CAN Library in interrupt routine.
Replies: 13
Views: 4792

Using CAN Library in interrupt routine.

Hello, I need to place some CAN functions into interrupt routine. (dsPIC C Pro) So, which flags and in which way i must to use? RXB0IF_bit or RXB1IF_bit or both? so which code for ISR is right? this: if( RXB0IF_bit ) { CAN1Read( id, data, len, flags ); RXB0IF_bit = 0; } this: if( RXB1IF_bit ) { CAN1...
by EugenOS
03 Aug 2010 07:41
Forum: mikroC PRO for AVR Wish List
Topic: CAN Support
Replies: 1
Views: 3116

CAN Support

Hello. Would you plane to add CAN support for AT90CANxxx microcontrollers? It would be interesting in two variants. As MOB support, and another is just like in dsPIC library ( Init, Read, Write and so one ). Thank you. P.S. Second variant is preffered, cause MOB support can be realized by direct reg...
by EugenOS
25 Sep 2009 22:06
Forum: mikroC PRO for PIC Wish List
Topic: Compile time software UART
Replies: 1
Views: 2150

i did not understand how to create link. if it possible, please correct link to archive with macro and sample in my post.
by EugenOS
25 Sep 2009 22:00
Forum: mikroC PRO for PIC Wish List
Topic: Compile time software UART
Replies: 1
Views: 2150

Compile time software UART

hello, there is not very usefull Soft_Uart in MikroC/ MikroC Pro, cause of it's runtime calculation of baudrate, storing pointers to rx/tx pins and so one. it takes about 1k program words on PIC16. So, this is e very big part of it's program memory. So, often you don't needed to change pins and baud...

Go to advanced search