Search found 1321 matches

by slavisa.zlatanovic
10 Jun 2011 11:53
Forum: Development Boards
Topic: GM862 Audio connection Dev Board
Replies: 1
Views: 830

Re: GM862 Audio connection Dev Board

Hi! Please, consider buying these boards: AudioAMP Board: http://www.mikroe.com/eng/products/view/175/audioamp-board/ Microphone AMP Board: http://www.mikroe.com/eng/products/view/205/microphone-amp-board/ Also, see the SmartGSM/GPRS Board Schematics to find out more about the Speaker and Microphone...
by slavisa.zlatanovic
10 Jun 2011 10:04
Forum: mikroC General
Topic: Port direct bit access
Replies: 1
Views: 1243

Re: Port direct bit access

Hi!

You should write something like this:

Code: Select all

char variable;

void main(){
TRISB = 0;
PORTB = 255;

 for (variable = 0; variable < 8; variable++) {
  PORTB &=  ~(1  << variable);
  Delay_ms(1000);
  PORTB |=  1  << variable;
  Delay_ms(1000);
 }

}
by slavisa.zlatanovic
10 Jun 2011 09:50
Forum: mikroC PRO for 8051 General
Topic: EXTERNAL RAM
Replies: 7
Views: 3473

Re: EXTERNAL RAM

Hi!

If you've modify the *.mlk file properly, then you'll be able to compile your code successfully.

Code: Select all

# define LCD_DATA (* (xdata unsigned char*) 0x8000)
void main() {

LCD_DATA = 45;
}
If not, please, send me your project and your modified *.mlk file, I'll inspect it and suggest further steps.
by slavisa.zlatanovic
10 Jun 2011 09:44
Forum: mikroBasic PRO for PIC Beta Testing
Topic: Unable to re-dock windows
Replies: 14
Views: 10030

Re: Unable to re-dock windows

Hi!

Note that there must exist at least one other docked window (other than Editor Window) so you can dock your floating window.

P.S.
I've told you the same in the reply of your email.
by slavisa.zlatanovic
10 Jun 2011 09:38
Forum: Development Boards
Topic: Interfacing EASY wifi with EASY ARM
Replies: 3
Views: 1973

Re: Interfacing EASY wifi with EASY ARM

Hi!

We're working on it. Please, be patient.
by slavisa.zlatanovic
09 Jun 2011 14:39
Forum: Development Boards
Topic: mikormedia board fo xmega, design issue clarification?
Replies: 1
Views: 913

Re: mikormedia board fo xmega, design issue clarification?

Hi! If this is correct, I won't be able to connect 3.3V devices to board while it is powered by battery. Can you clarify this possible issue? I can confirm that your reasoning is correct. Nevertheless, we've tested the mikroMedia Board fo XMEGA and concluded that all board peripherals are work OK wh...
by slavisa.zlatanovic
09 Jun 2011 13:22
Forum: Development Boards
Topic: serial Ethernet problem and questions
Replies: 4
Views: 1435

Re: serial Ethernet problem and questions

Hi! RST---> RC0 CS---->RC1 SCK--->RC3 MISO-->RC4 MOSI-->RC5 VCC--> regulated +5 volt GND--> GND Your connections are not OK. SPI lines are wrong! It should be RB0, RB1 and RC7. Please, consult the MCU datasheet for more information: http://ww1.microchip.com/downloads/en/devicedoc/39632c.pdf pin INT ...
by slavisa.zlatanovic
09 Jun 2011 12:56
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 Beta Testing
Topic: No compact flash library for the P24FJ64GA002 - OK
Replies: 2
Views: 3317

Re: No compact flash library for the P24FJ64GA002?

Hi Dany!

The GLCD and Compact Flash Libraries are going to be available for 28-pin chips in the next compiler release.
by slavisa.zlatanovic
09 Jun 2011 12:54
Forum: mikroC PRO for dsPIC30/33 and PIC24 General
Topic: GLCD library for dsPIC33FJxxGPx02
Replies: 3
Views: 1945

Re: GLCD library for dsPIC33FJxxGPx02

Hi david66!

The GLCD and Compact Flash Libraries are going to be available for 28-pin chips in the next compiler release.
by slavisa.zlatanovic
09 Jun 2011 12:45
Forum: mikroC PRO for PIC General
Topic: I cant import my libraries on microC
Replies: 1
Views: 890

Re: I cant import my libraries on microC

Hi!

Please, see the: Creating New Library Topic in the Help file.
If you still have problems, feel free to contact me again.
by slavisa.zlatanovic
09 Jun 2011 12:31
Forum: mikroC PRO for 8051 General
Topic: EXTERNAL RAM
Replies: 7
Views: 3473

Re: EXTERNAL RAM

Hi! I've tried to compile this in the mikroC PRO for 8051 (the latest build v2.20) and it compiles fine with no errors. # define LCD_DATA (* (xdata unsigned char*) 0x8000) void main() { LCD_DATA = 45; } P.S. Did you modify the *.mlk file correctly (to work with the XDATA)? Find out more here: http:/...
by slavisa.zlatanovic
09 Jun 2011 12:06
Forum: mikroBasic PRO for AVR General
Topic: Float precision
Replies: 1
Views: 1546

Re: Float precision

Hi!

I can confirm that this is not the bug in the FloatToStr routine but a normal behavior when
working with floats.
by slavisa.zlatanovic
09 Jun 2011 10:50
Forum: mikroBasic PRO for PIC Beta Testing
Topic: Unable to re-dock windows
Replies: 14
Views: 10030

Re: Unable to re-dock windows

Hi! On my PCs, these "side" docking arrows appear as soon as I un-dock the window, and stay until I release the mouse button. Yes, before you release the mouse button you have to place the cursor to the arrow (in the rectangle; see the screenshot from my previous post). P.S. If this doesn't help, pl...

Go to advanced search