0 Members and 2 Guests are viewing this topic.
I'll try and help with bug reports whenever I can, but I seriously haven't ran into any
cprintf("%s built at %s %s\n\n",__FILE__,__DATE__,__TIME__);cprint("Tab test\t\t123\n");cprint("Tab test 2\t456\n");cprint("Tab test 3\t789\n");cprint("\\r Test\r/\n");cprint("\\b Test 123\b\b\b456\n");int i = 1000;cprintf("i is %d",i);
The release of OS v3.0 is imminent (isn't it already noon in Dallas?) and Ndless may require a significant effort to be updated for it.
just one stupid question, sry:does it work on os 1.7.xxx??thanks!
BOOL isRightArrowPressed() {return isKeyPressed(KEY_NSPIRE_6)||isKeyPressed(KEY_NSPIRE_RIGHT);}BOOL isUpArrowPressed() {return isKeyPressed(KEY_NSPIRE_8)||isKeyPressed(KEY_NSPIRE_UP);}BOOL isLeftArrowPressed() {return isKeyPressed(KEY_NSPIRE_4)||isKeyPressed(KEY_NSPIRE_LEFT);}BOOL isDownArrowPressed() {return isKeyPressed(KEY_NSPIRE_5)||isKeyPressed(KEY_NSPIRE_2)||isKeyPressed(KEY_NSPIRE_DOWN);}------or-------BOOL isArrowKeyPressed(key) {switch(key) {case KEY_NSPIRE_UP:return isKeyPressed(KEY_NSPIRE_6)||isKeyPressed(KEY_NSPIRE_RIGHT);case KEY_NSPIRE_DOWN:return isKeyPressed(KEY_NSPIRE_5)||isKeyPressed(KEY_NSPIRE_2)||isKeyPressed(KEY_NSPIRE_DOWN);case KEY_NSPIRE_LEFT:return isKeyPressed(KEY_NSPIRE_4)||isKeyPressed(KEY_NSPIRE_LEFT);case KEY_NSPIRE_RIGHT:return isKeyPressed(KEY_NSPIRE_6)||isKeyPressed(KEY_NSPIRE_RIGHT);return false;}}