Post Reply 
HP50G Launch Solve equation app in a program
06-21-2016, 01:15 AM
Post: #1
HP50G Launch Solve equation app in a program
I am wondering if it is possible to launch the solve equation app inside of program.

I have a program that does a bit of house-keeping to setup to launch the solve equation app, just wondering how I could tell the program to go ahead and launch it versus have to do the RS 7 ENTER combo after running my program every time.

I am looking to launch this app:
http://h20564.www2.hp.com/hpsc/doc/publi...=c01929504
Find all posts by this user
Quote this message in a reply
06-21-2016, 02:04 AM
Post: #2
RE: HP50G Launch Solve equation app in a program
Try calling the built-in menu for the solve equation app from within your program.

To specify a particular page of a menu, enter the number as m.pp, where m is the menu number and pp is the page number (such as 94.02 for page 2 of the TIME menu). If page pp doesn’t exist, page 1 is displayed (94 gives page 1 of
the TIME menu).

HP 50g Advanced User's Reference Manual Edition 2
http://www.hpcalc.org/search.php?query=hp+50g+aur

See The Menu-Number Table H-1 through H-5, pages 637 through 641.
Find all posts by this user
Quote this message in a reply
06-21-2016, 02:33 AM
Post: #3
RE: HP50G Launch Solve equation app in a program
Cheers,

!!! WARNING !!!
FIRST: Backup memory before trying it!
SYSEVAL, LIBEVAL and FLASHEVAL can cause calculator memory crash.


To access Solve equation input form use:

# 32002h FLASHEVAL (HP’s 49G/48GII/49G+/50G) or

# B4001h LIBEVAL (HP’s 48G/48GX/48G+ and 49G/48GII/49G+/50G)


More in:
Area48
http://www.area48.com/48entries.html

HP 48/49 Supported Entry Points Cross Reference 1.12
http://www.hpcalc.org/details.php?id=3248

HP 49G FlashEvals
http://www.hpcalc.org/details.php?id=5733

To test memory addresses use the HPUserEdit editor.
This editor already has EMU48.
http://www.hpcalc.org/details.php?id=7587 (Spanish)

HPUserEdit English Translation
http://www.hpcalc.org/details.php?id=7588

Test too ... (very very safe Wink )
'A=B+C' STEQ 30 MENU (48/49/50)

Best regards.

PS: Sorry for my English.
Find all posts by this user
Quote this message in a reply
06-21-2016, 03:05 AM (This post was last modified: 06-21-2016 03:18 AM by dalupus.)
Post: #4
RE: HP50G Launch Solve equation app in a program
(06-21-2016 02:04 AM)MNH Wrote:  Try calling the built-in menu for the solve equation app from within your program.

To specify a particular page of a menu, enter the number as m.pp, where m is the menu number and pp is the page number (such as 94.02 for page 2 of the TIME menu). If page pp doesn’t exist, page 1 is displayed (94 gives page 1 of
the TIME menu).

HP 50g Advanced User's Reference Manual Edition 2
http://www.hpcalc.org/search.php?query=hp+50g+aur

See The Menu-Number Table H-1 through H-5, pages 637 through 641.

yeah I tried that already. All that does is bring the menu up, it doesn't actually launch anything. Also, interestingly, even though I have soft menus enabled normally num.slv comes up in a popup anyway, but when calling it this way it puts it on the soft keys. No idea why that is.
Find all posts by this user
Quote this message in a reply
06-21-2016, 03:17 AM (This post was last modified: 06-21-2016 03:27 AM by dalupus.)
Post: #5
RE: HP50G Launch Solve equation app in a program
(06-21-2016 02:33 AM)RPL Calcs Wrote:  Test too ... (very very safe Wink )
'A=B+C' STEQ 30 MENU (48/49/50)

Best regards.

PS: Sorry for my English.

