You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that libndls is not correctly managing the ON/HOME key of the TI nSpire CX and CX II models as it only scrutinize the memory address from 0x900E0010 to 0x900E001E.
on_key_pressed() function also add bit 4 of 0x900B0028 for CX/CM and bit 8 of 0x90140810 for the CX II.
But any_key_pressed() and isKeyPressed() functions does not seem to take this key into consideration.
This means that we just look if a key is pressed with any_key_pressed() and just press On/HOME, it won't be detected (I tested this and confirm it does not work)
Same if we have a loop with on_key_pressed() branching to key detection, isKeyPressed( NSP_KEY_HOME ) should not return true cause the memory address does not seem to be mapped for that specific key. (I haven't tested it right now, but reading the libndls code, it should not work).
Thanks guys and bravo for the very good job you are doing !!
Ciao
Sly
The text was updated successfully, but these errors were encountered:
Hello Everybody,
It seems that libndls is not correctly managing the ON/HOME key of the TI nSpire CX and CX II models as it only scrutinize the memory address from 0x900E0010 to 0x900E001E.
on_key_pressed() function also add bit 4 of 0x900B0028 for CX/CM and bit 8 of 0x90140810 for the CX II.
But any_key_pressed() and isKeyPressed() functions does not seem to take this key into consideration.
This means that we just look if a key is pressed with any_key_pressed() and just press On/HOME, it won't be detected (I tested this and confirm it does not work)
Same if we have a loop with on_key_pressed() branching to key detection, isKeyPressed( NSP_KEY_HOME ) should not return true cause the memory address does not seem to be mapped for that specific key. (I haven't tested it right now, but reading the libndls code, it should not work).
Thanks guys and bravo for the very good job you are doing !!
Ciao
Sly
The text was updated successfully, but these errors were encountered: