Search found 46 matches

by SamY Fareast
18 Nov 2015 15:22
Forum: mikroProg™ programmer and debugger
Topic: Does mikroProgSuiteForPIC need elevated privileges?
Replies: 4
Views: 5115

Re: Does mikroProgSuiteForPIC need elevated privileges?

Thank you for advice, Aleksandar. Cutting off the UAC was not so good way for me. A have 2 local accounts in my PC. 'A' is member of administrators, and 'B' is member of power users and backup operators. I tried those below. 1. Log on PC. as user 'A'. In Control panel - User account - UAC control, s...
by SamY Fareast
16 Nov 2015 13:44
Forum: mikroProg™ programmer and debugger
Topic: Does mikroProgSuiteForPIC need elevated privileges?
Replies: 4
Views: 5115

Does mikroProgSuiteForPIC need elevated privileges?

Hi all. I updated my PC to Windows10(64bit) from Windows7(64bit) few weeks ago. And reinstall mikroProgSuite for PIC and drivers. On device manager, I can find 'USB18F USB Communication Device(X64 Platform) with no errors. And property window says 'This device is working properly'. Driver date is 20...
by SamY Fareast
07 Jul 2014 08:47
Forum: mikroPascal PRO for PIC General
Topic: mikroPascal for PIC v6.4.0. released
Replies: 15
Views: 11972

Re: mikroPascal for PIC v6.4.0. released

Hi! ALL About UAC problems, Here is my "work around". (Win7(64bit)) 1. Log in Windows as administrator. 2. Install MP to default folder or somewhere under " user\public\". 3. Get "Resource Hacker" from http://www.angusj.com/resourcehacker/ 4. Rename "Mikro Pascal Pic.exe" to "Mikro Pascal PRO Pic or...
by SamY Fareast
13 May 2014 15:45
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 General
Topic: Word constant in inline-asembler
Replies: 2
Views: 2723

Re: Word constant in inline-asembler

Thank you. aCkO. That are very helpful page. But I could not find out smart solution there. Now I only have ugly (and some what dangerous) way like below. program const_in_asm; const impl = 255; expl: word = 257; begin { Main program } asm mov #_impl, w0 mov #_expl, w1 end; { assign word constants a...
by SamY Fareast
12 May 2014 14:13
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 General
Topic: Word constant in inline-asembler
Replies: 2
Views: 2723

Word constant in inline-asembler

Hi all. I wrote a small test program on mikroPascal PRO for dsPIC30/33 and PIC24. program const_in_asm; const impl = 257; expl: word = 257; begin { Main program } asm mov #_impl, w0 mov #_expl, w1 mov #257, W2 mov #$0101, W3 end; And after compile this, I get const_in_asm.asm. _main: MOV #2048, W15 ...
by SamY Fareast
10 Oct 2013 15:36
Forum: mikroProg™ programmer and debugger
Topic: Couldn't write / erase PIC24F04KA200 with Mikroprogsuite
Replies: 1
Views: 2111

Re: Couldn't write / erase PIC24F04KA200 with Mikroprogsuite

Additional info: But once after program code -which blinks LED on PGD2/RA1 pin-, when I tried to write/erase/read the chip, dialog window "Device detected UNKNOWN" is popped up. This problem is device clock sensitive. on LPRC clock ( Tcy 63us): reproducible below FRC div 500kHz(4us): reproducible ab...
by SamY Fareast
09 Oct 2013 15:44
Forum: mikroProg™ programmer and debugger
Topic: Couldn't write / erase PIC24F04KA200 with Mikroprogsuite
Replies: 1
Views: 2111

Couldn't write / erase PIC24F04KA200 with Mikroprogsuite

Hi All. Hardware: Easy24-33v6 Software: MikroProg Suite V2.29 Chip: PIC24F04KA200 I could write program to blank chip. But once after program code -which blinks LED on PGD2/RA1 pin-, when I tried to write/erase/read the chip, dialog window "Device detected UNKNOWN" is popped up. First I checked 74HC...
by SamY Fareast
25 Jan 2012 14:34
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 General
Topic: Interrupts
Replies: 2
Views: 1912

