Omnimaga > Ndless

Ndless 2.0 for TI-Nspire Clickpad/Touchpad

<< < (2/101) > >>

DJ Omnimaga:
I hope to see new development on Ndless 2 soon. Hopefully you won't run into many more problems in the future. I hope the emulator issue can be fixed as well.

qazz42:
Does this include CAS touchpad?

Munchor:

--- Quote from: qazz42 on December 04, 2010, 02:51:13 pm ---Does this include CAS touchpad?

--- End quote ---

That would be sweet, but I believe it does :) (Afterall it should work for 2.x operating systems)

Galandros:
The new keyboard is indeed better to use, so I saw a lot of people upgrading to Nspire 2.0 to use it.
Supporting the 2.0 OS would be a win-win for usability and running cool stuff. :thumbsup:

Waiting for updates. ;)

Goplat:

--- Quote from: ExtendeD on December 04, 2010, 09:40:51 am ---And here comes a major problem: nspire_emu doesn't support file transfers for OS 2.x, so debugging is not easy.
Someone once suggested to transfer the file from OS 1.7 and then upgrade the OS. But I get a crash on OS startup, and anyway I wild get mad after a few debug sessions.

--- End quote ---

Here's another possible workaround, that just takes a reboot instead of a full OS reinstall: create a patched boot2 that doesn't try to load the OS but goes straight into download mode. (e.g. patch the code at offset 0x1244 from 31 06 00 eb to 15 00 00 ea). Send documents using the patched boot2 (may need to set the target folder to the empty string, it doesn't seem to like sending to Examples). Save flash, quit, and restart using the original boot2.

Edit: what do you mean by getting a crash on OS startup? If you're referring to the problems in OS 2.1 CAS, here's a fix: it expects GPIO 2 to be high (indicating battery door closed, not open)

--- Code: ---Index: apb.c
===================================================================
--- apb.c       (revision 56)
+++ apb.c       (revision 57)
@@ -15,7 +15,7 @@
                        case 0x10: case 0x14: case 0x1C: case 0x20: case 0x24:
                                return 0;
                        case 0x18:
-                               return i == 1 ? 1 : 0;
+                               return 0x0104 >> (i * 8) & 0xFF;
                }
        }
        return bad_read_word(addr);

--- End code ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version