Search found 68 matches

by vpapanik
11 Oct 2005 14:35
Forum: mikroPascal General
Topic: PIC with external memory
Replies: 0
Views: 1194

PIC with external memory

Hello !

Does anyone has implemented a project using a memoryless PIC device with external memory (like 18C801) ?? It can support up to 2MB of external flash.

I have not a clue on how to program this thing...is it working like ordinary flash Pics (appear as one device to the programmer) ?
by vpapanik
02 Oct 2005 08:37
Forum: Development Boards
Topic: Help choosing a dev board and appropriate compiler.
Replies: 15
Views: 9318

You can download the mikroBasic and proton basic manual from the internet and do the comparison for yourself. The latter is over 400 pages though.
by vpapanik
30 Sep 2005 16:25
Forum: Development Boards
Topic: PICFLASH command line options
Replies: 1
Views: 2050

PICFLASH command line options

Seems like the -p parameter is not working for me...

picflash.exe -w -pP16F877A -v -f"C:\somefile.hex"

the file somefile.hex is loaded without problems but the PIC type does
not switch to P16F877A, it remains equal to the last device type used.

Any ideas?
by vpapanik
22 Sep 2005 19:01
Forum: Development Boards
Topic: EasyPIC3 and Graphic LCD
Replies: 17
Views: 10108

It has a limitation of 50 code lines and 4 supported PIC types. Hence you can check it out. It worked for me.
by vpapanik
22 Sep 2005 07:48
Forum: Development Boards
Topic: EasyPIC3 and Graphic LCD
Replies: 17
Views: 10108

You may have a bad GLCD, who knows...did you use the onboard GLCD or connected one on the pinhead ports ? To find it out you can use another compiler, say Proton Basic Lite (freeware) and check whether it is a matter of compiler or not.
by vpapanik
21 Sep 2005 06:39
Forum: Development Boards
Topic: EasyPIC3 and Graphic LCD
Replies: 17
Views: 10108

I wonder how you did find so many problems on a so STABLE library !!!

Anyway, this worked with me : set the RST pin high before GLCD_Init. Works really good.

for instance, if RST pin is PORTB.5 then

TRISB.5 := 0;
PORTB.5 := 1;
GLCD_Init(.............);

Try it and report back.
by vpapanik
19 Sep 2005 11:50
Forum: mikroBasic General
Topic: It works!!!
Replies: 3
Views: 2014

I saw that your program is quite large. What can you do if you run out of ROM memory ? Is there a way to expand the PIC memory ?
by vpapanik
15 Sep 2005 11:36
Forum: mikroBasic General
Topic: Anyone Home at mikroElektronika
Replies: 13
Views: 6005

2 emails, 2 weeks ago, no reply yet....
They are on a long holiday...
by vpapanik
11 Sep 2005 09:00
Forum: mikroPascal General
Topic: IF...Then... Else Help.
Replies: 7
Views: 3762

The command or the block of commands before else should not have a ; on the end. This is present in all pascals I know.

So

if something then
command
else
command;

if something then
begin
command;
end
else
command;


try this....
by vpapanik
10 Sep 2005 20:38
Forum: Development Boards
Topic: EasyPic boards using different compiler/IDE
Replies: 32
Views: 19470

Speaking of free hardware, I found someone with free software. Check this 'yoko' here : http://www.mikroe.com/forum/viewtopic.php?t=2468 He has made a lot of money with mikroPascal but he said that he NEVER bought a compiler. And now plays the lawyer of ME. I am very happy indeed with EP2 board (no ...
by vpapanik
10 Sep 2005 20:23
Forum: mikroPascal General
Topic: Serious GLCD Problem !!!
Replies: 14
Views: 7633

>I never bought a compiler from them, but I made a large amount of money >with mikroPascal.

Well done, please tell us how you made money with the trial version of mikroPascal....your 2K code would be really great !

I believe that you are a non-experienced lawyer !
by vpapanik
10 Sep 2005 20:11
Forum: mikroPascal General
Topic: Serious GLCD Problem !!!
Replies: 14
Views: 7633

Moreover, did you see any error in the 5-line code above which does not work (no text shown) ? If you find any mistakes that I will take everything back and say sorry to everyone. But you won't.
by vpapanik
10 Sep 2005 20:08
Forum: mikroPascal General
Topic: Serious GLCD Problem !!!
Replies: 14
Views: 7633

Have you tried the GLCD library ? I suppose not. 1. GLCD_Select_Font, was advised to use it, wrongly documented (3 parameters do not work), no examples, no support. Asked for details, no reply. Asked for when for new version, the reply was 'soon'. Very professional indeed. 2. GLCD_Disable, documente...
by vpapanik
10 Sep 2005 07:49
Forum: Development Boards
Topic: EasyPic boards using different compiler/IDE
Replies: 32
Views: 19470

Thanks too Charlie ! Will buy PDS hoping to get better libraries and better support.
by vpapanik
10 Sep 2005 07:47
Forum: mikroPascal General
Topic: Serious GLCD Problem !!!
Replies: 14
Views: 7633

Pascal uses single quotes for over 20 years I think. Basic is with double quotes...

Go to advanced search