Menu
JAQForum Ver 19.10.27

Forum Index : Microcontroller and PC projects : PicoMite V6.00.01 release candidates - please test thoroughly

   Page 6 of 23    
Posted: 11:32am
01 Dec 2024
Copy link to clipboard
cosmic frog
Guru

  matherp said  Dave

Please try this and report



PicoMite.zip


Yes, that seems to work great! Many thanks.

Dave.
 
Posted: 03:32pm
01 Dec 2024
Copy link to clipboard
Doktorn
Newbie


Hi Peter,

> option list
WebMite MMBasic RP2350A Edition V6.00.01RC4
OPTION SYSTEM SPI GP10,GP11,GP12
OPTION LCDPANEL ILI9488W, RPORTRAIT,GP8,GP15,GP9,GP13

? MM.HRES
480
? MM.VRES
320

HRES and VRES seems to  been swapped in Portrait mode.

Lasse
 
Posted: 04:24pm
01 Dec 2024
Copy link to clipboard
matherp
Guru

  Quote  HRES and VRES seems to  been swapped in Portrait mode.

You are not wrong - will fix in RC5
 
Posted: 07:23pm
01 Dec 2024
Copy link to clipboard
twofingers
Guru


I can't figure out how "save jpg" works. No problem with "Save image".
> save image "test.bmp"
> save jpg "test.jpg"
Error : Expected a string

Have you seen my post about the still unsolved "MM.INFO(pinno GPn)"?
Regards
Michael
 
Posted: 07:30pm
01 Dec 2024
Copy link to clipboard
matherp
Guru

  Quote  I can't figure out how "save jpg" works.

Doesn't exist.

pinno fixed in next RC
Edited 2024-12-02 05:31 by matherp
 
Posted: 07:35pm
01 Dec 2024
Copy link to clipboard
Mixtel90
Guru


twofingers:
I'm curious. What makes you think MM.INFO(PINNO GPn) should accept a string for GPn?
 
Posted: 07:42pm
01 Dec 2024
Copy link to clipboard
twofingers
Guru


  Mixtel90 said  twofingers:
I'm curious. What makes you think MM.INFO(PINNO GPn) should accept a string for GPn?
It does, just not for all pins. See example in my post yesterday.
s. manual p83:
MM.INFO(PINNO GPnn)
  Quote  Returns the physical pin number for a given GP number. GPnn can be an
unquoted string (GP01), a string literal(“GP01”) or a string variable. Ie,
A$=”GP01”: MM.INFO(PINNO A$)
.
Regards
Michael
 
Posted: 07:46pm
01 Dec 2024
Copy link to clipboard
Mixtel90
Guru


It's just that I'd never attempted that. Thanks. :)
 
Posted: 08:13pm
01 Dec 2024
Copy link to clipboard
twofingers
Guru


  Mixtel90 said  It's just that I'd never attempted that. Thanks. :)

Everything's fine!
@Peter
Thanks for the quick reply.
Regards
Michael
Edited 2024-12-02 06:16 by twofingers
 
Posted: 08:40pm
01 Dec 2024
Copy link to clipboard
twofingers
Guru


@Peter
Isn't it unexpected that compressed files are larger than uncompressed files with identical image content?
  Quote  08:25 01-01-2024      38518  iter.bmp
10:07 01-01-2024      67564  iter1.bmp

Iter.bmp is the uncompressed file.
Iter1.bmp is the compressed file.
Edited 2024-12-02 06:42 by twofingers
 
Posted: 08:55pm
01 Dec 2024
Copy link to clipboard
phil99
Guru


Which Pico version?
06:50 02-12-2024      38518  gui test lcdpanel.bmp
06:49 02-12-2024       9462  gui test lcdpanel Compressed.bmp
00:01 01-01-2000        896  RP2350 VGA 6.00.01RC4.opt

Edit.
I think the compression method is Run Length Encoding which could produce a larger file if there is too much detail. Good compression needs long "run lengths" with no change.
Edited 2024-12-02 07:01 by phil99
 
Posted: 09:04pm
01 Dec 2024
Copy link to clipboard
twofingers
Guru


  phil99 said  Which Pico version?

RP2350 HDMI 6.00.01RC4
  phil99 said  Good compression needs long "run lengths" with no change.

That could be the reason. But at first glance it is unexpected. Maybe we are spoiled by zip and rar.
Regards
Michael

In case anyone wants to play with it:
iter.zip
Edited 2024-12-02 07:15 by twofingers
 
Posted: 11:16pm
01 Dec 2024
Copy link to clipboard
aiy745321
Newbie

Hi,

I am using RC1 now.  

PicoMite MMBasic Version 6.00.00RC1
Copyright 2011-2024 Geoff Graham
Copyright 2016-2024 Peter Mather

same issue:

[83] mbox=MsgBox("Are you sure?", "YES","CANCEL")
Error : Invalid character: 

K
 
Posted: 11:42pm
01 Dec 2024
Copy link to clipboard
phil99
Guru


@twofingers

Yep, that is the problem, way too much detail.
09:32 02-12-2024      67564  iter compressed.bmp
09:31 02-12-2024      38528  iter.bmp
00:01 01-01-2000        896  RP2350 VGA 6.00.01RC4.opt
 
Posted: 12:51am
02 Dec 2024
Copy link to clipboard
lizby
Guru

  aiy745321 said  Error : Invalid character: 


That may indicate that there is indeed a non-printing "invalid" character in the command. Try typing the whole command line again, without cutting and pasting.
 
Posted: 02:12am
02 Dec 2024
Copy link to clipboard
phil99
Guru


> option gui controls 20
> mbox=MsgBox("Are you sure?", "YES","CANCEL") : ? mbox
1
> mbox=MsgBox("Are you sure?", "YES","CANCEL") : ? mbox
2
> option list
PicoMite MMBasic RP2040 Edition V6.00.01RC4

Works ok on this one.
 
Posted: 02:19am
02 Dec 2024
Copy link to clipboard
TassyJim
Guru


  Quote  Error : Invalid character:

Try using the latest version.
6.00.01RC4
 
Posted: 07:35am
02 Dec 2024
Copy link to clipboard
Volhout
Guru

Peter,

Can you include CPUSPEED 25200 for OPTION RESET VGA design 2 ?
Could be both 2040 and 2350.

Volhout
Edited 2024-12-02 17:36 by Volhout
 
Posted: 08:15am
02 Dec 2024
Copy link to clipboard
matherp
Guru

  Quote  Can you include CPUSPEED 25200 for OPTION RESET VGA design 2 ?


Will do
 
Posted: 09:18am
02 Dec 2024
Copy link to clipboard
twofingers
Guru


  phil99 said  @twofingers

Yep, that is the problem, way too much detail. ...

@Phil
Thanks for the confirmation.
Regards
MIchael
 
   Page 6 of 23    
The Back Shed's forum code is written, and hosted, in Australia.
© JAQ Software 2025