That is incredible. That brings up the old 28S style solver (might also be how the 48 and 49 work, not sure since I don't own them).

For others that might encounter this.
You do the a program as he suggested and execute it.
Then do
5 soft key A
3 soft key B
left shift soft key C
The answer C:2 pops out.

This is as good (if not better) than using the application.

Thanks a ton.

And your English was perfect Smile
Find all posts by this user
Quote this message in a reply
06-21-2016, 03:22 AM
Post: #6
RE: HP50G Launch Solve equation app in a program
(06-21-2016 02:33 AM)RPL Calcs Wrote:  !!! WARNING !!!
FIRST: Backup memory before trying it!
SYSEVAL, LIBEVAL and FLASHEVAL can cause calculator memory crash.
To access Solve equation input form use:

# 32002h FLASHEVAL (HP’s 49G/48GII/49G+/50G) or
.

How would you go about entering that in a program?
Literally "# 32002h FLASHEVAL" ?
Find all posts by this user
Quote this message in a reply
06-21-2016, 04:28 AM (This post was last modified: 06-21-2016 04:33 AM by RPL Calcs.)
Post: #7
RE: HP50G Launch Solve equation app in a program
Quote:That is incredible. That brings up the old 28S style solver (might also be how the 48 and 49 work, not sure since I don't own them).

Yes, great. I also prefer this way.

'A=B+C' STEQ 30 MENU
works in HP’s 48SX/S, 48G/GX/G+/GII, 49G/G+ and 50G.

And, to the HP 28S (ROM version 2BB) is
'A=B+C' STEQ #1DE26h SYSEVAL

!!! WARNING !!!
In the HP 28 can not do backup. Sad

THE ADRESS #1DE26h WILL ONLY WORK WITH THE HP28S VERSION 2BB.
To know the version of your calculator, type:
#Ah SYSEVAL <ENTER>

Quote:How would you go about entering that in a program?
Literally "# 32002h FLASHEVAL" ?

Yes. Only:
# 32002h FLASHEVAL
or
#32002h FLASHEVAL
Find all posts by this user
Quote this message in a reply
06-21-2016, 05:00 AM (This post was last modified: 06-21-2016 05:01 AM by dalupus.)
Post: #8
RE: HP50G Launch Solve equation app in a program
(06-21-2016 04:28 AM)RPL Calcs Wrote:  And, to the HP 28S (ROM version 2BB) is
'A=B+C' STEQ #1DE26h SYSEVAL

!!! WARNING !!!
In the HP 28 can not do backup. Sad

THE ADRESS #1DE26h WILL ONLY WORK WITH THE HP28S VERSION 2BB.
To know the version of your calculator, type:
#Ah SYSEVAL <ENTER>

Actually you can do the same safe trick with a different menu number on the 28S (just tried to make sure it still works)

'A=B+C' STEQ 24 MENU
Find all posts by this user
Quote this message in a reply
06-21-2016, 05:31 AM
Post: #9
RE: HP50G Launch Solve equation app in a program
Quote:Actually you can do the same safe trick with a different menu number on the 28S (just tried to make sure it still works)

'A=B+C' STEQ 24 MENU

Great! and safe Smile
Thanks!
Find all posts by this user
Quote this message in a reply
06-21-2016, 05:36 AM
Post: #10
RE: HP50G Launch Solve equation app in a program
dalupus,
Do you have a hp 28?

Some interesting links:
http://www.hpmuseum.org/hp28c.htm
http://www.hpmuseum.org/cgi-sys/cgiwrap/...i?read=313
http://www.hpcalc.org/hp28/
http://www.hpcalc.org/hp28/docs/grphc28s.txt
http://www.nic.funet.fi/index/misc/hp28s/
http://www.hutter1.net/calculators/hp28s.htm
http://www.thimet.de/CalcCollection/Calc...ities.html
http://www.ganjatron.net/retrocomputing/hp-28s/
https://www.flickr.com/photos/keithmidso...354800664/
http://www.thimet.de/CalcCollection/Calc...ption.html

Do you have any other interesting link?
Find all posts by this user
Quote this message in a reply
06-21-2016, 05:57 AM
Post: #11
RE: HP50G Launch Solve equation app in a program
(06-21-2016 05:36 AM)RPL Calcs Wrote:  dalupus,
Do you have a hp 28?
Yes, I have a 28s.
Find all posts by this user
Quote this message in a reply
06-21-2016, 01:54 PM (This post was last modified: 06-22-2016 11:59 AM by striegel.)
Post: #12
A nice collection of HP-28C/28S links
(06-21-2016 05:36 AM)RPL Calcs Wrote:  dalupus,
Do you have a hp 28?

Some interesting links:
http://www.hpmuseum.org/hp28c.htm
http://www.hpmuseum.org/cgi-sys/cgiwrap/...i?read=313
http://www.hpcalc.org/hp28/
http://www.hpcalc.org/hp28/docs/grphc28s.txt
http://www.nic.funet.fi/index/misc/hp28s/
http://www.hutter1.net/calculators/hp28s.htm
http://www.thimet.de/CalcCollection/Calc...ities.html
http://www.ganjatron.net/retrocomputing/hp-28s/
https://www.flickr.com/photos/keithmidso...354800664/
http://www.thimet.de/CalcCollection/Calc...ption.html

Do you have any other interesting link?
That's a nice collection of HP-28C/28S links. Thanks. The only thing I might add is this one.

http://www.hpmuseum.org/forum/thread-5673.html

Alan
Find all posts by this user
Quote this message in a reply
06-21-2016, 03:47 PM (This post was last modified: 06-21-2016 03:54 PM by RPL Calcs.)
Post: #13
RE: HP50G Launch Solve equation app in a program
Quote:Actually you can do the same safe trick with a different menu number on the 28S (just tried to make sure it still works)

'A=B+C' STEQ 24 MENU

I forgot that the menus in the HP 28S can also be accessed through their numbers.
I have read the manual again, and in the Reference Manual (page 142, Edition 2) have the list:

1 ARRY
2 BINARY
3 COMPLEX
4 STRING
5 LIST
6 REAL
7 STACK
8 STORE
9 MEMORY
10 ALGEBRA
11 STAT
12 PRINT
13 PROGRAM CONTROL
14 PROGRAM BRANCH
15 PROGRAM TEST
16 MODE
17 LOGS
18 PLOT
19 CUSTOM
20 Cursor
21 TRIG
22 SOLVE (SOLVR_soft-menu_key)
23 USER
24 Solver (SOLV_key)

Quote:The only thing I might add is this one.
http://www.hpmuseum.org/forum/thread-5673.html

Alan

Thanks for your reply, Alan.
Very nice work. Congratulations!
I saved the link in my favorites.
When my hp 48s break, I will request your help Smile
Best regards,

PS: Sorry for my English.
Find all posts by this user
Quote this message in a reply
06-22-2016, 01:55 AM
Post: #14
RE: HP50G Launch Solve equation app in a program
(06-21-2016 05:36 AM)RPL Calcs Wrote:  dalupus,
Do you have a hp 28?

Some interesting links:
http://www.hpmuseum.org/hp28c.htm
http://www.hpmuseum.org/cgi-sys/cgiwrap/...i?read=313
http://www.hpcalc.org/hp28/
http://www.hpcalc.org/hp28/docs/grphc28s.txt
http://www.nic.funet.fi/index/misc/hp28s/
http://www.hutter1.net/calculators/hp28s.htm
http://www.thimet.de/CalcCollection/Calc...ities.html
http://www.ganjatron.net/retrocomputing/hp-28s/
https://www.flickr.com/photos/keithmidso...354800664/
http://www.thimet.de/CalcCollection/Calc...ption.html

Do you have any other interesting link?

Suggest you add a new Forum message titled something like "Useful HP-28 Links" with the same information. This looks like a very useful set to have, but no one will ever find it past next week, buried in this thread.

--Bob Prosperi
Find all posts by this user
Quote this message in a reply
06-22-2016, 03:52 PM (This post was last modified: 06-22-2016 03:53 PM by RPL Calcs.)
Post: #15
RE: HP50G Launch Solve equation app in a program
Quote:Suggest you add a new Forum message titled something like "Useful HP-28 Links" with the same information. This looks like a very useful set to have, but no one will ever find it past next week, buried in this thread.

Hello, Bob Prosperi.
Thanks for your suggestion. I will post the links in a new message.
Best regards.
Find all posts by this user
Quote this message in a reply
08-14-2017, 07:20 AM (This post was last modified: 08-14-2017 10:41 AM by pier4r.)
Post: #16
RE: HP50G Launch Solve equation app in a program
(06-22-2016 01:55 AM)rprosperi Wrote:  Suggest you add a new Forum message titled something like "Useful HP-28 Links" with the same information. This looks like a very useful set to have, but no one will ever find it past next week, buried in this thread.

I agree. It is also true that with a thread named properly one has to search it to find it (if the search function helps), so in doubt I added them to the hp calculators wiki.

Note that I found it only because I am reading through the general forum.

http://www.wiki4hp.com/doku.php?id=resources:start

Moreover with niche sites like hpmuseum.org one can really see how little changes in the search string return totally different results while one would expect that (or other search engines) should be able to handle the small differences:

site:hpmuseum.org useful link 28
I get the http://hpmuseum.org/forum/thread-6444-post-58046.html immediately.

site:hpmuseum.org useful links 28
I never get the wanted thread

Wikis are great, Contribute :)
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)