HP50g "Busy Bug" - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: General Forum (/forum-4.html) +--- Thread: HP50g "Busy Bug" (/thread-5672.html) |
HP50g "Busy Bug" - Vtile - 02-12-2016 12:50 PM Like title says. Question is the "busy bug" troubling every single machine (ROM215) or do I have a monday piece what comes to hardware? Would be nice to know, before I file a Quarantee claim of vanishing serial number. RE: HP50g "Busy Bug" - toml_12953 - 02-12-2016 01:21 PM (02-12-2016 12:50 PM)Vtile Wrote: Like title says. Question is the "busy bug" troubling every single machine (ROM215) or do I have a monday piece what comes to hardware? Would be nice to know, before I file a Quarantee claim of vanishing serial number. I searched for "busy bug" but didn't find anything. What is this bug? Tom L RE: HP50g "Busy Bug" - Vtile - 02-12-2016 01:29 PM (02-12-2016 01:21 PM)toml_12953 Wrote:Somesort of keypress registering lag error causing random double inputs through whole calculator and random long lags in simple mathematics like division etc. much annoying.(02-12-2016 12:50 PM)Vtile Wrote: Like title says. Question is the "busy bug" troubling every single machine (ROM215) or do I have a monday piece what comes to hardware? Would be nice to know, before I file a Quarantee claim of vanishing serial number. RE: HP50g "Busy Bug" - damaltor - 02-12-2016 02:02 PM neber had that problem, and never heard of that problem. Is there a way to reproduce? if not, i would recommend to RMA the units... RE: HP50g "Busy Bug" - Vtile - 02-12-2016 02:17 PM (02-12-2016 02:02 PM)damaltor Wrote: neber had that problem, and never heard of that problem. Is there a way to reproduce? if not, i would recommend to RMA the units... Maybe I'm just too fast for calculator, with my two finger technique. :-P That rubberbanding, hanging drives me nuts, and its random even worse. Atleast I know it is not a failing HW .. hopefully. I think I kind of start to get what is going on here, two or three things mixing together that looks like a one biiiiiig bug, interesting. Unfortunately my function generator is so long away and this piece is hard to open. It seems that with the "Busy Bug" there is also a keyboard oscillation problem, which together looks like the "Busy Bug" would be making double presses also in the stack view, interesting. One input for keydown and one "key up" if pressed certain lazy way. Need more work. RE: HP50g "Busy Bug" - Simone Cerica - 02-12-2016 02:45 PM in this discussion is explained the "busy bug": 50G "speed bumps" again https://groups.google.com/d/topic/comp.sys.hp48/ie5rE6mbf_o/discussion John H Meyers Quote:If the delayed keystroke registers when the *next* key is pressed, Joe Horn Quote:You're experiencing the Busy Bug, which happens whenever a key is it's also instructive to read this topic: 50G - sporadic pauses - garbage collection ? https://groups.google.com/forum/#!msg/comp.sys.hp48/SE7RfGC6uwk/y7KTrgY4zXIJ You have to use FMEM by John H Meyers: Code: @ HP49/50 series only ex. 10000000 FMEM RE: HP50g "Busy Bug" - Vtile - 02-12-2016 02:52 PM Quote:You have to use FMEM by John H Meyers:Thx, what does that do, I'm not following since it seems to be a mix of SysRPL and UserRPL, I'm only familiar with the userRPL RE: HP50g "Busy Bug" - Simone Cerica - 02-12-2016 02:58 PM It reduces the occurrences of the garbage collector RE: HP50g "Busy Bug" - Vtile - 02-12-2016 03:09 PM (02-12-2016 02:58 PM)Simone Cerica Wrote: It reduces the occurrences of the garbage collector ..But, but do I need to run it once or twice and does it introduce some other effects by it self I should be aware of and how I turn it off if it is cousing troubles with something else? RE: HP50g "Busy Bug" - Simone Cerica - 02-12-2016 03:14 PM if you notice sporadic pauses then use FMEM, make a backup before using it RE: HP50g "Busy Bug" - Han - 02-12-2016 04:05 PM If you type fast, using the (rightarrow)KEYTIME command might be useful. I would place the program << 0. ->KEYTIME >> into a variable named 'STARTUP' to ensure that there are no missed or double keypresses. RE: HP50g "Busy Bug" - DavidM - 02-12-2016 04:23 PM (02-12-2016 03:09 PM)Vtile Wrote: ..But, but do I need to run it once or twice and does it introduce some other effects by it self I should be aware of and how I turn it off if it is cousing troubles with something else? You can find a description of the use of the FMEM program from its author here: FMEM description. The main side effect to be aware of is that running this program will leave a rather large string object named "JUNK" in port 0. You can purge it quite easily simply by executing: Code: :0:JUNK PURGE [Edit: additional info] Note that purging this object cancels the benefit of the program. So the basic concept is leave the object in place so long as you don't need the memory, but delete it if you need the memory for something else. You can always run it again after you've taken care of whatever needed the additional memory. The "busy bug" doesn't inherently cause double keypresses, but many users understandably think that their initial keypress wasn't registered and as such will press the key again... which then causes both to be processed. |