16
Other / Overly Complex Interface?
« on: February 11, 2012, 02:01:59 am »
I think I've got a few too many title bars
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to. 16
Other / Overly Complex Interface?« on: February 11, 2012, 02:01:59 am »
I think I've got a few too many title bars
17
Other Calc-Related Projects and Ideas / The nspire Keypad Connector« on: August 22, 2011, 04:01:26 pm »
This post is an exploration of the 30-pin connector that connects the swappable keypads to the Nspire.
The connector has 30 pins, and the pcb on the pads conveniently told me which was 1 and which was 30 so I can be confident about the numbering scheme. I figured I'd start a topic to keep track of my findings in, so I don't lose any notes. Spoiler For pinout so far: Spoiler For WARNING: Huge Pics of the connector I made: 18
Other Calculators / Observations about the various pads« on: April 30, 2011, 02:27:02 pm »
Just a quick list. Feel free to contribute with posts, and I'll add them to the first.
ID numbers: CAS touchpad = 84+ Keypad = ??? Clickpad = ??? Touchpad = ??? OS effects: 2.0 CAS CAS touch=Normal 84+ = Normal (keys are messed up, see hackspire for the layout Clickpad = Reboots over and over OS effects: 1.4 nonCAS CAS touch = 84+ mode 84+ = 84+ mode Clickpad = normal nonCAS touch = ??? (don't have one) 19
Axe / store arbitrary buffers to L3 and L6?« on: April 30, 2011, 01:37:49 pm »
In a cellular automata program I'm making, I need two extra buffers to store the next generation in, so I did this:
Zeros(768)->BB (BackBuffer) zeros(768)->FB (Frontbuffer) and for the commands I simply draw to those instead of L3 and L6. However, once it's finished updating, I need a way to dump FB into L6 (that's front, right?) and BB into L3. The only way I can figure to do it is BB->DispGraph:StoreGDB:StorePic (BB->screen->L6->L3) and then FB->Dispgraph:StoreGDB but that's two whole frames of semi-garbage I don't want. Any help? And, it's not conway's, it has 4 cell states so I need the greyscale. Edit: BTW, BB->L6 gives a bad symbol error, and it would only do the first byte anyways, right? 20
Calculator C / Nspire Cross-OS libs?« on: April 19, 2011, 08:41:44 pm »
Each OS, if I'm not mistaken, has its own include file, but there are also some that do not. Is there a list of libraries that can be used on any calc, CAS or nonCAS, OS 1.1 or 2.1?
If I could find this out, I don't need to set up a 1.4 dev environment 2.0 sets up much easier, but 1.4's 84+ emu, which I use heavily, is much more stable (and doesn't use MathPrint ) 21
The Axe Parser Project / Regarding the upcoming Summer competition« on: April 17, 2011, 02:49:31 am »
I'm assuming we're having another Axe competition this summer. Just a few quick questions:
what will the rules on keeping your project secret be? Obviously no code or releases, but what about screenshots, etc? How will Axiom use work? will they just be disallowed entirely, or are they allowed? What will the final date be? 22
Axe / Correlation + Axe?« on: April 12, 2011, 11:35:41 pm »
How hard would it be to implement the font switching of correlation in an Axe prog? I think you could do it thru BASIC, have a BASIC prog run correlation's font switch, then have the axe prog run, but that assumes Axe uses the TIOS text writing routines. The reason I ask is because it's an easy way to get smaller sprites than 8x8, like 6x8 or 4x6 (small text) it also assumes axe doesn't overwrite anything correlation uses.
Also, would it be eligible for the contest? If not, I guess I could use my own routine. On that note, are axioms disallowed from the contest? 23
Other Calc-Related Projects and Ideas / A real Community Project« on: April 11, 2011, 06:13:35 pm »
I had a thought:
from what I can see, we make up a community of programmers that work on our own personal projects, with the occasional helping hand from each other. Other than that, we essentially show off our end results to everyone else, and work mostly alone. Nothing wrong with that However, what if we all had one HUGE project that we all worked together on? It would be something that would be fairly unfeasible for only one person, but should reach the capabilities of most everyone. It should interest everyone, so I'm not going to suggest a project, I'm sure you won't have any trouble with that. What do you think? I think it would be cool. Spoiler For to avoid too many tl;drs: 24
Other Calculators / Handy way to guarantee a RAM clear on Nspire's 84+ emu.« on: April 04, 2011, 11:54:28 pm »
I'm not 100% sure it doesn't clear archive on some OSes, but it only gives RAM clears on OS 1.4 and I think OS 1.7.
When your calc crashes in an infinite loop, pull out the keypad, and insert it like the CAS/touch ndless 1>1 method used to do. Turn on the calc, and remove a battery while it's on. I personally guarantee it won't be in the loop anymore, but it might still clear your archive on some OSes, I think 2.0 does. Still, it's a handy way to not lose a big project! 25
Art / Request for a bunch of random 16x16s in 4lvl grey« on: March 18, 2011, 11:14:19 am »
As part of a project I'm presenting at a science fair, I made a 16x16 LED array in software (hardware comes next year) and I was hoping for some pics to show off on it. There are 0 specifications, except 16x16 and 4 level gray. Well, 4 lvl red is how it will show up
Anything works. The cooler looking the better Edit: Posted a pic of what the screen, and the three colors, look like. 26
ASM / Getting around the 8000 limit without using apps« on: March 10, 2011, 11:40:11 pm »
The 8000-byte limit in asm-based prgs is a pain, and the only way I've heard so far to get around it is to make an app. However, there are certain things you can't do inside of apps. An easy way to make a program that gets around this would be basic + a hex code to allow Archiving/Unarchiving, but the cool way would be to have your program run inside of another asm program, that copies the code to and from, say, an appvar, as you run it.
Example: asm(prgmGAME [Begin Pseudocode] Copy 1-8000 bytes AppvGAME To an asm PRGM Run asm prgm (AsmPrgm throws an interrupt back at line 7999) Copy lines 7999~15999 over 1-8000 repeat until return statement, when it quits This would theoretically allow for 1.5 MB apps outside of Apps, just archived, variable size, read/write, anything you want. Of course, the BASIC one is much easier but you can't share variables across the prgms unless you copy them to TIOS, which would be slower than just using one asm brick. What do you think? 27
Other Calc-Related Projects and Ideas / What if.....« on: February 28, 2011, 08:03:39 pm »
I had a thought: 32 MB is not very much storage space. however, the nspire does have an SD slot. What if we made an ndless prgm that loaded a linux image off of the sd card, as the OS, that used all of the nspire's Ram as jst that: RAM, not storage.
28
Computer Programming / Easy way to make a compiler? :P« on: February 25, 2011, 01:17:08 am »
Basically, I need to make a program that takes a word and a 4 digit argument, and turns it into a 6 digit argument with the first two digits corresponding to the word. Ideally this would occur in 2 txt files, reading from one and writing to another.
Example (not definite #s) If 0103 would be 210103 One way I was thinking was python, since it has the so very lovely dictionaries. However, I'm not so good at python, and it's pretty much a choice between that, C, and maybe C++. No .net (sorry sir ) since I am on linux and mono is being a pain. BTW this is for a processor I'm making, so don't expect to recognize anything. 29
Calculator C / What does nLeash do, exactly?« on: January 22, 2011, 04:04:33 pm »
The topic title pretty much says it all.
Does it mess with some memory during bootup, to disable the code, or does it do something really weird? 30
Calculator C / Can someone build me the build tools from ndless 2.0?« on: January 20, 2011, 07:02:49 pm »
I don't need the actual ndless files, just the stuff like nspire-gcc. 1.7 has a bug where it doesn't reference correctly, and 2.0 does.
Can anyone help me out? |
|