Current Wish List

General discussion on mikroBasic.
Author
Message
LGR
Posts: 3204
Joined: 23 Sep 2004 20:07

#121 Post by LGR » 02 Nov 2006 02:35

You can use the flash library to write to a const array. Use the @ operator to get the address to the const array. You can then access the data that you just wrote as array members. It isn't possible to write to individual locations, because the PIC always writes in blocks of 64 bytes. So this is as good as it gets.
If you know what you're doing, you're not learning anything.

Chris Yeager
Posts: 73
Joined: 21 Sep 2005 04:23

New feature....

#122 Post by Chris Yeager » 16 Nov 2006 22:55

It would be real handy if SYMBOLs defined in modules could be used in files that include them.

INGRam
Posts: 49
Joined: 18 Nov 2006 07:48

#123 Post by INGRam » 27 Nov 2006 09:09

Please can we have a getpixel(x,y) for the glcd ?

return if the selected pixel was on or off.

Without this procedure is impossible to get a portion of screen an store it on array.

This method is generally used to store, popup a menu, and repaint only the popup changed area.
Luca

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

#124 Post by zristic » 27 Nov 2006 09:52

INGRam wrote:Please can we have a getpixel(x,y) for the glcd ?
Try this:

Code: Select all

  Glcd_Set_Side(x_pos)  ' select left/right side of GLCD
  Glcd_Set_Page(page_num) ' vertical (Y) coordinate (range from 0..7)
  Glcd_Set_X(x_pos) ' X coordinate
  data := Glcd_Read_Data() ' read byte from (X, Y) - data is vertical line at page Y, column X

INGRam
Posts: 49
Joined: 18 Nov 2006 07:48

#125 Post by INGRam » 27 Nov 2006 10:03

zristic wrote:
INGRam wrote:Please can we have a getpixel(x,y) for the glcd ?
Try this:

Code: Select all

  Glcd_Set_Side(x_pos)  ' select left/right side of GLCD
  Glcd_Set_Page(page_num) ' vertical (Y) coordinate (range from 0..7)
  Glcd_Set_X(x_pos) ' X coordinate
  data := Glcd_Read_Data() ' read byte from (X, Y) - data is vertical line at page Y, column X

Great !!!
Thank you !
Luca

marcus
Posts: 101
Joined: 12 Sep 2006 08:58

#126 Post by marcus » 24 Jan 2007 09:01

Your mikrobasic compiler (v5) doesn't support PIC16F88x family

Geppo
Posts: 121
Joined: 04 May 2005 10:49
Location: Italy
Contact:

#127 Post by Geppo » 01 Feb 2007 16:25

I wish a Linux version of mikroB... what do you think about???
Cogita semper qualis software, non quanta sit.
SENECA
(he also was a proud mB user from ancient Rome...:-))

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

#128 Post by zristic » 02 Feb 2007 08:46

We think of it everyday.

Geppo
Posts: 121
Joined: 04 May 2005 10:49
Location: Italy
Contact:

#129 Post by Geppo » 03 Feb 2007 18:42

So hurry up!!
We are waiting for :wink:
Cogita semper qualis software, non quanta sit.
SENECA
(he also was a proud mB user from ancient Rome...:-))

LGR
Posts: 3204
Joined: 23 Sep 2004 20:07

#130 Post by LGR » 04 Feb 2007 01:55

Here's an idea: how about a mE Linux distro? You could make an entire bootable package that runs with KDE, and can boot from a thumb drive. Maybe build it on DSL or some other minimal distro, so the whole thing can fit in 256 meg or so. Plug and play.
If you know what you're doing, you're not learning anything.

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

#131 Post by zristic » 05 Feb 2007 12:05

The first step is separating compier from IDE which is what we are doing right now. The rest is limited by imagination.

LGR
Posts: 3204
Joined: 23 Sep 2004 20:07

#132 Post by LGR » 05 Feb 2007 16:44

Maybe you're already thinking along these lines, but the kdevelop IDE is a pretty nice package, so if you can just hook the compiler into that, you don't need to compile your IDE. It would give it a different look and feel from the ME IDE, but it would very usable.
If you know what you're doing, you're not learning anything.

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

#133 Post by zristic » 06 Feb 2007 09:45

LGR wrote:Maybe you're already thinking along these lines, but the kdevelop IDE is a pretty nice package, so if you can just hook the compiler into that, you don't need to compile your IDE. It would give it a different look and feel from the ME IDE, but it would very usable.
Yes, we are thinking of it.

rackley
Posts: 550
Joined: 08 Aug 2005 17:47
Location: Livonia, MI
Contact:

#134 Post by rackley » 09 Feb 2007 23:59

uint32 data type would be very nice. You already have a signed 32-bit integer, so an unsigned shouldn't be too much of a stretch. I'm trying to work with encryption/decryption algorithms and being constrained to 16-bit unsigned types is...uncomfortable :-)

Thanks,
Ray

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

#135 Post by zristic » 12 Feb 2007 09:20

Uint32 is planned for the next release.

Post Reply

Return to “mikroBasic General”