Show Posts

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.


Messages - blue_bear_94

Pages: 1 ... 38 39 [40] 41 42 ... 68
586
Calculator C / Re: C Programming Books Or Tutorials?
« on: December 05, 2012, 05:46:26 pm »
Is Technoplaza any good for Nspire stuff? http://www.technoplaza.net/

It's a TI-89/92+/v200 tutorial to program in C, but it's very old.

I don't think so; however, it may be useful for programming in C in general. (I used this tutorial for C on my TI-89 Titanium.)

587
TI 68K / Re: Kraphyko, Decthyth, and the Illusiat 12 port
« on: November 30, 2012, 05:05:09 pm »
Another update to Kraphyko!

I have been having problems with the cursor drawing routine, and 0.7 was not released, so I now have the bug fixed and have added keyboard shortcuts. Have fun! Note that you need to run khelp first, then kraphyko.
(This took only 15 minutes, so I'll accept suggestions on what else to add.)

EDIT: Herp derp, I forgot the documentation!

588
Calculator C / Re: [68k] Incorrect Cursor Drawing
« on: November 30, 2012, 04:31:43 pm »
I now did, and when I try to build the program, a lot of errors appear.
"Storage class specified for parameter '...'."
EDIT: Never mind, I compiled it successfully!

589
Calculator C / [68k] Incorrect Cursor Drawing
« on: November 30, 2012, 04:13:53 pm »
I decided to start using the latest GCC4TI release, but my graphic editing program now has a cursor glitch! (screenshot attached, along with how it's supposed to look)
My source code is also attached.
My code to draw the cursor is as follows:
Code: [Select]
void drawCursor(unsigned int x,unsigned int y) //Draws the cursor
{
unsigned char cursorl[8] = {
~0x80,~0xC0,~0xA0,~0x90,~0xB8,~0xE0,~0x90,~0x08
};
unsigned char cursord[8] = {
~0x80,~0xC0,~0xE0,~0xF0,~0xF8,~0xE0,~0x90,~0x08
};
unsigned char cursorm[8] = {
~0x7F,~0x3F,~0x1F,~0x0F,~0x07,~0x1F,~0x6F,~0xF7
};

Sprite8(x,y,8,cursorm,GrayGetPlane(LIGHT_PLANE),SPRT_AND);
Sprite8(x,y,8,cursorm,GrayGetPlane(DARK_PLANE),SPRT_AND);
Sprite8(x,y,8,cursorl,GrayGetPlane(LIGHT_PLANE),SPRT_OR);
Sprite8(x,y,8,cursord,GrayGetPlane(DARK_PLANE),SPRT_OR);
}

This code worked as intended on TIGCC 0.96 Beta 8, but shows the wrong cursor on GCC4TI 0.96 Beta 10. Any help would be appreciated!

590
General Calculator Help / Re: Sending Programs from a TI84+ to a TI83+
« on: October 20, 2012, 06:27:13 am »
Well, the TI-82 and TI-83 Basic languages have differences; the most notable of which I can think is un-1 and vn-1.

591
General Calculator Help / Re: Sending Programs from a TI84+ to a TI83+
« on: October 19, 2012, 08:13:55 pm »
Maybe TI didn't mean for users to use those tokens (hence their inaccessibility on-calc), so they don't send.

592
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: October 19, 2012, 05:15:57 pm »
3557: You require yourself to fulfill a certain number of hours of calculator programming (like community service hours).

593
General Calculator Help / Re: Sending Programs from a TI84+ to a TI83+
« on: October 19, 2012, 04:03:32 pm »
I suppose that they're 1.16 tokens. Try upgrading your 83+ to 1.19.

594
Other Calculators / Re: What should I buy?
« on: October 18, 2012, 10:38:48 pm »
I've seen a YouTube video of this.

595
General Calculator Help / Re: Sending Programs from a TI84+ to a TI83+
« on: October 18, 2012, 07:21:05 pm »
Probably not, because just opening the editor makes a program unsendable to the 83+.

596
Other Calculators / Re: What should I buy?
« on: October 18, 2012, 05:47:48 pm »
Other way around, an 84+SE inside an 84+ case, but yeah! And i thought i was just getting a regular 84+ and bought it 'cuz it was about half the price of the SE :P Now i just need to figure out if it's got the extra RAM pages...
Hint: look at the back, and read the last letter in the string.

597
General Calculator Help / Re: Sending Programs from a TI84+ to a TI83+
« on: October 18, 2012, 05:40:49 pm »
Have you tried downgrading it to 2.43? If you have Boot 1.02 or lower, then you should have no trouble doing so; otherwise, you can look up Unsigned.

598
Other Calculators / Re: What graphing calculators does your school have?
« on: October 18, 2012, 05:32:49 pm »
In my school, 83+/84+/SEs are used, although some own TI-89s or Nspires. I have never personally known anyone at my school who uses a Casio.

EDIT: I am currently writing an editorial to convince the school to start using Casio Prizms.

599
Miscellaneous / Re: My new internet speed
« on: September 20, 2012, 04:35:57 pm »
Well, here's my speed, BTW:

600
News / Re: 1st mod of a TI-Nspire prototype into a TI-Nspire CAS
« on: September 06, 2012, 04:41:50 pm »
This is not good; this provides another reason for TI to lock the Nspires down.

Pages: 1 ... 38 39 [40] 41 42 ... 68