Search found 23 matches

by earlyperl
29 Dec 2008 16:42
Forum: mikroPascal PRO for AVR General
Topic: ENC28J60 Ethernet Library for PRO compiler
Replies: 5
Views: 6105

Hello,
thank you for this great code!
Good work!

Marco
by earlyperl
29 Oct 2008 20:22
Forum: mikroPascal for AVR General
Topic: aren't you ashamed mikroe?
Replies: 1
Views: 4038

aren't you ashamed mikroe?

Aren't you ashamed mikroe?

Instead of to make the old Pascal Compiler Bug-Free,
you build an new C compiler for AVR...

Many pascal users are waiting long time for an update that fix the bugs and better support and you are working for new AVR compilers with other language.

Thats unprofessional!
by earlyperl
24 Jun 2008 12:41
Forum: mikroPascal for AVR General
Topic: Support for ATMega 644P
Replies: 6
Views: 10545

Hi,
Mikropascal supports the Mega644 but the Mikroe Boards not!
I asked at Jan 12, 2008 in this post:
http://www.mikroe.com/forum/viewtopic.p ... =atmega644

...but there ist now answer from Mikroe until today.

I crated my own Board and everything is fine.
by earlyperl
24 Jun 2008 12:34
Forum: mikroPascal for AVR General
Topic: How to multiply and divide Longint Âż?
Replies: 1
Views: 4265

How to multiply and divide Longint Âż?

Hello,
how can i multiply and divide Longints?

Best regards
Marco
by earlyperl
24 Mar 2008 00:13
Forum: mikroPascal for AVR General
Topic: Siemens S65 Color Display at AVR
Replies: 0
Views: 5491

Siemens S65 Color Display at AVR

Hi,
here is my Lib for the Siemens S65 Color Display!
http://www.soft-land.de/index.php?page= ... lay-am-avr

This time included functions:
S65_Init
S65_Clear
S65_FillScreen
S65_Box

Feel free to help to make ist better!

Reagards
Marco
by earlyperl
10 Mar 2008 23:41
Forum: mikroPascal for AVR General
Topic: usart1_read_text
Replies: 6
Views: 6644

Thats a Bug, but it doesnt interest anybody from mikroe...
by earlyperl
01 Mar 2008 21:29
Forum: mikroPascal for AVR Wish List
Topic: Any plans to support AVR32?
Replies: 2
Views: 7651

Hello, there is the ATNGW100 Board from Atmel, this board gets subsidized by atmel for a short time to make the AVR32 more well-known. Its possible to develope this MCU without linux, ...but you need for AVR32 4-layer PCBs, i think this is to expensive for hobby. An Pascal-Compiler for ARM would be ...
by earlyperl
05 Feb 2008 17:30
Forum: mikroPascal for AVR General
Topic: Longinttostr Bug
Replies: 4
Views: 4370

I need it! :-)
by earlyperl
04 Feb 2008 21:47
Forum: mikroPascal for AVR General
Topic: Longinttostr Bug
Replies: 4
Views: 4370

Hi,
no so far i did not have time to test your lib,
but I will test it.

...Im waiting for your enc28j60-lib for AVR ;-)

Marco
by earlyperl
26 Jan 2008 13:33
Forum: mikroPascal for AVR General
Topic: Longinttostr Bug
Replies: 4
Views: 4370

Longinttostr Bug

Hi,
this Code works:

Code: Select all

var addr:longint;
begin
addr:=addr * 512;

{longinttostr(addr, str);
usart1_write_text(str);}
read_sector(0,addr);
end;
This Code works not:

Code: Select all

var addr:longint;
begin
addr:=addr * 512;

longinttostr(addr, str);
usart1_write_text(str);
read_sector(0,addr);
end;
by earlyperl
18 Jan 2008 12:40
Forum: Development Boards
Topic: ATMEGA644 + EasyAVR 5 + AVRFLASH v.2.10
Replies: 4
Views: 5637

push
by earlyperl
12 Jan 2008 13:29
Forum: Development Boards
Topic: ATMEGA644 + EasyAVR 5 + AVRFLASH v.2.10
Replies: 4
Views: 5637

ATMEGA644 + EasyAVR 5 + AVRFLASH v.2.10

Hello,
i can not flash the ATMEGA644 with EasyAVR 5 + AVRFLASH v.2.10
have somebody any ideas how to fix this problem?

Regards
Marco
by earlyperl
09 Jan 2008 16:27
Forum: mikroPascal for AVR General
Topic: PWM on Atmega88
Replies: 5
Views: 6167

Hi,
try TCCR0A and TCCRA0B and look here:
http://www.atmel.com/dyn/resources/prod ... /2545S.pdf

Best regards
Marco
by earlyperl
29 Dec 2007 12:37
Forum: mikroPascal for AVR General
Topic: 0:50 E-1 Error in ASM code: Register is out of range "1
Replies: 1
Views: 2780

Hi, with the following changes does it work: Comment this in enc_utils.apas: { // add AN2 value to reply intToStr(ADC_Read(2), dyna); tmp := 'var AN2='; len := len + putString(tmp); len := len + putString(dyna); tmp := ';'; len := len + putString(tmp); // add AN3 value to reply intToStr(ADC_Read(3),...
by earlyperl
15 Dec 2007 09:59
Forum: mikroPascal for AVR General
Topic: Math problem
Replies: 6
Views: 4871

This is a compiler bug... Please try this: program buffer; var buffer : array[512] of byte; function buffertest:integer; var i, jmp, pos1, pos2 : integer; begin buffer[26]:=0x02; buffer[27]:=0x00; jmp:=21; pos1:=jmp+5; pos2:=jmp+6; for i:=0 to 7 do begin result.i:=buffer[pos1].i;//BUG - buffer[26].i...

Go to advanced search