Search found 36 matches

by netos
12 Dec 2010 21:42
Forum: mikroC General
Topic: PIC16F877A problem with Routine too Large
Replies: 7
Views: 3061

Re: PIC16F877A problem with Routine too Large

oh i'm so sorry about this.

if your transducers does not need fast settling time of digital-to-analog converter, mcu's pwm outputs are good for you. otherwise you need external DACs
by netos
10 Nov 2010 18:59
Forum: mikroC General
Topic: make file
Replies: 3
Views: 1872

Re: make file

I'm not using the latest version of the mikroC compiler. I want to buy mikroC pro but I think your local dealer is not selling the mikroC pro version.

http://www.beti.com.tr/index.php?firick ... gori_id=52

here is the link of local dealer's page.
by netos
08 Nov 2010 16:58
Forum: mikroC General
Topic: PIC16F877A problem with Routine too Large
Replies: 7
Views: 3061

Re: PIC16F877A problem with Routine too Large

just same as pic16 devices.
read the device datasheet about configuring ADCONx registers and TRISx registers.
some devices olso have analog comparators sharing the analog pins. So you may configure CMCON registers if you don't use them
by netos
07 Nov 2010 15:36
Forum: mikroC General
Topic: make file
Replies: 3
Views: 1872

make file

Hi guys

Is there any way to prepare a makefile and avoid recompiling unchanged source code files?
when I click to build, compiler recompiles all source files and links them again
by netos
07 Nov 2010 15:27
Forum: mikroC General
Topic: I2C / EEPROM Problem
Replies: 4
Views: 2381

Re: I2C / EEPROM Problem

- do you have pull-up resistors properly installed on I2C line? - your mcu is a 3.3V device. confirm your i2c memory on its datasheet that can operate on 3.3v - most of eeproms operate slower whet its powered by 3.3v source. add delays between writing single bytes - check eeprom's datasheet about pa...
by netos
07 Nov 2010 15:24
Forum: mikroC General
Topic: PWM Resolution
Replies: 1
Views: 1284

Re: PWM Resolution

Check out the device datasheet. You should find a table with pwm frequency vs. max resolution.
by netos
07 Nov 2010 15:20
Forum: mikroC General
Topic: mmc libary
Replies: 1
Views: 1220

Re: mmc libary

Tell me about your question exactly. All that you want is possible.
by netos
07 Nov 2010 15:19
Forum: mikroC General
Topic: PIC16F877A problem with Routine too Large
Replies: 7
Views: 3061

Re: PIC16F877A problem with Routine too Large

use pic18f452 instead of pic16f877a. it has almost the same price and more powerful :)
by netos
18 Oct 2010 22:53
Forum: mikroC PRO for PIC General
Topic: PIC16F688: Not enough RAM
Replies: 6
Views: 2825

Re: PIC16F688: Not enough RAM

you're welcome :D
by netos
17 Oct 2010 19:37
Forum: mikroC PRO for PIC General
Topic: PIC16F688: Not enough RAM
Replies: 6
Views: 2825

Re: PIC16F688: Not enough RAM

Hi You have to select the memory block manually when you are using P16 core. Check out my code piece. I have a big array variable and I'm selecting the page by setting or clearing the STATUS.F7 void scan(void){ unsigned char x; unsigned char y; unsigned char t; unsigned char d; unsigned char bnk; fo...
by netos
13 Oct 2010 12:47
Forum: Development Boards
Topic: LV18FJ board PIC18F87j60 mcu ADC OFFSET problem
Replies: 2
Views: 1489

Re: LV18FJ board PIC18F87j60 mcu ADC OFFSET problem

SOLVED :) first of all, configure the ADC with longer acquistion time. adcon0=1; adcon1=0b110; // I'm using 6 channels of ADC. Modify the ADC control registers for your application. adcon2=0b10111111; then call adccalibrate() routine to perform an offset calibration (see device datasheet for more in...
by netos
13 Oct 2010 12:34
Forum: mikroC General
Topic: glcd control pins polarity
Replies: 2
Views: 1615

Re: glcd control pins polarity

SOLVED!!

using cs2 as cs1 and cs1 as cs2 with inverted polarity lcd modules it works but its too sensitive to noises.
by netos
13 Oct 2010 10:49
Forum: mikroC PRO for PIC General
Topic: question about compiler directives
Replies: 1
Views: 1000

question about compiler directives

Hi friends

is there any compiler directive to change the output filename?

for example

#define something // i want the compiler generate a.hex file
#define another // i want the compiler generate b.hex file
by netos
08 Oct 2010 21:20
Forum: mikroC PRO for PIC General
Topic: interrupt priority
Replies: 14
Views: 3479

Re: interrupt priority

Yes I know what you mean. I've eliminated most of code from my interrupt service routine.

I developed this software 2 years ago for PIC18F4620 and code works fine on it.
But its not working on PIC18F87j60. I don't understand. Both MCUs have almost the same architecture.
by netos
08 Oct 2010 21:06
Forum: mikroC PRO for PIC General
Topic: interrupt priority
Replies: 14
Views: 3479

Re: interrupt priority

I'll prepare a buildable release for you tomorrow.
You need a hardware to test it.

Thank you for your time, jpc.

Go to advanced search