Search found 4 matches

by molto999
21 Jan 2019 13:20
Forum: mikroC PRO for FT90x General
Topic: FT90x RTC Interrupt
Replies: 1
Views: 1689

FT90x RTC Interrupt

Hi everyone, After hours seeking info and testing FT90x RTC Interrupt, I finally managed to make it work!!! The point is to read the RTC_EOI_CONST_BIT register inside the interrupt to reset it properly... Here is how to do it with a 1 second (RTC_CMR set to 32 !?!) interrupt: char RTC_int = 0; // In...
by molto999
01 Mar 2013 09:53
Forum: mikroProg™ programmer and debugger
Topic: MikroProg 2.26 problem
Replies: 45
Views: 17638

Re: MikroProg 2.26 problem

Still not working with Suite 2.27 and C Compiler 6.0.0 !!
I'm very disapointed... I still have to use my old programmer without ICD support.

Waiting for 2.28 version :mrgreen:
by molto999
21 Feb 2013 12:51
Forum: mikroProg™ programmer and debugger
Topic: MikroProg 2.26 problem
Replies: 45
Views: 17638

Re: MikroProg 2.26 problem

Same problem with mikroprog suite 2.26...
Please help I cannot use my brand new MikroProg USB ICD/programmer :? :? :?
by molto999
17 Apr 2012 15:31
Forum: mikroC PRO for PIC32 General
Topic: sprintf with more than one value
Replies: 3
Views: 2444

Re: sprintf with more than one value

Hello,

Just Try this:

Code: Select all

int i, j;
char buffer[128];

sprintf("%s message: %d, %d", buffer, i, j);
... and make sure that the string 'buffer' is null terminated...

:mrgreen: regards!

Go to advanced search