Re: Interrupts

Hi
In My case, DSPIC33FJ32GP202 with Easy24-33V6 board, interrupts (ADC TMR3) are
enabled immediately after programing.
MPPRO version is 5.4.0. MikroProg version is 2.15.
by SamY Fareast
22 Dec 2011 16:12
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 General
Topic: Project settings on ver 5.2
Replies: 1
Views: 1697

Project settings on ver 5.2

Hi. Configration registor setting of ver 5.2 is something wrong. My project, with PIC33FJGP202. On Edit Project panel, I set 'Oscillator Mode' to 'Internal Fast RC (FRC)' 'Internal External Switch Over Mode' to 'Enabled' 'Primary Oscillator Source' to 'Primary Oscillator Disabled' 'OSC2 PIN Configur...
by SamY Fareast
22 Sep 2010 15:29
Forum: Development Boards
Topic: Multiple temperature sensors using one wire on EasyPIC5
Replies: 3
Views: 1816

Re: Multiple temperature sensors using one wire on EasyPIC5

Hi! I think I just run out two wires from the socket and solder them in parallel? Here http://datasheets.maxim-ic.com/en/ds/DS1822.pdf you can get DS1822 data-sheet. See figure 4 and figure 5 on page 6. DS1822 can be powered from bus line using it's parasite power circuit.(fig 4) But to do so, the b...
by SamY Fareast
20 Sep 2010 15:10
Forum: Development Boards
Topic: Buttons disappear [mikroProg suite For PIC]
Replies: 7
Views: 2312

Buttons disappear [mikroProg suite For PIC]

Hi. I downloaded mikroProg souite For PIC ver 1.00beta. This is very cool ! But I encountered little annoyng bug. With my PC( Windows 2k SP-4 ) 1. Open mikroProg souite For PIC 2. Click "config" button. 3. Click "MCU info" button. 4. Again click "MCU ingo" button to close MCU info. 5. Again click "c...
by SamY Fareast
20 Sep 2010 14:36
Forum: Development Boards
Topic: Multiple temperature sensors using one wire on EasyPIC5
Replies: 3
Views: 1816

Re: Multiple temperature sensors using one wire on EasyPIC5

Hi Bruce.

Simply connect parallel.
Every One-wire device have unique rom code.
You can address each device by using its rom code.

See http://pdfserv.maxim-ic.com/en/an/AN162.pdf
by SamY Fareast
15 Jul 2010 14:58
Forum: mikroPascal PRO for dsPIC30/33 and PIC24 General
Topic: Reading port faster as possible...
Replies: 2
Views: 1910

Re: Reading port faster as possible...

I had compiled and run this code. And It runs well, with DSPIC30F4013. program TestBinary3011; var my_data : array[512] of byte; i: word; x: byte; begin ADPCFG := $FFFF; TRISB := $FFFF; TRISF := 0; while true do begin W10 := @my_data; W11 := @PORTB; asm REPEAT #512 MOV.B [W11],[W10++] end; for i := ...
by SamY Fareast
12 Feb 2010 14:03
Forum: mikroPascal PRO for PIC General
Topic: LCD display question
Replies: 15
Views: 6154

Re: LCD display question

Congratulations!
by SamY Fareast
11 Feb 2010 14:09
Forum: mikroPascal PRO for PIC General
Topic: LCD display question
Replies: 15
Views: 6154

Re: LCD display question

Hi Vcc. But the same noise affect display when EN is active. Yes. It is true. here you can see HD44780 data sheet, there you may find EN pin is MOS gate with out pull-up, and D0..D7 and RS pins are MOS gate with pull-up( 125uA @ 5V ie. about 40k ohm). So EN pin is very week to noise. If EN pin is no...

Go to advanced search