![]() |
Forum Index : Microcontroller and PC projects : Explore 100
Author | Message | ||||
lew247![]() Guru ![]() Joined: 23/12/2015 Location: United KingdomPosts: 1673 |
Am I right in thinking that the Explore 100 has not got the updated commands like GPS found in the Picomite and the last software version is 5.05.05 Are there any plans on updating this or not? |
||||
Geoffg![]() Guru ![]() Joined: 06/06/2011 Location: AustraliaPosts: 3078 |
Yes, you are right. The Micromite firmware for the PIC32 chips is at V5.05.05 and does not have a lot of the "extras" that Peter has put into the PicoMite series. There are a few reasons for this but the most important is that the Micromite firmware is now very stable (ie, bug free) so the idea is "don't mess with something that is working well". Geoff Geoff Graham - http://geoffg.net |
||||
Grogster![]() Admin Group ![]() Joined: 31/12/2012 Location: New ZealandPosts: 8778 |
I have a couple of systems running on both the 64-pin and 100-pin MM+ chips, and they run 24/7/365, and have been online now for almost four years, and they have NEVER faulted. So, yes, the MM+ FW is very stable now. ![]() I would pretty much classify it as final now. There might be some obscure bug still to be found, and squished, but other then that.... Smoke makes things work. When the smoke gets out, it stops! |
||||
Geoffg![]() Guru ![]() Joined: 06/06/2011 Location: AustraliaPosts: 3078 |
Four years... that's impressive. Thanks Grogs. Geoff Geoff Graham - http://geoffg.net |
||||
Grogster![]() Admin Group ![]() Joined: 31/12/2012 Location: New ZealandPosts: 8778 |
Yep, that's the FW reliability. I found a few bugs in MY code during that time, and fixed them, but that was not the interpreter's fault, that was me and my code mistakes. ![]() The FW has been rock-solid though, and one of those systems uses the advanced GUI controls, so that is a testament to the reliability of those controls also. Smoke makes things work. When the smoke gets out, it stops! |
||||
ElectroPI Newbie ![]() Joined: 27/04/2012 Location: AustraliaPosts: 8 |
I have an Explore100 with a 5" touch LCD as per the Silicon Chip article. I can't seem to get the GUI NUMBERBOX ACTIVATE #ref command to work. I'm running MMBASIC 5.05.05. Here's a screenshot of my settings, program and output after typing run: ![]() Am I using the command correctly? regards Peter |
||||
Grogster![]() Admin Group ![]() Joined: 31/12/2012 Location: New ZealandPosts: 8778 |
Howdy. ![]() Drop the hash and see if that works - GUI NUMBERBOX ACTIVATE 1 My guess is that the hash is confusing the interpreter, and it is thinking that the keyword ACTIVATE is a variable, and is trying to treat it as such, and then moans cos it can't find a variable with the name of ACTIVATE. '#ref' in the manual is just a way of referring to the VARIABLE that the command is referencing - the number 1 in this case. I would probably also drop the hash from the command that sets up the control: GUI NUMBERBOX 1,100,20,600,100,RGB(WHITE),RGB(GRAY) If that also errors out, then perhaps Geoff or Peter will chime in as there might be an obscure bug. Edited 2023-09-18 10:30 by Grogster Smoke makes things work. When the smoke gets out, it stops! |
||||
ElectroPI Newbie ![]() Joined: 27/04/2012 Location: AustraliaPosts: 8 |
I tried that already. It seems to not recognise the word 'ACTIVATE' and treats it like a variable. Using OPTION EXPLICIT gives the error "ACTIVATE is not declared" Without OPTION EXPLICIT I get "Error : Expression syntax" PS I just tried GUI TEXTBOX ACTIVATE #ref with/without OPTION EXPLICIT & it gives "Error : Syntax" in both cases. Edited 2023-09-18 10:42 by ElectroPI |
||||
phil99![]() Guru ![]() Joined: 11/02/2018 Location: AustraliaPosts: 1368 |
Yes, exactly the same on SC MM+ LCD Backpack (64 pin) with V5.05.05. |
||||
ElectroPI Newbie ![]() Joined: 27/04/2012 Location: AustraliaPosts: 8 |
An update - getting rid of all # symbols fixes the issue with TEXTBOX. However the error is still there with NUMBERBOX. |
||||
Grogster![]() Admin Group ![]() Joined: 31/12/2012 Location: New ZealandPosts: 8778 |
You might have found a bug. ![]() Smoke makes things work. When the smoke gets out, it stops! |
||||
Geoffg![]() Guru ![]() Joined: 06/06/2011 Location: AustraliaPosts: 3078 |
Sorry, but I am away from my development environment so I cannot test this but I very much doubt that it is a bug... I extensively tested this code. I will be back on board in about 2 week and could test it then. Geoff Geoff Graham - http://geoffg.net |
||||
![]() |