Search found 19 matches

by K0RU
09 Apr 2011 01:35
Forum: Product Announcements
Topic: Announcing the development of LIBSTOCK - Your place for code
Replies: 129
Views: 193667

Re: Announcing the development of LIBSTOCK - Your place for

How do I upload my samples? Is it fully functional yet, I went there and Wow, thats fantastic but I don't see where to upload my samples yet.

Samples are just that Samples... Use it to learn, not to be a fully functional working model.

Rob
K0RU
by K0RU
09 Apr 2011 01:33
Forum: mikroPascal PRO for AVR General
Topic: Sample Code for DS1621 Temp Sensor I2C
Replies: 4
Views: 6796

Re: Sample Code for DS1621 Temp Sensor I2C

Sorry so late to reply to your message, been away from home for long time on business and now back to the real world... Looking forward to playing with some AVR stuff again.

Rob
K0RU
by K0RU
09 Apr 2011 01:32
Forum: mikroPascal PRO for AVR General
Topic: Sample Code for DS1621 Temp Sensor I2C
Replies: 4
Views: 6796

Re: Sample Code for DS1621 Temp Sensor I2C

The sample was for the ATMEGA88, although it will work with any AVR with I2C capability just configure your pins correctly and your good to go, I've used this with several different AVR chips and works just fine.
by K0RU
07 Apr 2011 17:34
Forum: mikroPascal PRO for AVR General
Topic: MLX90614 with ATMEGA16 and MikroAVR PASCAL Source Code
Replies: 0
Views: 3034

MLX90614 with ATMEGA16 and MikroAVR PASCAL Source Code

After many attempts to find some sort of source code examples for the MLX90614 Infared Thermal Sensor by Melexis I was only able to discover some very poorly document C-Code. Attached is an example of some AVR PASCAL written with MikroElektonika AVR PASCAL PRO that helps to explain some of the comma...
by K0RU
29 Sep 2010 14:02
Forum: mikroPascal PRO for AVR General
Topic: Sample Code for DS1621 Temp Sensor I2C
Replies: 4
Views: 6796

Sample Code for DS1621 Temp Sensor I2C

This is some code I developed for the Dallas Maxim DS1621 Digital Thermometer and Thermostat which is a component for the Proteus ISIS. Have fun and enjoy. I tried to define and explain as much as I could to help you along with your developement. program DS1621_v1; { Declarations section } var TempF...
by K0RU
27 Sep 2010 20:50
Forum: mikroPascal PRO for AVR General
Topic: Need SPI PASCAL Sample Code can anyone help?
Replies: 3
Views: 2266

Re: Need SPI PASCAL Sample Code can anyone help?

Since I wasn't able to get the SPI interface coding to work (Ranko I did try the examples, but couldn't get them to work)... I decided to try another route. Today, I changed all the code over to I2C and everything works great. Here is the code I ended up having to use incase someone else has difficu...
by K0RU
23 Sep 2010 00:33
Forum: mikroPascal PRO for AVR General
Topic: Need SPI PASCAL Sample Code can anyone help?
Replies: 3
Views: 2266

Need SPI PASCAL Sample Code can anyone help?

I've been busting my chops trying to come up with a version of a SPI PASCAL SOURCE CODE that works. Please NO C-CODE I know those are out there and I don't program in C. Does anyone have a sample of PASCAL SOURCE CODE for getting a SPI circuit to function? Here is some sloppy code I have so far DEVI...
by K0RU
13 Aug 2010 22:04
Forum: Website & Forums General Discussion
Topic: hi, i have a problem concerning writing numbers on LCD
Replies: 3
Views: 2111

Re: hi, i have a problem concerning writing numbers on LCD

Ran into this problem myself, here is a solution for you that works just fine. The reason is the "FloatToStr" code is very large and takes up alot of the MCU memory when your using that routine. Best to avoid using that when working with small memory MCU devices. program Adc_On_Lcd; // LCD module co...
by K0RU
13 Aug 2010 21:43
Forum: mikroPascal PRO for AVR General
Topic: Windows 7, 32-Bit up and running, Demo Limit issues though
Replies: 3
Views: 2012

Windows 7, 32-Bit up and running, Demo Limit issues though

Yep just installed Windows 7, 32-Bit Professional Edition. I'm using MikroPascal Pro Complier works great so far, however Did the REG PROGRAM but still hitting the 2k demo limit. RE-Submitted Registration request, I'm thinking must need new Reg Program that works with Win-7 not sure. Waiting for my ...
by K0RU
13 Aug 2010 21:41
Forum: mikroBasic PRO for PIC General
Topic: Mikrobasic went back to Demo mode.
Replies: 4
Views: 1927

Re: Mikrobasic went back to Demo mode.

Yep just installed Windows 7, 32-Bit Professional Edition. I'm using MikroPascal Pro Complier. Did the REG PROGRAM but still hitting the 2k demo limit. RE-Submitted Registration request, I'm thinking must need new Reg Program that works with Win-7 not sure. Waiting for my email reply from Mikro Rob ...
by K0RU
22 Jul 2010 14:12
Forum: mikroPascal PRO for AVR Beta Testing
Topic: FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 why?
Replies: 6
Views: 6136

Re: FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 wh

WOW, Fantastic this explains everything for me then. I've jump to a different MCU (ATTINY88) and my original program is working fine. I will however reconsider now with this help and go back and try doing the code differently to see if I can utilize the ATTINY26 which I have alot of. Thanks for ever...
by K0RU
21 Jul 2010 20:33
Forum: mikroPascal PRO for AVR Beta Testing
Topic: FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 why?
Replies: 6
Views: 6136

Re: FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 wh

using the ATTINY26 chip and get this error (out of ROM) but if I use the ATMEGA16 it works. Reason? Out of ROM? makes no sense, because there is nothing else in the program except the following EXAMPLE. for the FLOATTOSTR(); program test; var ff1, ff2, ff3 : real; txt : array[23] of char; { Declarat...
by K0RU
21 Jul 2010 19:34
Forum: mikroPascal PRO for AVR Beta Testing
Topic: FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 why?
Replies: 6
Views: 6136

FloatToStr(real,str) = ERROR with PRO Pascal Beta 3.2 why?

inserting FloatToStr(real,str) anywhere in the code results in Compiler messages ---- 0 139 All files Compiled in 15 ms 103 342 There is not enough ROM space __Lib_Lcd.mpas 365 342 There is not enough ROM space __Lib_Conversions.mpas 24 342 There is not enough ROM space AL500_Monitor.mpas 103 342 Th...
by K0RU
15 Apr 2010 01:37
Forum: mikroPascal PRO for AVR General
Topic: AVRFlash 2.12 doesn't list ATTINY88, how do you Flash one?
Replies: 2
Views: 1678

Re: AVRFlash 2.12 doesn't list ATTINY88, how do you Flash on

Losic Tihomir,

Thanks, can you point me to the older version of the AVR-Flash that supports it?

Rob
by K0RU
11 Apr 2010 16:31
Forum: mikroPascal PRO for AVR General
Topic: AVRFlash 2.12 doesn't list ATTINY88, how do you Flash one?
Replies: 2
Views: 1678

AVRFlash 2.12 doesn't list ATTINY88, how do you Flash one?

How do I select ATTINY88 in the AVRFlash, its not listed in my version 2.12

I can however select the ATTINY88 for programing in the mikroPascal PRO 2.10 just fine.

Thanks
Rob

Go to advanced search