Search found 708 matches

by Sy
28 Feb 2017 14:00
Forum: mikroC PRO for PIC General
Topic: Support for iOS ?
Replies: 5
Views: 3743

Re: Support for iOS ?

Thank you, vote cast!
by Sy
28 Feb 2017 10:48
Forum: PIC32 Compilers General
Topic: Most desired upgrades and enhancements for MikroE compilers
Replies: 139
Views: 3214763

Re: Most desired upgrades and enhancements for MikroE compil

Really dislike Windows as no matter what machine you install it on, it gets slower and slower over time and its so unreliable and riddled with security holes...iOS on the other hand is robust and secure, I have machines running iOS that are as fast today as the day I purchased them.
by Sy
28 Feb 2017 09:20
Forum: mikroC PRO for PIC General
Topic: Support for iOS ?
Replies: 5
Views: 3743

Re: Support for iOS ?

Pity...
by Sy
27 Feb 2017 21:28
Forum: mikroC PRO for PIC General
Topic: Support for iOS ?
Replies: 5
Views: 3743

Re: Support for iOS ?

I take it from the lack of posts that there is no support for iOS ?
by Sy
24 Feb 2017 12:43
Forum: mikroC PRO for PIC General
Topic: Support for iOS ?
Replies: 5
Views: 3743

Support for iOS ?

I have used the mikroC PRO IDE on my Windows 7/10 system for years. However I got fed up with the constant battle that Windoz presents, the system getting slower and slower and the constant need to run anti-virus software. So at the end of last year I decided to move to iOS. I now do all my developm...
by Sy
04 Nov 2016 13:15
Forum: Libstock Discussion
Topic: How to delete posts?
Replies: 1
Views: 4753

How to delete posts?

There seems to be an issue with posting comments on libStock, I replied to a individual today and it seems to have created 3 posts instead of 1, this is the same problem the original poster encountered. I cannot see any way for me to delete my duplicate posts.
by Sy
31 Aug 2015 14:14
Forum: Libstock Discussion
Topic: libstock.com web site down ??
Replies: 11
Views: 11124

Re: libstock.com web site down ??

Thank you, I can confirm that it is working now.
by Sy
29 Aug 2015 16:44
Forum: Libstock Discussion
Topic: libstock.com web site down ??
Replies: 11
Views: 11124

Re: libstock.com web site down ??

Its still not working.
by Sy
28 Aug 2015 11:57
Forum: Libstock Discussion
Topic: libstock.com web site down ??
Replies: 11
Views: 11124

Re: libstock.com web site down ??

Thank you.
by Sy
27 Aug 2015 19:51
Forum: Libstock Discussion
Topic: libstock.com web site down ??
Replies: 11
Views: 11124

Re: libstock.com web site down ??

Whats up with the libstock.com site today? Tried searching for various things that I know use to return results, now they don't.
by Sy
13 Feb 2015 19:34
Forum: mikroC PRO for PIC General
Topic: Too many initializes
Replies: 3
Views: 2240

Re: Too many initializes

When initialising an array like this, no need to specify the number of elements, the compiler will sort it out for you, just do this:

Code: Select all

float h[] = {0.0681, 0.0810, 0.0918, 0.1001, 0.1052, 0.1070, 0.1052, 0.1001, 0.09180, 0.0810, 0.0681};
by Sy
15 Jan 2015 08:35
Forum: mikroC PRO for PIC General
Topic: Could some one check?
Replies: 13
Views: 5121

Re: Could some one check?

As soon as you put an expression into the switch statement, all you will get from the expression is true or false, so you cannot then use it as in your example to check against integer values.

Also any variables that you use inside an interrupt handler should be declared as volatile.
by Sy
14 Jan 2015 08:49
Forum: mikroC PRO for PIC General
Topic: How can I define array of structure?
Replies: 4
Views: 1913

Re: How can I define array of structure?

Couple of things...I wouldn't use terms like array or structure, these aren't good names, use a more descriptive name. Also arrays in C always start from 0, not sure if 1 is your intended first item or not?
by Sy
07 Jan 2015 08:41
Forum: mikroC PRO for PIC General
Topic: Stupid question: Main() does not loop?
Replies: 4
Views: 1860

Re: Stupid question: Main() does not loop?

Arduino is a nice platform and does a lot for you, the basic code behind it is:

Code: Select all

void main(void) {
  setup();

  while( true ) {
    loop();
  }
}
Of course there is a lot more to it than this, but essentially thats it.
by Sy
13 Dec 2014 15:12
Forum: mikroC PRO for PIC General
Topic: Modbus RS-485 - Example of code
Replies: 5
Views: 4569

Re: Modbus RS-485 - Example of code

Visit libstock, there are a bunch of modbus implementations already, including my modbusSlave and modbusMaster implementations, which should give you a good headstart.

Go to advanced search