Post Reply 
Need to press reset button.
09-21-2021, 09:32 PM
Post: #7
RE: Need to press reset button.
Here are the programs that I use a lot of times each day.


Assign Key EEX to return F2M():
Code:
KEY K_Eex()
BEGIN
 RETURN "F2M()";
END;


F2M Program with 2 inputs:
Code:
EXPORT F2M(A,B)
BEGIN
 C:=A/3.28084;
 D:=B/39.3701;
 E:=C+D;
 //STRING (A);
 //STRING (B);
 RETURN ROUND(E,2);
END;


F2M Program with 1 input:
Code:
EXPORT F2M(A)
BEGIN
 F2M(A,0);
END;

Assign key LOG to TAX():
Code:
KEY K_Log()
BEGIN
RETURN "TAX()";
END;


TAX() Program:
Code:
EXPORT TAX(F)
BEGIN
LOCAL G:=ROUND(F/1.2,2);
LOCAL H:=ROUND(F/6,2);
LOCAL I:={};
I(1):=G;
I(2):=H;
RETURN I;
END;


Apart from that, I use normal calculations often.

Could any of these programs be causing the calc to require a reset?

Any recommendations on how to test if it is only these programs?

Should I do a format, then only upload these programs to the calc?

Do many here have to reset their device often? Should I expect to have to reset the calc every so often, given the nature of the software?

Thanks for any help.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Need to press reset button. - matalog - 09-08-2021, 12:39 AM
RE: Need to press reset button. - ndzied1 - 09-10-2021, 05:29 PM
RE: Need to press reset button. - matalog - 09-21-2021 09:32 PM



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