Search found 3565 matches

by janko.kaljevic
31 May 2013 14:51
Forum: mikroC PRO for PIC General
Topic: Question Regarding Timer Calculator and PIC16F877A Micro??
Replies: 3
Views: 1544

Re: Question Regarding Timer Calculator and PIC16F877A Micro

Hello,

We have confirmed the issue and it will be fixed as soon as possible.

Best regards.
by janko.kaljevic
31 May 2013 13:28
Forum: Visual TFT General
Topic: Visual TFT Cyrillic
Replies: 25
Views: 20856

Re: Visual TFT Cyrillic

Hello, At the moment VTFT tool and compiler do not support unicode, so only way to implement other language scripts is to use specific fonts. Something similar already used prakob and RomanT. This way user can implement other languages and scripts with first 255 characters of desired font. Bellow is...
by janko.kaljevic
30 May 2013 13:54
Forum: Visual TFT General
Topic: V_TFT RELEASE Ver 3.6 Bugs:
Replies: 37
Views: 12997

Re: V_TFT RELEASE Ver 3.6 Bugs:

Hello Robert, I hope it is to be changed as it does not make sense to be opposite of what the help file states that we should be following for logic control of this object property and opposite of all of the other 2 state property logic settings. Please clarify this one for us, Robert. Transparency ...
by janko.kaljevic
30 May 2013 12:20
Forum: mikroC PRO for PIC General
Topic: PIC18f458 CAN BUS error
Replies: 1
Views: 1115

Re: PIC18f458 CAN BUS error

Hello,

I believe that the same conversation is here;
http://www.mikroe.com/forum/viewtopic.php?f=147&t=54701

It would be better to continue it there.

Best regards.
by janko.kaljevic
30 May 2013 08:33
Forum: mikroC PRO for ARM General
Topic: CAN filter banks and FIFO configuration
Replies: 1
Views: 1450

Re: CAN filter banks and FIFO configuration

Hello, You can set desired FIFO with CANSetFilterScale32 function. Just use _CAN_FILTER_USE_FIFO0 as parameter in CAN_FILTAR_FLAGS. This will set your acceptance filter to receive messages into FIFO0 buffer. I could not find this in documentation. Only limitation is that CAN1 should use filters (0.....
by janko.kaljevic
29 May 2013 09:49
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: dsPIC - PIC32 CANbus test
Replies: 2
Views: 2085

Re: dsPIC - PIC32 CANbus test

Hello,

Your calculation is correct. It will generate 500 kbaud/s on CAN bus, when clock is 140MHz.

First you should check if the oscillator settings is correct on both controllers.
Also you can connect scope on CANH - CANL and check the real baud rate on the bus.

Best regards.
by janko.kaljevic
27 May 2013 17:05
Forum: mikroC PRO for PIC32 General
Topic: Newbee to mikromedia for pic32 question
Replies: 2
Views: 1617

Re: Newbee to mikromedia for pic32 question

Hello,

Most probably you have latest mikromedia board with A9 display (ILI9341 TFT controller).
I have uploaded examples for this version on libstock:
http://www.libstock.com/projects/view/1 ... 2-examples

Best regards.
by janko.kaljevic
27 May 2013 10:15
Forum: Website & Forums General Discussion
Topic: 320x240 Touchscreen Samples
Replies: 7
Views: 6270

Re: 320x240 Touchscreen Samples

Hello, We do have these TFT controllers on our wish list and they will be supported in future releases. But also, I think that you will agree with me when i say that it is hard to provide support for all controllers on the market. Also we have provided source codes of the init routines for our TFT c...
by janko.kaljevic
24 May 2013 09:01
Forum: mikroC PRO for ARM General
Topic: STM32F3 port bit problem
Replies: 5
Views: 4445

Re: STM32F3 port bit problem

Hello,

Thanks for reporting this.
I confirm that far identifier is needed for port bitfilelds on STM32F3xx controllers.
Workaround would be as prakob suggested.

We will correct this and provide solution via live update as soon as possible.

Best regards.
by janko.kaljevic
23 May 2013 15:08
Forum: mikroC PRO for ARM General
Topic: Reporting a bug
Replies: 6
Views: 3164

Re: Reporting a bug

Hello,

Yes this is also good solution.

Passing structures as pointer will generate smaller and more efficient code, so it is good suggestion.

At the moment this issue is bound for the 32 bit compilers and will be solved as soon as possible.

Best regards.
by janko.kaljevic
23 May 2013 13:05
Forum: mikroC PRO for PIC32 General
Topic: USB interrupt conflict
Replies: 8
Views: 4129

Re: USB interrupt conflict

Hello, Running both USB libraries at the same time is not good idea. Most probably it will not work well. Other option is to separately run HID and Mass Storage Device. For example at one moment you use HID and then (after a button press) you initialize MSD. If you want to implement HID and MSD at t...
by janko.kaljevic
23 May 2013 12:57
Forum: mikroC PRO for PIC General
Topic: Manipulating stack in MikroC
Replies: 11
Views: 4593

Re: Manipulating stack in MikroC

Hello,

Did you have success with this code?

From your post I understood that you want just to set new return address from interrupt.
In this case I believe that you should not increment STKPTR register. Just load new value into TOS and execute RETFIE.

Everything else looks OK.

Best regards.
by janko.kaljevic
23 May 2013 09:39
Forum: mikroC PRO for ARM General
Topic: Reporting a bug
Replies: 6
Views: 3164

Re: Reporting a bug

Hello,

Thanks for reporting this.

I was able to reproduce the problem and we will provide solution for it as soon as possible.

At the moment you can declare your Complex values as globals and your code will work just fine.

Code: Select all

Complex a,b,sum,mul;
void main() {
  while(1){
  ....
Best regards.
by janko.kaljevic
20 May 2013 17:28
Forum: mikroC PRO for PIC32 General
Topic: RS232 bootloader
Replies: 6
Views: 5689

Re: RS232 bootloader

Hello,

No problem at all.
You can use tour provided codes in your project.

Also I have moved this topic in mikroC PRO for PIC32 General.

Best regards.
by janko.kaljevic
20 May 2013 17:26
Forum: mikroC PRO for PIC32 General
Topic: Weird interrupt behavior : Modify address variables not used
Replies: 6
Views: 2874

Re: Weird interrupt behavior : Modify address variables not

Hello, When you declare ISR function it is mandatory to set interrupt level (ilevel x). If ilevel is not defined or not matched with IPC value for this interrupt, you will get strange behavior when returning from interrupt. (Just as you described in your first post). So declaring ilevel in ISR is co...

Go to advanced search