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 - ExtendeD

Pages: 1 ... 8 9 [10] 11 12 ... 55
136
Ndless / Re: General Ndless Questions and Support
« on: July 31, 2012, 01:43:51 pm »
r643 was fixing part of this but not all, thanks. Pushed to the SVN HEAD.

137
Ndless / Re: Ndless suggestions thread
« on: July 31, 2012, 10:26:02 am »
This feature could become a security issue without a key combo to bypass it (as it exists for the startup feature). And this one would make the feature useless if the password screen is the only use case.

138
General Calculator Help / Re: Reflash boot2 Via Arduino Uno?
« on: July 30, 2012, 01:57:20 am »
I couldn't use HyperTerminal, I had the same problem.
Did you try lrzsz ? http://hackspire.unsads.com/wiki/index.php/Hardware#RS232

139
News / Re: Contest 2012 Community Vote (Nspire/Prizm)
« on: July 15, 2012, 03:33:46 am »
By the way programs which require a minimum version of Ndless should use the assert_ndless_rev() function to display a message asking to update and exit the program propely.

140
For 1), maybe support for a custom filter could be added. Some may want to filter by IP, others by account type (admin/user).

141
For 1.: I don't know for nFrotz, but nspireio does work on CX, but in grayscale. Just make sure to add the following statements at the beginning of your program: "clrscr(); lcd_ingray();"

142
TI-Nspire / Re: [contest] Pacman
« on: July 09, 2012, 01:37:38 pm »
Good to see there's at least one Ndless/C program for the contest :) Nice job lkj.

143
News / Re: A theme editor coming for Ndless 3.1
« on: July 07, 2012, 05:35:21 pm »
 Ndless's SVN head is now pushed at least every week as a public zipped release  to make it available to everyone. The packaging and upload is automated with a 'make' target to make things easier.

144
News / Re: A theme editor coming for Ndless 3.1
« on: July 05, 2012, 06:45:24 pm »
Nice find Levak :)

145
Lua / Re: Physics engine 3.2
« on: July 01, 2012, 02:34:46 am »
Why not pastebin it and share it with all of us?

146
Ndless / Re: General Ndless Questions and Support
« on: June 29, 2012, 05:31:02 pm »
The fgets function seems to have a glitch:
Code: [Select]
char *fgets(char *str, int num, FILE *str2eam) {
char *str2 = str;
while (num--) {
char c = fgetc(str2eam); //THIS IS THE BUGGY LINE
if (c == EOF) {
*str2 = '\0';
return NULL;
}
*str2++ = c;
if (c == '\n')
break;
}
*str2 = '\0';
return str;
}

The c variable should be specified as an int, not a char -- it looks like the compiler treated the char as unsigned and optimized out the return NULL entirely! Plus, it is possible that an 0xFF character exists in the file, so signed char is not the way to go.

It's fixed in r643, thank you calc84maniac and hoffa, my apologies for this one: http://www.unsads.com/projects/nsptools/downloader/download/release/1

147
TI-Nspire / Re: Nspire audio?
« on: June 28, 2012, 04:08:20 pm »
I've just bought one too, I'll have a try on the TI-Nspire.

148
News / Re: Secret Nspire OS popups!
« on: June 25, 2012, 10:03:43 am »
Nice Levak, this looks promising :)

149
I have released Luna v0.3 with OS v3.2 compatibility and full support of special characters: http://ndlessly.wordpress.com/2012/06/24/luna-updated-compatibility-with-os-v3-2-and-special-characters/

150
TI-Nspire / Re: nspire serial console
« on: June 22, 2012, 06:40:10 pm »
You known that C++ is a superset of C.
And yes, the Ndless SDK does work on Linux. The startup guide describes how to set it up: http://hackspire.unsads.com/wiki/index.php/C_and_assembly_development_introduction

Pages: 1 ... 8 9 [10] 11 12 ... 55